/* ============================================================
   RESERVE Theme (web_v25) — Inner Page Styles
   Loaded by Main_innerAsset for menu, cart, checkout, profile, etc.
   Fonts and core vars match style.css; overwrites suit solid-navbar
   inner-page layout.
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Bebas+Neue&family=Noto+Sans:wght@400;500;600;700;800&display=swap');

:root {

      /* ── Palette ─────────────────────────────────────────── */
    --black:         #1c1c1c;   /* matches homepage style.css --black */
    --gold:          #b47a55;
    --gold-light:    #a97959;
    --cream:         #f5f0e8;
    --dark-brown:    #1a1208;
    --text-muted:    rgba(255,255,255,0.6);


    /* ── Shared dark palette (mirrors style.css — needed for inner-page-only load) */
    --navy:          #360738;
    --navy-mid:      #360738;
    --navy-dark:     #002f07;
    --text-dark:     #1c1c1c;

    /* ── Inner-page light background ─────────────────────── */
    --inner-bg:      #ffffff;
    --inner-text:    #1a1208;
    
  --baseFont: 'Noto Sans', sans-serif;
  --headingFont: 'Bebas Neue', display;
  --scriptFont: 'Alex Brush', handwriting;
  --primary: #0b3f49;
  --secondary: #b47a55;
  --secondaryLight: #a97959;
  --light: #f4efeb;
  --cream: #fbf8f3;
  --white: #ffffff;
  --ink: #4f6465;
  --border: #d8d0c8;
  --shadow: 0 20px 55px rgba(10, 45, 51, 0.16);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.newtheme_inner_page {
    font-family:    var(--baseFont);
    background:     var(--inner-bg);
    color:          var(--inner-text);
    padding-top:    var(--navbar-height);   /* offset fixed navbar */
    min-height:     100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; }

ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   FULL NAVBAR — copied from style.css so inner pages have all
   the layout, menu, hamburger, mobile-nav, and dropdown styles.
   Inner pages are always solid (no transparent/scrolled states).
