@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@400;500;600;700&display=swap");

:root {
  --baseFont: "Jost", Arial, sans-serif;
  --titleFont: "Jost", Arial, sans-serif;
  --primary: rgb(0, 41, 28);
  --accent: rgb(245, 105, 58);
  --ink: rgb(31, 23, 19);
  --text: rgb(95, 84, 76);
  --muted: rgb(157, 145, 136);
  --paper: rgb(255, 250, 242);
  --lightBg: rgb(235, 244, 238);
  --dark: rgb(18, 13, 10);
  --white: rgb(255, 255, 255);
  --border: rgba(31, 23, 19, 0.12);
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --btnRadius: 999px;
  --cardRadius: 14px;

  /* Inner pages variables*/
  --success: #008000;
  --error: #FF2C2C;
  --ratting: #f1a400;
  --grayDark: #575757;
  --primaryDarkHover: #946c08;
  --cream: #faf7f2;
  --filterTabBg : var(--paper);
  --ink: rgb(31, 23, 19);
  --dark: rgb(18, 13, 10);
  --transition: 0.3s ease-in-out 0s;
}
.menuPageContent {
  --lightBg: var(--paper);
}
.fixedOnScroll, .fixedCenterScroll .menuSection, .editviewPage .backToMenu, .topLinksSwiper {
	top: var(--headerHeight) !important;
}
@media (max-width: 1199px) {
  .menuPageContent .fixedCenterScroll .menuSection {
    top: calc(var(--headerHeight, 0px) + var(--topFilter, 0px)) !important;
    padding: 4px 10px;
  }
  .menuPageContent .fixedCenterScroll .menuSection .row {
    margin-inline: -10px;
  }
  .menuPageContent .fixedCenterScroll .menuSection::before {
    top: auto;
    bottom: 100%;
    height: 46px;
    background-color: var(--paper);
  }
  .menuPageContent .fixedCenterScroll .menuSection {
    overflow: initial !important;
    max-width: 100vw;
    position: sticky;
    padding-inline: 0;
  }
  .menuPageContent .fixedCenterScroll {
    padding-top: 0px;
  }
}
.formStyle .form-control {
	height: 54px !important;
	border-radius: 30px !important;
	padding-left: 18px !important;
}
.formStyle textarea.form-control {
	border-radius: 20px !important;
}
.btn.btn_zero_min_width.btn_select {
	padding: 8px;
}
.bookingspage form#table-booking .fldIcon {
	display: none;
}
.bookingspage form#table-booking .formStyle .rightIconFld > .form-control {
	padding-right: 16px;
}
.bookingspage form#table-booking .form-select {
	border: 2px solid #e2e4eb;
	height: 54px;
	border-radius: 30px;
}
.bookingspage form#table-booking .select2-container--default .select2-selection--multiple {
  border: 2px solid #e2e4eb;
	border-radius: 30px;
  min-height: 54px;
}
.bookingspage form#table-booking .select2-dropdown {
  border: 2px solid #e2e4eb !important;
}
.bookingspage form#table-booking .parentCol, .bookingspage form#table-booking .parentCol1 {
	border: 2px solid #e2e4eb !important;
	border-radius: 40px;
}
img[x-ref="captchaImage"], img[x-ref="captchaImage"] + button {
	padding: 0;
	display: inline-block;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--baseFont);
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

body.customCursorActive,
body.customCursorActive a,
body.customCursorActive button {
  cursor: none;
}

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

::selection {
  color: var(--white);
  background: var(--primary);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgb(239, 227, 209);
}

::-webkit-scrollbar-thumb {
  border: 2px solid rgb(239, 227, 209);
  border-radius: 999px;
  background: var(--primary);
}

.mainContainer {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
}

.xlTitle,
.lgTitle,
.mdTitle,
.smTitle {
  margin: 0;
  color: var(--ink);
  font-family: var(--titleFont);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.xlTitle {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.lgTitle {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.mdTitle {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.08;
}

.smTitle {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.12;
}

.sectionTag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--btnRadius);
  font-family: var(--baseFont);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(18, 13, 10, 0);
  transform: translateY(0);
  transition: color var(--transition), border-color var(--transition), transform 600ms cubic-bezier(0.16, 1, 0.3, 1), background var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.btn::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  content: "";
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn:hover::after {
  opacity: 1;
}

.btn_primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 86%, black));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 22%, transparent);
}

.btn_primary:hover {
  color: var(--white);
  border-color: color-mix(in srgb, var(--accent) 62%, transparent);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--accent) 34%, transparent);
}