============================================================ */
/* --------- Header / Navigation --------- */
.themeBtn {
  min-height: 54px;
  padding: 18px 32px;
  border: 1px solid var(--secondary);
  border-radius: 0;
  background: var(--secondary);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 1.05;
  font-family: var(--headingFont);
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.themeBtn:hover,
.themeBtn:focus {
  color: var(--white);
  background: #9f6847;
  border-color: #9f6847;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 63, 73, 0.18);
}
.themeBtn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(11, 63, 73, 0.14);
}
.scriptTitle {
  margin: 0;
  font-family: var(--scriptFont);
  font-size: 48px;
  color: var(--secondary);
  line-height: 1;
  padding-bottom: 20px;
}
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: var(--light);
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.newtheme_inner_page .siteHeader {
	position: sticky;
}
.siteHeader.isScrolled {
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 63, 73, 0.1);
}
.orderartNav {
  padding: 24px 36px;
  transition: padding 240ms ease;
}
.siteHeader.isScrolled .orderartNav {
  padding-top: 16px;
  padding-bottom: 16px;
}
.navCol {
  min-width: 0;
}
.navMenuCol {
  display: flex;
  justify-content: flex-start;
}
.navLogoCol {
  display: flex;
  justify-content: center;
}
.navActionCol {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
/* --------------- logo ----------- */
.brandLogo.brandLogo--image {
  gap: 0;
}
.brandLogo__img {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 72px;
}
.brandLogo__img--dark {
  display: none;
}
.siteHeader.isScrolled .brandLogo__img--light {
  display: none;
}
.siteHeader.isScrolled .brandLogo__img--dark {
  display: block;
}
/* --------------- logo ----------- */
.brandLogo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary);
}
.brandLogo span {
  font-size: 34px;
  letter-spacing: 8px;
}
.brandLogo small {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.customMenu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.navLinks {
  display: flex;
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.headerLink {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: var(--primary);
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: normal;
  font-family: var(--headingFont);
}
.headerLink::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  content: "";
  transition: width 250ms ease;
}
.headerLink:hover,
.headerLink:focus,
.headerLink.active {
  color: var(--secondary);
}
.headerLink:hover::after,
.headerLink:focus::after,
.headerLink.active::after {
  width: 100%;
}
.navCta {
  min-height: 50px;
  padding: 16px 28px;
}
.navCtaMobile {
  display: none;
}

/* --------- Used in Auth and inner page Nav --------- */
.authDesktop {
  display: flex;
  align-items: center;
  margin-right: 22px;
  margin-top: 6px;
}
.userLogin {
  position: relative;
}
.authTrigger,
.guestAuthLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-family: var(--headingFont);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.authTrigger {
  padding: 8px 0;
}
.authTrigger:hover,
.authTrigger:focus,
.guestAuthLink:hover,
.guestAuthLink:focus {
  color: var(--secondary);
}
.authTrigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.userIcon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: currentColor;
  fill: currentColor;
  color: var(--primary);
}
.userName {
  line-height: 1;
}
.dropMenu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 250px;
  padding: 10px 0;
  background: var(--white);
  border: 1px solid rgba(11, 63, 73, 0.1);
  box-shadow: 0 18px 36px rgba(10, 45, 51, 0.12);
  display: none;
  z-index: 40;
}
.dropMenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.userLogin:hover .dropMenu,
.userLogin:focus-within .dropMenu {
  display: block;
}
.dropMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropMenu a {
  display: block;
  padding: 10px 18px;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.4px;
}
.dropMenu a:hover,
.dropMenu a:focus {
  background: rgba(180, 122, 85, 0.08);
  color: var(--secondary);
}
.guestAuth {
  display: flex;
  align-items: center;
  gap: 18px;
}
.mobileQuickActions {
  display: none;
  align-items: center;
  gap: 14px;
  position: relative;

}
.mobileCartLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--primary);
}
.mobileCartLink:hover,
.mobileCartLink:focus {
  color: var(--secondary);
}
.mobileCartIcon {
  width: 22px;
  height: 22px;
  color: currentColor;
  fill: currentColor;
  color: var(--primary);

}
.mobileCartCount {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}
.mobileUserMenu {
  position: relative;
}
.mobileUserMenu.isOpen .mobileDropMenu {
  display: block;
}
.mobileUserTrigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
}
.mobileUserTrigger:hover,
.mobileUserTrigger:focus {
  color: var(--secondary);
}
.mobileUserTrigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.mobileUserMenu .mobileDropMenu {
  position: absolute;
  display: none;
  top: calc(100% + 10px);
  right: -12px;
  min-width: 210px;
  padding: 10px 0;
  background: var(--white);
  border: 1px solid rgba(11, 63, 73, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(10, 45, 51, 0.12);
  z-index: 40;
}
.mobileUserMenu .mobileDropMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobileUserMenu .mobileDropMenu a {
  display: block;
  padding: 12px 18px;
  color: var(--primary);
  font-size: 15px;
}
.mobileUserMenu .mobileDropMenu a:hover,
.mobileUserMenu .mobileDropMenu a:focus {
  background: rgba(180, 122, 85, 0.08);
  color: var(--secondary);
}
.mobileAuth {
  display: none;
}
/* --------- Used in Auth and inner page Nav --------- */
.menuToggle {
  display: none;
  width: 54px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: var(--secondary);
  box-shadow: none;
}
.menuToggle:focus {
  box-shadow: 0 0 0 3px rgba(180, 122, 85, 0.25);
}
.menuToggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 260ms ease, opacity 220ms ease;
}
.menuToggle.isOpen span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menuToggle.isOpen span:nth-child(2) {
  opacity: 0;
}
.menuToggle.isOpen span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* ---- Back to top ---- */
.ak-scrollup {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 44px; height: 44px;
    background: var(--navy, #360738);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transition: bottom 0.3s ease, background 0.2s;
}
.ak-scrollup.visible { bottom: 60px; }
.ak-scrollup:hover { background: #1a0320; }
/* Hide back-to-top when cart panel is open — it floats above the cart overlay */
html.cartSlide .ak-scrollup { display: none !important; }

/* ---- Mobile user account button + dropdown ---- */
.mobile-user-btn {
    display: none;
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    align-items: center;
    transition: color 0.25s ease;
}
.mobile-user-btn:hover,
.mobile-user-btn.active { color: var(--gold-light); }

.mobile-user-dropdown {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    background: var(--black);
    border-left:   1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    border-top:    2px solid var(--gold);
    min-width: 230px;
    z-index: 1200;
    box-shadow: -4px 8px 24px rgba(0,0,0,0.5);
    overflow-y: auto;
    max-height: calc(100vh - 72px);
}
.mobile-user-dropdown.open { display: block; }
.mobile-user-dropdown__header {
    padding: 14px 20px 12px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201,168,76,0.12);
}
.mobile-user-dropdown a {
    display: block;
    padding: 13px 20px;
    color: var(--gold) !important;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    text-decoration: none !important;
    transition: background 0.2s;
    height: auto !important;
}
.mobile-user-dropdown a:last-child { border-bottom: none; }
.mobile-user-dropdown a:hover { background: rgba(201,168,76,0.07); }


/* Theme 26 modal styles used by sign in, register, forgot password, OTP verify, and opening hours modals. */
.themeModal26 .modal-content {
  color: var(--ink);
  border: 1px solid rgba(11, 63, 73, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(180, 122, 85, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(251, 248, 243, 0.99) 0%, rgba(244, 239, 235, 0.99) 100%);
  box-shadow: var(--shadow);
}
.themeModal26__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 34px 34px 18px;
  border-bottom: 1px solid rgba(11, 63, 73, 0.1);
  background:
    radial-gradient(circle at top right, rgba(180, 122, 85, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 248, 243, 0.95) 100%);
}
.themeModal26__title {
  margin: 0;
  color: var(--primary);
  font-family: var(--headingFont);
  font-size: 42px;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
}
.themeModal26 .btn-close {
  filter: none;
  opacity: 0.56;
  margin-top: 4px;
}
.themeModal26 .btn-close:hover,
.themeModal26 .btn-close:focus {
  opacity: 1;
}
.themeModal26__body {
  padding: 24px 34px 34px;
}
.themeModal26 .modalForm {
  max-width: 520px;
  margin: 0 auto;
}
.registerThemeModal .themeModal26__dialog {
  max-width: 760px;
}
.registerThemeModal .modalForm {
  max-width: 100%;
}
.registerThemeModal .themeModal26__panel .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.themeModal26__panel {
  padding: 28px;
  border: 1px solid rgba(11, 63, 73, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}
.themeModal26 .labelStyle {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}
.themeModal26 .labelStyle em {
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
}
.themeModal26 .rightIconFld {
  position: relative;
}
.themeModal26 .rightIconFld > .form-control,
.themeModal26 .rightIconFld > .form-select {
  padding-right: 48px;
}
.themeModal26 .inputFieldIcon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--secondary);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.themeModal26 .fieldIcon {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.themeModal26 .form-control,
.themeModal26 .form-select {
  min-height: 54px;
  border: 1px solid rgba(79, 100, 101, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  box-shadow: none;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.themeModal26 textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding-top: 16px;
}
.themeModal26 .form-control::placeholder {
  color: rgba(79, 100, 101, 0.74);
}
.themeModal26 .form-select {
  cursor: pointer;
}
.themeModal26 .form-select option {
  color: var(--primary);
}
.themeModal26 .form-control:focus,
.themeModal26 .form-select:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(180, 122, 85, 0.16);
  color: var(--primary);
}
.themeModal26 .btn.btnPrimary,
.themeModal26__primaryBtn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid var(--secondary);
  border-radius: 0;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--headingFont);
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.themeModal26 .btn.btnPrimary:hover,
.themeModal26 .btn.btnPrimary:focus,
.themeModal26__primaryBtn:hover,
.themeModal26__primaryBtn:focus {
  background: #9f6847;
  border-color: #9f6847;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 63, 73, 0.16);
}
.themeModal26 .btnDarkOutline,
.themeModal26__secondaryBtn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(11, 63, 73, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-family: var(--headingFont);
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.themeModal26 .btnDarkOutline:hover,
.themeModal26 .btnDarkOutline:focus,
.themeModal26__secondaryBtn:hover,
.themeModal26__secondaryBtn:focus {
  background: rgba(180, 122, 85, 0.1);
  border-color: rgba(180, 122, 85, 0.4);
  color: var(--secondary);
  transform: translateY(-1px);
}
.themeModal26__divider {
  overflow: hidden;
  position: relative;
  text-align: center;
}
.themeModal26 .dividerText {
  display: inline-block;
  position: relative;
  padding: 0 16px;
  background: transparent;
  color: rgba(79, 100, 101, 0.7);
  font-family: var(--headingFont);
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}
.themeModal26 .dividerText::before,
.themeModal26 .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  margin-top: -1px;
  border-top: 1px solid rgba(11, 63, 73, 0.12);
}
.themeModal26 .dividerText::before {
  right: 100%;
}
.themeModal26 .dividerText::after {
  left: 100%;
}
.themeModal26 .simpleLink,
.themeModal26 .linkStyle2 {
  color: var(--secondary);
  text-decoration: none;
  transition: color 220ms ease, opacity 220ms ease;
}
.themeModal26 .simpleLink:hover,
.themeModal26 .simpleLink:focus,
.themeModal26 .linkStyle2:hover,
.themeModal26 .linkStyle2:focus {
  color: #9f6847;
}
.themeModal26 .simpleLink {
  font-size: 14px;
  font-weight: 600;
}
.themeModal26 .linkStyle2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.themeModal26 .textPrimary {
  color: var(--secondary) !important;
}
.themeModal26 .errorMsg,
.themeModal26 .text-danger {
  color: #c04f4f !important;
  font-size: 13px;
}
.themeModal26 #timer {
  color: rgba(79, 100, 101, 0.82);
  font-size: 13px;
}
.themeModal26__consent {
  margin-bottom: 0;
}
.themeModal26 .form-check {
  margin-bottom: 0;
}
.themeModal26 .form-check-input {
  border-color: rgba(79, 100, 101, 0.4);
  box-shadow: none;
}
.themeModal26 .form-check-input:focus {
  border-color: rgba(180, 122, 85, 0.55);
  box-shadow: 0 0 0 4px rgba(180, 122, 85, 0.12);
}
.themeModal26 .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.themeModal26 .form-check-label {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
}
.themeModal26__footer {
  margin-top: 22px;
  color: var(--ink);
  font-size: 15px;
}
.themeModal26 [data-message] {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}
.themeModal26--info .themeModal26__panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.themeModal26--info .openingHourModalContent {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}
.themeModal26--info .modalAddress,
.themeModal26--info .hrs {
  padding: 22px 24px;
  border: 1px solid rgba(11, 63, 73, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}
.themeModal26--info .titleLbl {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: var(--headingFont);
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}
.themeModal26--info .simpleList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.themeModal26--info .simpleList > li + li {
  margin-top: 10px;
}
.themeModal26--info .infoIcon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(180, 122, 85, 0.12);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.themeModal26--info .circleIcon {
  fill: currentColor;
}
.bookTableModal .hidden,
.bookTableModal form.hidden {
  display: none !important;
}
.bookTableModal .fa-hidden {
  display: none;
}
.bookTableModal .faIcon {
  color: var(--secondary);
}
.bookTableModal .modal-content {
  color: var(--ink);
  border: 1px solid rgba(11, 63, 73, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(251, 248, 243, 0.98) 0%, rgba(244, 239, 235, 0.98) 100%);
  box-shadow: var(--shadow);
}
.bookTableModal__dialog {
  max-width: 960px;
}
.bookTableModal__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 34px 34px 18px;
  border-bottom: 1px solid rgba(11, 63, 73, 0.1);
  background:
    radial-gradient(circle at top right, rgba(180, 122, 85, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(251, 248, 243, 0.95) 100%);
}
.bookTableModal__headerInner {
  flex: 1;
  text-align: center;
}
.bookTableModal__eyebrow {
  padding-bottom: 10px;
  font-size: 34px;
}
.bookTableModal__title {
  margin: 0;
  color: var(--primary);
  font-family: var(--headingFont);
  font-size: 42px;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
}
.bookTableModal__subtitle {
  max-width: 520px;
  margin: 12px auto 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}
.bookTableModal .btn-close {
  filter: none;
  opacity: 0.56;
  margin-top: 4px;
}
.bookTableModal .btn-close:hover,
.bookTableModal .btn-close:focus {
  opacity: 1;
}
.bookTableModal__body {
  padding: 24px 34px 34px;
}
.bookTableModal__alert {
  margin-bottom: 22px;
  border-radius: 16px;
}
.bookTableModal__formShell {
  padding: 28px;
  border: 1px solid rgba(11, 63, 73, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}
.bookTableModal__fieldWrap {
  position: relative;
  width: 100%;
}
.bookTableModal__field,
.bookTableModal .form-control,
.bookTableModal .form-select {
  min-height: 54px;
  border: 1px solid rgba(79, 100, 101, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  box-shadow: none;
  padding: 14px 50px 14px 16px;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.bookTableModal .form-select {
  cursor: pointer;
}
.bookTableModal__field::placeholder,
.bookTableModal .form-control::placeholder {
  color: rgba(79, 100, 101, 0.72);
}
.bookTableModal__field:focus,
.bookTableModal .form-control:focus,
.bookTableModal .form-select:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(180, 122, 85, 0.16);
}
.bookTableModal__textarea {
  min-height: 120px;
  padding-top: 16px;
  padding-right: 16px;
  resize: vertical;
}
.bookTableModal__fieldIcon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--secondary);
  pointer-events: none;
  opacity: 0.9;
}
.bookTableModal__fieldIcon .fieldIcon {
  display: block;
  width: 20px;
  height: 20px;
  color: inherit;
  fill: currentColor;
}
.bookTableModal__depositNote {
  margin-top: 10px !important;
  color: var(--primary);
  font-size: 13px;
  line-height: 1.6;
}
.bookTableModal__depositNote span {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(180, 122, 85, 0.12);
}
.bookTableModal__recaptcha {
  display: flex;
  justify-content: center;
}
.bookTableModal__captchaWrap {
  min-height: 54px;
}
.bookTableModal__captchaImage {
  height: 54px !important;
  background: var(--white);
  border: 1px solid rgba(79, 100, 101, 0.22) !important;
  border-radius: 14px !important;
}
.bookTableModal__captchaRefresh {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(180, 122, 85, 0.22);
  border-radius: 14px;
  background: rgba(180, 122, 85, 0.1);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.bookTableModal__captchaRefresh:hover,
.bookTableModal__captchaRefresh:focus {
  background: rgba(180, 122, 85, 0.18);
  border-color: rgba(180, 122, 85, 0.36);
  color: var(--secondary);
  transform: translateY(-1px);
}
.bookTableModal__captchaRefresh .fa {
  font-size: 26px;
  line-height: 1;
}
.bookTableModal__submit {
  width: 100%;
  justify-content: center;
}
.bookTableModal__submit[disabled] {
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}
.bookTableModal__paymentCard {
  padding-top: 10px;
}
.bookTableModal__summary {
  padding: 24px;
  border: 1px solid rgba(11, 63, 73, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}
.bookTableModal__summaryTable {
  margin-bottom: 20px;
}
.bookTableModal__summaryTable td {
  padding: 14px 10px;
  border-color: rgba(11, 63, 73, 0.1);
  color: var(--primary);
  vertical-align: middle;
}
.bookTableModal__summaryTable td:first-child {
  width: 52px;
  text-align: center;
}
.bookTableModal__paymentNote p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.75;
}
.bookTableModal__stripeHeader {
  margin: 20px 0 12px;
  align-items: center;
}
.bookTableModal__label {
  margin: 0;
  color: var(--primary);
  font-family: var(--headingFont);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bookTableModal__paymentNote .labelStyle {
  margin: 0;
  color: var(--primary);
  font-family: var(--headingFont);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bookTableModal__stripeField {
  min-height: 54px;
  padding: 14px 16px;
}
.bookTableModal__success {
  padding: 30px 12px 16px;
}
.bookTableModal__successTitle {
  max-width: 560px;
  margin: 8px auto 0;
  color: var(--primary);
  font-size: 24px;
  line-height: 1.5;
}
.bookTableModal fieldset[disabled] {
  opacity: 0.58;
  pointer-events: none;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1c1c1c;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
  color: #1c1c1c;
  background-color: #f5f0e8;
}

/* ---- Responsive breakpoints ---- */
@media (max-width: 1060px) {
    .navbar__menu { display: none !important; }
    .navbar__hamburger { display: block !important; margin-left: auto !important; }
    /* No mobile sticky bar on inner pages — homepage only */
    .mobile-sticky-bar { display: flex !important; }
    .footer {
        margin-bottom: -80px;
    }
}

/* ── Page title (used by inner pages) ─────────────────────── */
.oa-page-title {
    font-family: var(--font-heading);
    color:       var(--black);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn_primary,
.btn.btnPrimary {
    background-color: var(--gold);
    border-color:     var(--gold);
    color:            var(--white);
    font-family:      var(--font-body);
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 1.05;
    text-transform:   uppercase;
    font-family: var(--headingFont);
    transition:       background 0.3s ease, color 0.3s ease;
}

.btn_primary:hover,
.btn.btnPrimary:hover {
    background-color: var(--gold-light);
    color:            var(--white);
}

/* ── Cart count badge ──────────────────────────────────────── */
.cartCount {
    background: var(--gold);
    color: var(--black);
}

/* ── Scrollbar ────────────────────────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--cream); }
*::-webkit-scrollbar { width: 6px; }
*::-webkit-scrollbar-track { background: var(--cream); }
*::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Flash / alert messages ───────────────────────────────── */
.floating-alert-top {
    position: fixed;
    top: calc(var(--navbar-height) + 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 320px;
    max-width: 600px;
}

/* ── Product / menu page overrides ───────────────────────── */
.menuSection,
.fixedCenterScroll .menuSection {
    top: calc(var(--navbar-height) + 10px);
}

/* ── Sub-category tab pills — RESERVE theme colour scheme ── */
/* Base (inactive) tab: warm off-white with subtle gold border */
.menuPageContent .customContent .content .tablinks {
    background: #ffffff !important;
    border: 1px solid rgba(201,168,76,0.35) !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
/* Hover: gold border + gold text */
.menuPageContent .customContent .content .tablinks:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    background: rgba(201,168,76,0.06) !important;
}
/* Active tab: solid gold fill, dark text — matches .btn_primary */
.menuPageContent .customContent .content .tablinks.active {
    background-color: var(--gold) !important;
    border-color:     var(--gold) !important;
    color:            var(--white) !important;
    font-weight: 700;
}
/* Remove the 17px top padding that creates a blank gap above the
   subcategory tab pills when the bar is in sticky/stuck position */
.fixedCenterScroll .menuSection {
    padding-top: 0 !important;
}

/* ── Form elements ────────────────────────────────────────── */


.labelStyle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--inner-text);
}

/* ── Footer — full RESERVE footer (same as homepage) ─────── */
.siteFooter {
  background: var(--cream);
  text-align: center;
}
.siteFooter .container {
  padding-top: 72px;
  padding-bottom: 64px;
}
.footerLogo {
  position: static;
  transform: none;
}
.footerLogo span {
	font-size: 26px;
	letter-spacing: 6px;
	font-family: var(--headingFont);
	text-transform: uppercase;
	color: var(--primary);
	line-height: 1.05;
}
.footerLogo small {
  font-size: 12px;
  letter-spacing: 3px;
}
.footerNav {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 0;
  margin: 38px 0 26px;
  list-style: none;
}
.footerNav a {
  color: var(--ink);
  font-size: 15px;
  transition: color 220ms ease;
}
.footerNav a:hover,
.footerNav a:focus {
  color: var(--secondary);
}
.socialLinks {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.socialLinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180, 122, 85, 0.35);
  border-radius: 50%;
  color: var(--secondary);
  background: transparent;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.socialLinks svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.socialLinks a:hover,
.socialLinks a:focus {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(11, 63, 73, 0.16);
}
.socialLinks a:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(11, 63, 73, 0.12);
}
.footerBottom {
  padding: 36px 15px;
  border-top: 1px solid var(--border);
}
.footerBottom p {
  margin: 0 0 6px;
  font-size: 15px;
}
.footerBottom p a {
  color: var(--secondary)
}
.footerBottom p:last-child {
  margin-bottom: 0;
}

/* ── Mobile cart tape ─────────────────────────────────────── */
.mobile_footer_tape {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
}

/* ── Single-product slide panel ───────────────────────────── */
/* newthemechangeui.css sets z-index:9 which puts this below the fixed navbar (1030).
   Override to 1035 so the slide covers the navbar when .menuPSlide is active,
   while staying below Bootstrap's modal-backdrop (1040) so login modals still
   render above the product detail panel. */
.singleProductSlideCol {
    z-index: 1035 !important;
}
/* Also hide the mobile sticky bar and floating cart when product slide is open */
html.menuPSlide .mobile-sticky-bar { display: none !important; }
html.menuPSlide .ak-scrollup       { display: none !important; }

/* ── Product view: totalPriceColumn must clear the floatingCart tape ──────── */
/* newthemechangeui.css sets sticky bottom: 40px at ≤767px, but the floatingCart
   (.mobile_footer_tape) is fixed at bottom: 0 with z-index: 1001. The ~55px
   floatingCart bar overlaps the bottom ~15px of the price bar (z-index: 7).
   Raise sticky bottom to 70px so the price bar clears the floating cart. */
@media (max-width: 767px) {
    .customFixBar.editviewPage .totalPriceColumn {
        bottom: 70px;
    }
}

/* ── Products/index customise slide: fix phantom scroll space below price bar ── */
/*
   Root cause: newthemechangeui.css makes the <form> the scroll container at ≤767px:
     form { max-height: 100vh; overflow-y: auto }
   The .totalPriceColumn.offCanvasDetail inside it is `position: sticky; bottom: 40px`.
   When the product has many options, form content >> 100vh. Sticky leaves the
   element's natural DOM position at the END of the content, creating a large
   phantom scrollable void below the stuck bar. Users scroll into blank whitespace.

   Fix: convert the form to a flex column so ONLY .menuProductInner scrolls.
   The price bar is a natural flex child at the bottom — no sticky, no phantom space.
   Using 100dvh (dynamic viewport height) so the form fits the actual visible
   area on mobile Safari / Chrome regardless of browser UI state.
*/
@media (max-width: 767px) {
    .singleProductSlideCol .customFixBar form[data-ajax-form="addToCartProductChoice"] {
        display: flex;
        flex-direction: column;
        height: 100vh;           /* fallback for browsers without dvh support */
        height: 100dvh;          /* actual visible height incl. browser UI changes */
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;        /* form itself must NOT scroll */
    }
    .singleProductSlideCol .backToMenu {
        flex: 0 0 auto;          /* fixed-height bar at the top */
    }
    .singleProductSlideCol .menuProductInner {
        flex: 1 1 0;             /* grows to fill all remaining height */
        height: auto !important; /* override any explicit px rule from other queries */
        min-height: 0;           /* required: flex containers need this for overflow to work */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .singleProductSlideCol .customFixBar .totalPriceColumn.offCanvasDetail {
        flex: 0 0 auto;          /* fixed-height bar at the bottom */
        position: static !important;
        bottom: auto;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); /* home indicator */
    }
}

/* ── Loader ────────────────────────────────────────────────── */
/* Hidden by default; shown only when JS adds .active_loader.
   After page load JS adds .hidden → fades out → display:none via setTimeout. */
.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;                /* OFF by default — shared CSS pattern */
    align-items: center;
    justify-content: center;
    background: var(--black);
    opacity: 1;
    transition: opacity 0.45s ease;
}
.loader-wrapper.active_loader {
    display: flex !important;  /* override inline style="display:none" set by hideLoader() */
    opacity: 1 !important;     /* override .loader-wrapper.hidden { opacity:0 } fade state */
    pointer-events: auto !important;
}
.loader-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ── Inner-page banner (topSpace / pageTitle) ──────────────── */
body.newtheme_inner_page .topSpace {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* Simple, clean page title — matches reference at front1.orderart.com.au */
body.newtheme_inner_page .pageTitle {
    background: #fff !important;
    background-image: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    padding: 22px 0 18px !important;
    text-align: left !important;
}
body.newtheme_inner_page .pageTitle .oa-page-title,
body.newtheme_inner_page .pageTitle h1,
body.newtheme_inner_page .pageTitle h2 {
    font-family: var(--font-body) !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #1a1208 !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    margin: 0 !important;
}

/* ── Page content spacing ─────────────────────────────────── */
body.newtheme_inner_page .pageSpace {
    padding: 56px 0 !important;
}
body.newtheme_inner_page .pageSpace2 {
    padding: 40px 0 60px !important;
}

/* ── Blog listing ────────────────────────────────────────── */
body.newtheme_inner_page .blog-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 36px;
    margin-bottom: 36px;
}
body.newtheme_inner_page .blog-item .post-content h5 a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--inner-text);
    transition: color 0.2s;
}
body.newtheme_inner_page .blog-item .post-content h5 a:hover {
    color: var(--gold);
}
body.newtheme_inner_page .blog-item .meta li {
    color: rgba(26,18,8,0.5);
    font-size: 13px;
}

/* ── Gallery grid ─────────────────────────────────────────── */
body.newtheme_inner_page .gallerySection img {
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.newtheme_inner_page .gallerySection img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ── Product/menu page content area ──────────────────────── */
body.newtheme_inner_page .menuPageContent {
    background: var(--inner-bg);
}

/* ── Product card — button layout fix ────────────────────────
   Global newthemechangeui.css sets .mBtn { position: absolute; bottom: 0; left: 0 }
   which breaks the card layout when content height varies.
   Override back to normal flow (same fix v17 uses).
──────────────────────────────────────────────────────────── */
.mBtn {
    position: static !important;
}
.mBtn > a {
    margin-bottom: 2px;
}
/* Remove the bottom padding reserved for the absolute .mBtn */
.menuContent {
    padding-bottom: 8px !important;
}

/* ── Cards and panels ─────────────────────────────────────── */
body.newtheme_inner_page .card,
body.newtheme_inner_page .cardStyle {
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ── Breadcrumb ────────────────────────────────────────────── */
body.newtheme_inner_page .breadcrumb {
    background: transparent;
    padding: 0;
}
body.newtheme_inner_page .breadcrumb-item a {
    color: var(--gold);
}
body.newtheme_inner_page .breadcrumb-item.active {
    color: rgba(26,18,8,0.5);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    body.newtheme_inner_page {
        padding-top: var(--navbar-height);
    }
    body.newtheme_inner_page .pageTitle {
        padding: 18px 20px 14px !important;
    }
}


/* ── Social login buttons (Facebook / Google) ── */
.btnDarkOutline {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.4);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 0;
    transition: background 0.2s, border-color 0.2s;
}
.btnDarkOutline:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Primary button (modal variant — uppercase B) ── */
.btn.btnPrimary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 12px 20px;
    transition: background 0.25s, color 0.25s;
}
.btn.btnPrimary:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