.btn_outline {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.82);
  border-color: rgba(31, 23, 19, 0.16);
  backdrop-filter: blur(12px);
}

.btn_outline:hover {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  border-color: color-mix(in srgb, var(--accent) 58%, transparent);
  box-shadow: 0 18px 40px rgba(18, 13, 10, 0.18);
}

.btn_dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 14px 28px rgba(31, 23, 19, 0.16);
}

.btn_dark:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--accent) 22%, transparent);
}

.cursorIcon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 140ms ease;
}

.cursorDot {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  border: 0 solid transparent;
  border-radius: 999px;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width var(--transition), height var(--transition), background var(--transition), border-color var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.cursorDotMain { width: 6px; height: 6px; background: var(--accent); }
.cursorDotMid { width: 10px; height: 10px; background: var(--primary); opacity: 0.72; }
.cursorDotTail { width: 16px; height: 16px; border: 1px solid color-mix(in srgb, var(--accent) 62%, transparent); background: transparent; opacity: 0.48; }
.cursorIcon.isVisible { opacity: 1; }
.cursorIcon.isHovering .cursorDotMain { width: 5px; height: 5px; background: var(--white); }
.cursorIcon.isHovering .cursorDotMid { width: 14px; height: 14px; background: var(--accent); opacity: 0.68; }
.cursorIcon.isHovering .cursorDotTail { width: 28px; height: 28px; border-color: var(--primary); opacity: 0.34; }
.cursorIcon.isButtonHover .cursorDotMain { opacity: 0; }
.cursorIcon.isButtonHover .cursorDotMid { width: 18px; height: 18px; border-width: 1px; border-color: color-mix(in srgb, var(--white) 78%, transparent); background: transparent; opacity: 0.74; }
.cursorIcon.isButtonHover .cursorDotTail { width: 34px; height: 34px; border-color: color-mix(in srgb, var(--white) 72%, transparent); background: transparent; opacity: 0.34; }
.cursorIcon.isOutlineButtonHover .cursorDotMid { border-color: var(--primary); opacity: 0.46; }
.cursorIcon.isOutlineButtonHover .cursorDotTail { border-color: var(--accent); opacity: 0.36; }


/* Header style start */
body.menuOpen {
  overflow: hidden;
}

.headerReserveBtn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--btnRadius);
  font-size: 12px;
  letter-spacing: 1px;
}

.headerReserveBtn:focus,
.headerReserveBtn:focus-visible,
.headerReserveBtn:active {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
  background: var(--ink) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 35%, transparent),
              0 14px 28px rgba(31, 23, 19, 0.16) !important;
}
.brandLogo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
}
.brandLogo > img, .brandLogo svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
.headerReserveBtn:focus:not(:focus-visible) {
  outline: none;
}

.headerReserveBtn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.siteHeader {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: var(--lightBg);
  color: var(--ink);
  border-bottom: 0;
}
.siteHeader > .container {
  padding-block: 16px;
}
.headerMainCol .oa-notice-alert {
	position: static;
}
.headerInner.siteHeader {
	background-color: var(--paper);
}
.headerInner.siteHeader.isScrolled, .headerInner.siteHeader.menuIsOpen {
	background-color: var(--paper);
}
.siteHeader.isScrolled,
.siteHeader.menuIsOpen {
  background: transparent;
}

.headerInnerCol {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 54px);
  min-height: 64px;
  padding: 9px 16px 9px 22px;
  border-radius: 999px;
  background: rgba(213, 234, 220, 0.88);
  border: 1px solid color-mix(in srgb, var(--primary) 8%, transparent);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--primary) 8%, transparent);
  backdrop-filter: blur(5px) saturate(140%);
  -webkit-backdrop-filter: blur(5px) saturate(140%);
}

.headerActions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

.cartButton,
.userButton,
.menuToggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
  border-radius: 999px;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 4%, transparent);
  transform: translateY(0);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--transition);
  will-change: transform;
}

.cartButton:hover,
.userButton:hover,
.userButton[aria-expanded="true"],
.menuToggle:hover,
.menuToggle.isActive {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--primary) 18%, transparent);
  transform: translateY(-2px);
}

.cartButton svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.headerAccount { position: relative; }
.userButton { width: 46px; height: 46px; }
.userButton svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.headerAccountMenu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 1300;
  width: min(290px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 110px));
  padding: 10px;
  overflow-y: auto;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 41, 28, 0.2);
}
.headerAccountMenu[hidden] { display: none; }
.headerAccountName { padding: 12px 14px; border-bottom: 1px solid color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); font-size: 14px; font-weight: 800; }
.headerAccountMenu a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--ink); font-size: 14px; font-weight: 600; }
.headerAccountMenu a:hover { color: var(--white); background: var(--primary); }