/* ── OR divider ── */
.sideLinesDivider {
    overflow: hidden;
    text-align: center;
    position: relative;
    padding: 0;
}
.sideLinesDivider .dividerText::before,
.sideLinesDivider .dividerText::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    margin-top: -1px;
    border-top: 1px solid rgba(201,168,76,0.2);
}
.sideLinesDivider .dividerText::before { right: 100%; }
.sideLinesDivider .dividerText::after  { left: 100%; }

/* ── Input field with right-side icon ── */
.rightIconFld {
    position: relative;
}
.inputFieldIcon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
}
.rightIconFld .form-control {
    padding-right: 44px;
}


/* ── Simple / styled links ── */
.simpleLink {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.simpleLink:hover { color: var(--gold-light); text-decoration: underline; }

.linkStyle2 {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s;
}
.linkStyle2:hover { color: var(--gold-light); }

/* ── Primary colour text ── */
.textPrimary { color: var(--gold) !important; }

/* ── Error / OTP ── */
.errorMsg { color: #e55; font-size: 12px; min-height: 1.2em; }
#timer { font-size: 13px; color: rgba(255,255,255,0.55); }


/* ── Pagination for blog / gallery ── */
.pagination-type {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 24px 0 0;
    margin: 0;
}
.pagination-type a,
.pagination-type .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--inner-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pagination-type a:hover,
.pagination-type .page-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.pagination-type .active a,
.pagination-type .active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ── Blog entry thumbnail ── */
body.newtheme_inner_page .entry-thumbnail a {
    display: block;
    overflow: hidden;
}
body.newtheme_inner_page .entry-thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
body.newtheme_inner_page .entry-thumbnail a:hover img {
    transform: scale(1.03);
}

/* ── Read more button (blog) ── */
body.newtheme_inner_page .btn-read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    justify-content: center;
}

/* ── Recent posts sidebar ── */
body.newtheme_inner_page .recent-post .post-title h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--inner-text);
    letter-spacing: 1px;
}