.cartCount {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.cartButton:hover .cartCount {
  color: var(--primary);
  background: var(--white);
}

.menuToggle {
  overflow: hidden;
  width: 46px;
  gap: 6px;
  flex-direction: column;
}

.menuToggle span {
  position: static;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: top var(--transition), transform var(--transition), opacity var(--transition), width var(--transition);
}

.menuToggle span:nth-child(2) {
  width: 18px;
}

.menuToggle.isActive span:nth-child(1) {
  transform: rotate(45deg);
}

.menuToggle.isActive span:nth-child(2) {
  opacity: 0;
  transform: translateX(14px);
}

.menuToggle.isActive span:nth-child(3) {
  margin-top: -16px;
  transform: rotate(-45deg);
}

.headerNav {
  position: fixed;
  inset: 0;
  height: 100vh;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  transition: visibility 0s linear 720ms;
}

.headerNav.isOpen {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.menuBackdrop {
  position: fixed;
  inset: 0;
  height: 100vh;
  z-index: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 10, 8, 0.64);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 520ms ease;
}

.headerNav.isOpen .menuBackdrop {
  opacity: 1;
}

.headerMenuPanel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(55vw, 670px);
  min-width: 520px;
  min-height: 100vh;
  padding: 34px 40px 52px;
  overflow-y: auto;
  color: var(--white);
  background: var(--primary);
  box-shadow: -34px 0 80px rgba(0, 0, 0, 0.28);
  transform: translateX(104%);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.headerNav.isOpen .headerMenuPanel {
  transform: translateX(0);
}

.headerMenuPanel::before {
  display: none;
}

.headerMenuPanelHeader {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 78%, transparent);
}

.menuLogo {
  display: inline-flex;
  width: min(190px, 42vw);
}

.menuLogo img {
  width: 100%;
}

.menuClose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  opacity: 0.92;
  transition: opacity var(--transition);
}

.menuClose:hover {
  color: var(--white);
  background: transparent;
  opacity: 1;
}

.headerMenuPanelGrid {
  position: relative;
  z-index: 1;
  display: block;
  flex: 1 1 auto;
  padding-top: 58px;
}

.menuLinks {
  display: grid;
  gap: 0;
}

.headerLink {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: baseline;
  gap: 22px;
  width: fit-content;
  padding: 13px 0;
  color: var(--white);
  border-bottom: 0;
  font-family: var(--baseFont);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(28px);
  transition: color var(--transition), opacity 460ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.headerLinkNumber {
  color: color-mix(in srgb, var(--white) 72%, transparent);
  font-family: var(--baseFont);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.headerLink:hover,
.headerLink.active {
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

.headerNav.isOpen .headerLink {
  opacity: 1;
  transform: translateX(0);
}

.headerNav.isOpen .headerLink:nth-child(1) {
  transition-delay: 120ms;
}

.headerNav.isOpen .headerLink:nth-child(2) {
  transition-delay: 170ms;
}

.headerNav.isOpen .headerLink:nth-child(3) {
  transition-delay: 220ms;
}

.headerNav.isOpen .headerLink:nth-child(4) {
  transition-delay: 270ms;
}

.headerNav.isOpen .headerLink:nth-child(5) {
  transition-delay: 320ms;
}

.headerNav.isOpen .headerLink:nth-child(6) {
  transition-delay: 370ms;
}

.headerNav.isOpen .headerLink:nth-child(7) {
  transition-delay: 420ms;
}

.headerNav.isOpen .headerLink:nth-child(8) {
  transition-delay: 470ms;
}

.headerNav.isOpen .headerLink:nth-child(9) {
  transition-delay: 520ms;
}

.headerNav.isOpen .headerLink:nth-child(10) {
  transition-delay: 570ms;
}

.headerNav.isOpen .headerLink:nth-child(11) {
  transition-delay: 620ms;
}

.headerNav.isOpen .headerLink:nth-child(12) {
  transition-delay: 670ms;
}

.headerNav.isOpen .headerLink:nth-child(13) {
  transition-delay: 720ms;
}

@media (max-width: 991px) {
  .headerReserveBtn {
    display: none;
  }

  .headerMenuPanel {
    width: min(82vw, 560px);
    min-width: 0;
    min-height: 100vh;
    padding: 28px 30px 44px;
    overflow-y: auto;
  }

  .headerMenuPanelGrid {
    padding-top: 44px;
  }
}

@media (max-width: 767px) {
  .siteHeader > .container {
    padding-block: 12px;
  }
  .headerInnerCol {
    grid-template-columns: auto auto;
    padding: 8px 10px 8px 16px;
  }
}

@media (max-width: 480px) {
  .siteHeader .mainContainer {
    width: calc(100% - 24px);
  }
  .cartButton,
  .userButton,
  .menuToggle {
    width: 42px;
    height: 42px;
  }

  .menuToggle span {
    width: 22px;
  }

  .headerMenuPanel {
    padding: 18px;
  }

  .headerMenuPanelGrid {
    padding-top: 34px;
  }

  .headerLink {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 0;
    font-size: 25px;
  }

  .headerLink::before {
    font-size: 12px;
  }
}



/* Footer style start */
.siteFooter {
  position: relative;
  width: calc(100% - 30px);
  margin: 0 auto 16px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--cardRadius);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(0, 18, 13, 0.68), rgba(0, 26, 18, 0.6) 52%, rgba(0, 14, 10, 0.72)),
    url("../images/footer-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 28px 76px rgba(0, 41, 28, 0.18);
  isolation: isolate;
}

.siteFooter::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 14, 10, 0.38), rgba(0, 14, 10, 0.54));
  content: "";
  pointer-events: none;
}

.siteFooter::after {
  display: none;
  content: none;
}

.siteFooter .container {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: clamp(30px, 4vw, 56px) 15px 28px;
}

.footerMain {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.56fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding-bottom: clamp(42px, 7vw, 78px);
  border-bottom: 1px solid rgba(255, 250, 242, 0.2);
}

.footerBrand {
  max-width: 720px;
}

.footerLogo {
  display: inline-flex;
  color: var(--white);
}

.footerLogoImg {
	width: clamp(280px, 26vw, 350px);
	object-fit: contain;
}
.powerdBy {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 25px;
	justify-content: center;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 20px;
}
.footerTitle {
  max-width: 610px;
  margin: clamp(30px, 4vw, 60px) 0 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.footerText {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.footerCol .smTitle {
  margin: 0 0 20px;
  color: rgba(255, 250, 242, 0.92);
  font-family: var(--baseFont);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footerAside {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  justify-items: end;
}

.footerAside > .footerCol {
  position: relative;
  width: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.025));
  backdrop-filter: blur(12px);
}

.footerAside > .footerCol::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 250, 242, 0.34);
  content: "";
}

.footerContactList {
  display: grid;
  gap: 18px;
}

.footerContactItem {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.footerContactItem > p {
  margin-bottom: 6px;
}

.footerContactItem span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
}

.footerNav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.footerNavLink {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  flex: 0 0 auto;
  width: fit-content;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color var(--transition), background var(--transition);
}

.footerNavLink:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footerEmail {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 14px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 250, 242, 0.07);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footerEmail:hover {
  color: var(--primary);
  background: rgba(255, 250, 242, 0.92);
  border-color: rgba(255, 250, 242, 0.92);
}

.footerEmail + .footerEmail {
  margin-top: 10px;
}

.socialList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
}

.socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(0);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--transition);
  will-change: transform;
}

.socialLink:hover {
  color: var(--white);
  background: rgba(255, 250, 242, 0.14);
  border-color: rgba(255, 250, 242, 0.46);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.socialLink svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footerBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
}