/* ── Contact page ── */
body.newtheme_inner_page .contactPage .rightIconFld .fldIcon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.4;
}
body.newtheme_inner_page .contactPage .form-control,
body.newtheme_inner_page .contactPage .form-select {
    border-radius: 0;
}

/* ── Profile / account pages ── */
body.newtheme_inner_page .profileForm {
    max-width: 860px;
    margin: 0 auto;
}

/* ── modalStyle (OTP, upload, etc.) — dark theme override ── */
.modalStyle .modal-content {
    background: var(--black);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 0;
    color: rgba(255,255,255,0.8);
}
.modalStyle .modal-header { border-bottom: none; }
.modalStyle .modal-title { color: var(--gold); font-family: var(--font-heading); letter-spacing: 2px; }
.modalStyle .labelStyle { color: rgba(255,255,255,0.7); }
.modalStyle .form-control,
.modalStyle .form-select {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,168,76,0.25);
    color: rgba(255,255,255,0.85);
    border-radius: 0;
}
.modalStyle .form-control:focus,
.modalStyle .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
    color: rgba(255,255,255,0.9);
}
.modalStyle .btn-close { filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg); opacity: 0.7; }

/* ── Opening Hours modal ── */
.openingHourModalContent {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.titleLbl {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.simpleList {
    list-style: none;
    padding: 0;
    margin: 0;
}
.simpleList > li + li { margin-top: 8px; }
.simpleList li { color: rgba(255,255,255,0.7); font-size: 13px; }
.circleIcon { fill: currentColor; }

/* ── Cart tape (mobile bottom bar) ── */
.mobile_footer_tape { z-index: 1001; }

/* ============================================================
   MOBILE STICKY BOTTOM BAR — kept for CSS completeness.
   HTML is only rendered on the homepage (footer-main.php).
   Inner pages do NOT show this bar.
============================================================ */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 15px;
    bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    margin: 0 15px;
    z-index: 1040;
    flex-direction: row;
    align-items: stretch;
    border-radius: 50px;
    overflow: hidden;
    background-color: var(--primary-theme-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.30);
}
.mobile-sticky-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 50%;
    padding: 16px 10px;
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}
.mobile-sticky-bar__btn + .mobile-sticky-bar__btn {
    border-left: 1px solid rgba(255,255,255,0.30);
}
.mobile-sticky-bar__btn:hover,
.mobile-sticky-bar__btn:active {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
}

/* ── Floating alert position fix for solid inner navbar ── */
.floating-alert-top {
    position: fixed;
    top: calc(var(--navbar-height) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 320px;
    max-width: 600px;
}
/* floating button at the bottom */
.floatingBtnMb {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 8;
  background-color: var(--primary);
  border-radius: 50px;
  margin: 0 15px;
}
.floatingBtnMb a.btn {
  flex: 0 0 auto;
  width: 50%;
  border-radius: 0;
  padding: 16px 10px;
}
.floatingBtnMb a.btn + a.btn {
  border-left: 1px solid var(--white);
}
@media (max-width: 1199px) {
  .editviewPage .totalPriceColumn.viewPriceBtn {
    padding-bottom: 80px !important;
  }
    .navInner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo action"
      "menu menu";
    gap: 16px;
    min-height: 52px;
  }
  .brandLogo {
    align-items: flex-start;
    margin-right: auto;
    text-align: left;
  }
  .menuToggle {
    display: block;
  }
  .navMenuCol {
    grid-area: menu;
    width: 100%;
  }
  .navLogoCol {
    grid-area: logo;
    justify-content: flex-start;
    justify-self: start;
    width: 100%;
  }
  .brandLogo__img {
    max-width: 170px;
    max-height: 54px;
  }
  .navActionCol {
    grid-area: action;
    justify-self: end;
    position: relative;
    align-items: center;
  }
  .authDesktop {
    display: none;
  }
  .mobileQuickActions {
    display: flex;
  }
  .mobileCartLink,
  .mobileUserTrigger {
    color: rgba(255, 255, 255, 0.95);
  }
  .siteHeader.isScrolled .mobileCartLink,
  .siteHeader.isScrolled .mobileUserTrigger {
    color: var(--primary);
  }
  .navCtaDesktop {
    display: none;
  }
  .navCtaMobile {
    display: inline-block;
  }
  .customMenu {
   position: fixed;
    top: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    padding: 22px;
    background: rgba(251, 248, 243, 0.97);
    box-shadow: var(--shadow);
    transform-origin: top;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
  }
  .customMenu.isOpen {
    display: flex;
    animation: menuDrop 320ms ease both;
  }
  .mobileAuth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-top: 22px;
  }
  .mobileQuickActions .menuToggle {
    display: block;
    margin-left: 0;
    z-index: 3;
    position: relative;
  }
  .navLinks {
    gap: 24px;
    flex-direction: column;
    align-items: center;
  }
  .headerLink {
    font-size: 30px;
  }
  .navCta {
    margin-top: 22px;
  }
}
@media screen and (max-width: 767px) {
  .mobileQuickActions {
    gap: 8px;
  }
    .mobileQuickActions .mobileDropMenu {
    min-width: 210px;
    padding: 10px 0;
    border: 1px solid rgba(11, 63, 73, 0.1);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 36px rgba(10, 45, 51, 0.12);
  }
  .mobileQuickActions .mobileDropMenu::before {
    content: none;
  }
  .mobileQuickActions .mobileDropMenu a {
    padding: 12px 18px;
    color: var(--primary);
    font-size: 15px;
  }
  .mobileQuickActions .mobileDropMenu a:hover,
  .mobileQuickActions .mobileDropMenu a:focus {
    background: rgba(180, 122, 85, 0.08);
    color: var(--secondary);
  }
  .siteHeader:not(.isScrolled) .mobileCartLink,
  .siteHeader:not(.isScrolled) .mobileUserTrigger {
    color: var(--primary);
  }
  .siteHeader:not(.isScrolled) .menuToggle {
    background: rgba(180, 122, 85, 0.95);
  }
  .siteHeader:not(.isScrolled) .menuToggle span {
    background: var(--white);
  }
  .headerLink {
    font-size: 24px;
  }
  .navLinks {
    gap: 14px;
  }
  .brandLogo__img {
    max-width: 148px;
    max-height: 46px;
  }
  .floatingBtnMb a.btn {
    padding: 14px 10px;
  }
  .bookTableModal__header {
    padding: 28px 22px 16px;
  }
  .bookTableModal__eyebrow {
    font-size: 28px;
  }
  .bookTableModal__title {
    font-size: 32px;
    letter-spacing: 4px;
  }
  .bookTableModal__body {
    padding: 20px 22px 24px;
  }
  .bookTableModal__formShell,
  .bookTableModal__summary {
    padding: 20px 16px;
    border-radius: 18px;
  }
  .bookTableModal__captchaWrap {
    flex-wrap: wrap;
  }
  .bookTableModal__stripeHeader {
    gap: 12px 0;
  }
  .themeModal26__header {
    padding: 28px 22px 16px;
  }
  .themeModal26__title {
    font-size: 32px;
    letter-spacing: 4px;
  }
  .themeModal26__body {
    padding: 20px 22px 24px;
  }
  .themeModal26__panel {
    padding: 20px 16px;
    border-radius: 18px;
  }
  .themeModal26--info .modalAddress,
  .themeModal26--info .hrs {
    padding: 18px 18px 20px;
    border-radius: 18px;
  }
  .themeModal26--info .titleLbl {
    font-size: 18px;
  }
  .scriptTitle {
    font-size: 36px;
  }
  .footerNav {
    flex-wrap: wrap;
    gap: 18px 30px;
  }
}
@media (max-width: 480px) {
  .orderartNav {
    padding: 14px 12px;
  }
  .orderartNav > .row > .col:first-child {
    max-width: calc(100% - 138px);
  }
  .menuToggle {
    width: 48px;
    height: 42px;
  }
  .brandLogo span {
    font-size: 22px;
    letter-spacing: 3px;
  }
  .brandLogo__img {
    max-width: 138px;
    max-height: 42px;
  }
 .bookTableModal__header {
    padding: 24px 18px 14px;
  }
  .bookTableModal__body {
    padding: 18px 18px 22px;
  }
  .bookTableModal__title {
    font-size: 28px;
    letter-spacing: 3px;
  }
  .bookTableModal__eyebrow {
    font-size: 24px;
  }
  .themeModal26__header {
    padding: 24px 18px 14px;
  }
  .themeModal26__body {
    padding: 18px 18px 22px;
  }
  .themeModal26__title {
    font-size: 28px;
    letter-spacing: 3px;
  }
  .themeModal26 .form-control,
  .themeModal26 .form-select,
  .themeModal26 .btn.btnPrimary,
  .themeModal26 .btnDarkOutline {
    min-height: 50px;
  }
  .bookTableModal__field,
  .bookTableModal .form-control,
  .bookTableModal .form-select,
  .bookTableModal__captchaImage,
  .bookTableModal__captchaRefresh {
    min-height: 50px;
    height: 50px;
  }
  .bookTableModal__textarea,
  .bookTableModal__stripeField {
    height: auto;
  }
  .bookTableModal__textarea {
    min-height: 110px;
  }
  .footerLogo {
    align-items: center;
  }
}