.copyrightText {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

@media (max-width: 991px) {
  .footerLogoImg {
    max-width: 260px;
  }

  .footerNav {
    flex-wrap: wrap;
    border-radius: 8px;
  }

  .footerMain {
    grid-template-columns: 1fr;
  }

  .footerAside {
    justify-items: stretch;
  }
}

@media (max-width: 767px) {
  .footerBottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footerMain {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footerTitle {
    margin-top: 46px;
  }

  .socialList {
    justify-content: flex-start;
  }

  .footerAside > .footerCol {
    padding: 22px;
  }

  .footerEmail {
    font-size: 14px;
  }

  .siteFooter .container {
    padding: 34px 16px 26px;
  }
}



/* ******************************************************** */
/* Inner pages style start */
/************************************************/
/* button inner */
.btn_primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn_primary:hover {
  background-color: var(--primaryDarkHover);
  color: var(--white);
}
.btn.btn_primary.xsBtn {
  padding: 10px;
}
.btn_primary .btnIcon {
  color: var(--white);
  background: var(--dark);
}
.btn_primary:hover .btnIcon {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(184, 59, 36, 0.11);
}
.btn.btn_primary:not(:disabled):not(.disabled):active, 
.btn.btn_primary:not(:disabled):not(.disabled).active {
  background: var(--primaryDarkHover);
  color: var(--white);
}
.btn_primary > span {
  display: inline-block;
  vertical-align: middle;
}
.btn_primary > span > img {
  display: block;
  filter: blur(0);
}
.btn_primary:before {
  display: none;
}
.btn_primary.smBtn.disabled,
.btn_primary.smBtn:disabled {
  opacity: 0.8;
}
.btn_primary.smBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  min-width: 88px;
  min-height: 36px;
  padding: 3px 4px 3px 14px;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(38, 23, 17, 0.08);
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.btn-dark {
  color: var(--white);
  background-color: var(--dark);
}
.btn_outline {
  border: 1px solid var(--primary-theme-color);
  color: var(--primary-theme-color);
}
.btn_outline:hover {
  background-color: var(--primary-theme-color);
  color: var(--white);
}
.btn.btn-success {
  background-color: var(--success);
  padding: 10px 15px;
}



/******************************
****** MODALS ******
******************************/
.modalNewstyle .btn::before {
	z-index: -1;
}
.modalNewstyle {
  --xSpace: 34px;
  --ySpace: 32px;
  --modalPrimary: var(--primary);
  --modalDark: var(--ink);
  --modalWhite: #fff;
  --modalPanel: #fffdf8;
  --modalText: var(--ink);
  --modalMuted: var(--muted);
  --modalBorder: rgba(38, 23, 17, 0.14);
  --modalError: #dc3545;
  z-index: 2055;
  pointer-events: auto;
}
.modal-backdrop.show {
  background-color: rgba(38, 23, 17, 0.72);
  opacity: 1;
  pointer-events: auto;
}
.modalNewstyle .modal-dialog {
  width: min(100%, calc(100vw - 24px));
  margin-right: auto;
  margin-left: auto;
  pointer-events: auto;
}
.modalNewstyle .modal-md {
  max-width: 600px;
}
.modalNewstyle .modal-lg {
  max-width: 800px;
}
.modalNewstyle .modal-content {
  color: var(--modalText);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 253, 248, 0.98) 100%),
    var(--modalWhite);
  border: 1px solid rgba(38, 23, 17, 0.12);
  border-radius: 34px;
  box-shadow: 0 38px 110px rgba(38, 23, 17, 0.34);
  pointer-events: auto;
}
.modalNewstyle .modal-header,
.modalNewstyle .modal-body {
  position: relative;
  padding: var(--ySpace) var(--xSpace);
}
.modalNewstyle .modal-header {
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  background:#fff;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(38, 23, 17, 0.1);
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: var(--ySpace);
  padding-bottom: calc(var(--ySpace) + 6px);
  background: var(--modalPanel);
}
.modalNewstyle .modal-title {
  color: var(--modalDark);
  font-family: var(--titleFont);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}
.modalNewstyle .modal-subtitle {
  color: var(--modalMuted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}
.modalNewstyle .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  color: var(--modalDark);
  background-color: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(38, 23, 17, 0.12);
  border-radius: 50%;
  opacity: 0.80;
  background-size: 12px 12px;
  box-shadow: 0 12px 28px rgba(38, 23, 17, 0.08);
  transition: opacity 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.modalNewstyle .btn-close:hover {
  opacity: 1;
  background-color: var(--white);
  box-shadow: 0 16px 34px rgba(38, 23, 17, 0.14);
}
.modalNewstyle .modalForm {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.modalNewstyle .formStyle .row {
  align-items: flex-start;
}
.modalNewstyle .formStyle .form-control,
.modalNewstyle .formStyle .form-select {
  width: 100%;
  min-height: 56px;
  color: var(--modalDark);
  background-color: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--modalBorder);
  border-radius: 999px;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.35;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.modalNewstyle .formStyle .form-control,
.modalNewstyle .formStyle textarea.form-control {
  padding: 13px 48px 13px 18px;
}
.modalNewstyle .formStyle .form-select {
  padding: 13px 48px 13px 18px;
}
.modalNewstyle .formStyle textarea.form-control {
  min-height: 96px;
  border-radius: 24px;
  resize: vertical;
}
.modalNewstyle .formStyle .form-control:focus,
.modalNewstyle .formStyle .form-select:focus {
  border-color: var(--modalPrimary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(184, 59, 36, 0.1);
}
.modalNewstyle .formStyle .form-control::placeholder {
  color: rgba(38, 23, 17, 0.64);
}
.modalNewstyle .rightIconFld {
  position: relative;
}
.modalNewstyle .inputFieldIcon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  pointer-events: none;
  z-index: 2;
}
.modalNewstyle textarea + .inputFieldIcon {
  top: 28px;
  transform: none;
}
.modalNewstyle .fieldIcon {
  display: block;
  width: 20px;
  height: auto;
  opacity: 0.78;
}
.modalNewstyle .form-label,
.modalNewstyle .labelStyle {
  color: var(--modalDark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 8px;
}
.modalNewstyle .form-check {
  text-align: left;
  padding-left: 25px;
  position: relative;
}
.modalNewstyle .form-check-input {
  border-color: rgba(38, 23, 17, 0.38);
  box-shadow: none;
  margin-left: auto;
  position: absolute;
  left: 0;
  top: 5px;
  margin: 0;
}
.modalNewstyle .form-check-input:checked {
  background-color: var(--modalPrimary);
  border-color: var(--modalPrimary);
}
.modalNewstyle .form-check-label {
  color: var(--modalDark);
  font-size: 14px;
  line-height: 1.55;
}
.modalNewstyle [data-message],
.modalNewstyle .text-danger,
.modalNewstyle .errorMsg {
  color: var(--modalError) !important;
  font-size: 13px;
  line-height: 1.35;
}
.modalNewstyle .btnPrimary {
  min-height: 56px;
  padding: 12px 30px;
  color: var(--white);
  background-color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 0;
  box-shadow: 0 16px 34px rgba(184, 59, 36, 0.18);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}
.modalNewstyle .btnPrimary:hover,
.modalNewstyle .btnPrimary:focus-visible,
.modalNewstyle .btnPrimary:active {
  color: var(--modalWhite) !important;
  background-color: var(--modalDark) !important;
  border-color: var(--modalDark) !important;
  box-shadow: 0 18px 38px rgba(38, 23, 17, 0.22);
  transform: translateY(-2px);
}
.modalNewstyle .btnDarkOutline {
  /* min-height: 54px;
  padding: 12px 24px; */
  color: var(--modalDark);
  background-color: rgba(255, 250, 242, 0.76);
  border: 2px solid rgba(38, 23, 17, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(38, 23, 17, 0.06);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.modalNewstyle .btnDarkOutline:hover,
.modalNewstyle .btnDarkOutline:focus-visible {
  color: var(--modalDark);
  background-color: var(--white);
  border-color: var(--modalPrimary);
}
.modalNewstyle .simpleLink {
  color: var(--modalPrimary);
  font-weight: 700;
  text-decoration: none;
  transition: color 260ms ease;
}
.modalNewstyle .simpleLink:hover {
  color: var(--modalDark);
}
.modalNewstyle .textPrimary {
  color: var(--modalPrimary) !important;
}
.modalNewstyle .sideLinesDivider {
  position: relative;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
.modalNewstyle .sideLinesDivider > .dividerText {
  color: var(--dark);
  opacity: 0.5;
  padding: 0 15px;
}
.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;
}
.modalNewstyle .sideLinesDivider > .dividerText::before,
.modalNewstyle .sideLinesDivider > .dividerText::after {
  z-index: -1;
  border-top: 1px solid var(--border);
  margin: 0;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.modalNewstyle .recaptchaCol {
  display: inline-flex;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.modalNewstyle img[data-captcha] {
  height: 50px;
  background: var(--modalDark);
  border-radius: 999px !important;
  padding: 0 !important;
}
.modalNewstyle button .fa-refresh,
.modalNewstyle button .fa-spinner {
  color: currentColor;
}
.modalNewstyle button[type="button"]:has(.fa-refresh) {
  width: 50px;
  min-height: 50px;
  padding: 0;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(38, 23, 17, 0.1);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(38, 23, 17, 0.08);
}
.modalNewstyle .titleLbl {
  color: var(--modalDark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.modalNewstyle .openingHourModalContent {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  color: var(--modalDark);
  font-size: 15px;
  line-height: 1.65;
}
.modalNewstyle .modalAddress {
  padding: 22px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(38, 23, 17, 0.1);
  border-radius: 24px;
}
.modalNewstyle .hrs {
  padding: 22px;
  background: rgba(255, 250, 242, 0.58);
  border: 1px solid rgba(38, 23, 17, 0.08);
  border-radius: 24px;
}
.modalNewstyle .simpleList > li + li {
  margin-top: 8px;
}
#loginModal .modal-dialog {
  max-width: 600px;
}
#loginModal .text-center.fw-medium,
#registerModal .text-center.fw-medium {
  color: var(--modalDark);
  font-size: 17px;
  font-weight: 700 !important;
}
#quicklogincode #timer {
  color: var(--modalDark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
#otpVerifyModal .labelStyle em {
  display: block;
  margin-top: 6px;
  color: var(--modalPrimary);
  font-style: normal;
}
.modalNewstyle .modal-header-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
button.btn.refreshIcon {
  height: 50px;
  width: 50px;
  padding: 8px;
  min-height: auto;
  box-shadow: 0px 0px 2px rgba(0,0,0,0.4);
}
/* User Login CSS */

.userLogin {
  position: relative;
}
.userLogin .dropMenu {
  position: absolute;
  top: 100%;
  background: var(--cream);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  width: 210px;
  text-align: left;
  right: 0;
  display: none;
  z-index: 9;
  padding: 6px 0;
  border-radius: 8px;
}
.userLogin > a {
  padding: 8px 25px 8px 0;
  display: flex;
  align-items: center;
  column-gap: 6px;
  position: relative;
}
.userLogin > a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 8px;
  vertical-align: 3px;
  position: absolute;
  right: 0;
}
.userLogin .userName {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.userLogin .dropMenu a {
	padding: 8px 14px;
	display: block;
	color: var(--ink);
	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;
  color: var(--primary);
}
/* back to top */
#backToTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	width: 50px;
	height: 50px;
	border: 4px double var(--white);
	color: white;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--primaryDarktBg);
}
#backToTop:hover {
  opacity: 0.8;
}
/* back to top */

/* floating slide bar style */
.nwCartMain .nwCartTitle {
  padding: 15px 0 10px;
  border-bottom: 1px solid var(--border);
}
.nwCartMain .nwCartTitle h2 {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  text-align: left;
}
.nwaddDetail {
  border-bottom: 1px solid var(--border);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.nwaddDetail h2 {
  font-size: 14px;
  margin-bottom: 0;
}
.nwaddDetail p {
  margin: 0 0 2px;
  font-size: 14px;
  color: inherit;
}
.nwaddDetail p span {
  font-weight: 700;
}
.nwaddText h3 {
  font-size: 16px;
  color: inherit;
  font-weight: 700;
  margin: 0;
}
.rEdCol ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
}
.rEdCol ul li span {
  display: inline-block;
  vertical-align: middle;
}
.rEdCol ul li span img {
  display: block;
  margin-right: 4px;
}
.rEdCol ul li + li {
  margin-left: 15px;
}
.edRMainCol {
  padding-top: 10px;
}
.nwaddRightText h6 {
  margin: 0;
  font-size: 15px;
}
.nwaddDetailMain {
  border: 1px dashed;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
}
.nwaddDetailMain + .nwaddDetailMain {
  margin-top: 10px;
}
a.removeStyle {
  color: var(--error);
}
.nwaddDetailInner {
  margin-top: 25px;
}
.sidbarBtmCol .nwTextTCol h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.sidbarBtmCol .nwRText h3 {
  font-size: 18px;
  font-weight: 700;
  color: inherit;
  margin: 0;
}
.nwSidbarBtn {
  margin-top: 10px;
}
.nwSidbarBtn a.btn.btn-dark {
  width: 100%;
  font-size: 16px;
  border-radius: 10px;
  padding: 14px 10px;
}
.nwSidbarBtn a.btn.btn-dark span + span {
  margin-left: 15px;
}
.nwaddItemMain {
  padding-top: 5px;
}
.nwaddItemMain ul li {
  display: block;
}
.nwaddItemMain ul li + li {
  margin-top: 8px;
}
.nwaddItemMain ul li a {
  font-size: 15px;
  color: var(--dark);
  opacity: 0.8;
  font-weight: 600;
}
.nwaddItemMain ul li a span {
  display: inline-block;
  vertical-align: middle;
}
.nwaddItemMain ul li a span img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  margin-right: 5px;
}
.cart-inc-dec .quantity {
  border: 1px solid var(--border) !important;
  width: 88px;
  height: 30px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: flex;
}
.cart-inc-dec .quantity .minus {
  border: 0 !important;
  background-color: transparent;
  height: auto;
  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 !important;
  height: 100% !important;
  width: 26px !important;
  flex: 0 0 auto !important;
  border-radius: 30px 0px 0px 30px !important;
  box-shadow: none !important;
}
.cart-inc-dec .quantity .qty {
  font-weight: 500;
  height: 100%;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--dark) !important;
  flex: 1 0 0 !important;
}
.cart-inc-dec .quantity .plus {
  width: 100%;
  border: 0 !important;
  background-color: transparent;
  height: 100%;
  box-shadow: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMVYxMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xIDZIMTEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0 !important;
  height: 100% !important;
  width: 26px !important;
  flex: 0 0 auto !important;
  border-radius: 0px 30px 30px 0px !important;
  box-shadow: none !important;
}
.cart-inc-dec .quantity .minus,
.cart-inc-dec .quantity .plus {
  background-image: none !important;
  color: var(--ink) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  font-weight: 400;
  line-height: 1;
  width: 28px !important;
  flex: 0 0 28px !important;
  padding: 0 !important;
}
.cart-inc-dec .quantity .minus {
  font-size: 24px !important;
}
.cart-inc-dec .quantity .qty {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  min-width: 25px;
  padding: 0 !important;
  opacity: 1;
}
.cartCardImg {
  width: 70px;
}
.cartCardImg > img {
  width: 100%;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}
.cartCardContent > h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.cartCardContent > p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  padding-bottom: 6px;
}
.btn.payBtn {
  text-align: left;
  position: relative;
  font-weight: var(--sBold);
  min-width: 145px;
  border-radius: 14px;
  text-transform: capitalize;
  font-size: 13px;
  padding: 11px 45px 11px 15px;
}
.btn.payBtn > span {
  line-height: 1;
}
.btn.payBtn > span > span {
  font-size: 20px;
}
.payBtnIcon {
  position: absolute;
  right: 20px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn.payBtn > span > img {
  width: 10px;
}

/******************************
****** MEDIA QUARY *******
******************************/

@media (max-width: 1499px) {
  .noticeInHeaderFlow > [data-container-otpAlert] {
    margin-right: -15px;
    margin-left: -15px;
  }
  .navItems, .headerRightOption {
    column-gap: 18px;
  }
}
@media (max-width: 1199px) {
  .navItems {
    justify-content: space-around;
  }
  .userLogin > a::before {
    display: none;
  }
  .userLogin > a {
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .userLogin .userName {
    display: none;
  }
  .modalNewstyle .modal-title {
    font-size: 30px;
  }
  .sidebarright {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    z-index: 11;
    margin: 0;
    overflow-y: inherit;
    -moz-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    -moz-transform: translateY(200%) !important;
    -o-transform: translateY(200%) !important;
    -ms-transform: translateY(200%) !important;
    -webkit-transform: translateY(200%) !important;
    transform: translateY(200%) !important;
  }
  .cartSlide .sidebarright {
    -moz-transform: translateY(0%) !important;
    -o-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    -webkit-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
  }
  .nwCartTitle {
    position: relative;
  }
  .cartBody {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 20px 130px;
  }
  .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: var(--white);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.14);
    border-radius: 30px 30px 0 0;
    padding: 15px;
  }
  .emptyCartCol {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 0 100px;
  }
  .emptyCartCol h4 {
    font-size: 18px;
    margin: 15px 0;
  }
  .nwCartMain .nwCartTitle {
    padding: 0 0 15px;
  }
  .floatingCart .viewCartItems {
    font-size: 14px;
    padding: 5px 10px;
  }
  .cartCardImg {
    width: 50px;
  }
  .cartCardImg > img {
    height: 50px;
  }
  .nwCartMain .nwCartTitle h2 {
    text-align: center;
  }
  .cartTitle {
    font-size: 25px;
    font-weight: 600;
    padding: 15px 100px;
    text-align: center;
    margin: 0;
    background-color: var(--white);
    position: relative;
  }
  .cartBackIcon {
    position: absolute;
    left: 10px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-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;
    -moz-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    background-color: rgba(19, 15, 38, 0.8);
    z-index: 10 !important;
  }
  .priceLgText {
    font-size: 22px;
    font-weight: bold;
  }
  .p2pCol {
    padding: 20px 30px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 40px 40px 0 0;
    z-index: 9999;
  }
  .cartTotalPrice {
    padding: 20px 30px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 40px 40px 0 0;
    z-index: 9999;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 12px 30px;
    font-size: 16px;
    letter-spacing: 0px;
  }
}
@media (max-width: 575px) {
  .nwCartTitle h2 {
    font-size: 20px;
  }
  .p2pCol {
    padding: 15px;
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 480px) {
  .modalNewstyle {
    --xSpace: 20px;
    --ySpace: 24px;
  }
  .modalNewstyle .modal-title {
    font-size: 24px;
  }
}
