	:root {
  --green: #274C4C;
  --gold: #CAAB7B;
  --black: #000000;
  --white: #ffffff;
  --muted: #a7a7a7;
  --border: rgba(255,255,255,.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body.meetme-theme {
  background: var(--black) !important;
  color: var(--white);
  font-family: "Alexandria", sans-serif;
  overflow-x: hidden;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(202,171,123,.18), transparent 32%),
    radial-gradient(circle at 10% 45%, rgba(39,76,76,.52), transparent 36%),
    linear-gradient(180deg, #000, #050707 55%, #000);
  z-index: -2;
}

.luxury-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  transition: .8s ease;
}

.luxury-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), #102626);
  border: 1px solid rgba(202,171,123,.45);
  color: var(--gold);
  font: 800 44px "Nunito";
  animation: logoPulse 1.6s ease-in-out infinite;
}

.luxury-loader span {
  color: var(--gold);
  font: 800 24px "Nunito";
}

@keyframes logoPulse {
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 75px rgba(202,171,123,.35);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,.58);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  z-index: 999;
}

.admin-bar .site-header {
  top: 32px;
}

.brand,
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), #102626);
  border: 1px solid rgba(202,171,123,.4);
  color: var(--gold);
  font: 800 27px "Nunito";
}

.brand-mark.large {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  font-size: 34px;
}

.brand strong,
.sidebar-brand strong {
  display: block;
  color: var(--gold);
  font: 800 19px "Nunito";
}

.brand span,
.sidebar-brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle,
.sidebar-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(202,171,123,.28);
  border-radius: 16px;
  color: var(--gold);
  background: rgba(202,171,123,.09);
  cursor: pointer;
  font-size: 18px;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  background: var(--gold);
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.header-whatsapp.business,
.modal-whatsapp.business,
.business-floating {
  background: rgba(202,171,123,.14);
  color: var(--gold);
  border: 1px solid rgba(202,171,123,.35);
}

.header-whatsapp.business span {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.luxury-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 92vw);
  height: 100vh;
  z-index: 9999;
  padding: 28px;
  background: linear-gradient(180deg, rgba(7,9,9,.98), rgba(0,0,0,.98));
  border-left: 1px solid rgba(202,171,123,.16);
  transform: translateX(105%);
  transition: .45s cubic-bezier(.22,1,.36,1);
}

.admin-bar .luxury-sidebar {
  top: 32px;
  height: calc(100vh - 32px);
}

.luxury-sidebar.active {
  transform: translateX(0);
}

.sidebar-close {
  position: absolute;
  top: 22px;
  left: 22px;
}

.sidebar-brand {
  padding: 22px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}

.sidebar-links {
  display: grid;
  gap: 12px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
}

.sidebar-links a i {
  color: var(--gold);
}

main {
  display: block;
}

.offer-banner {
  position: relative;
  margin: 105px auto -95px;
  max-width: 720px;
  width: calc(100% - 36px);
  padding: 14px 18px;
  border-radius: 999px;
  text-align: center;
  color: #000;
  background: linear-gradient(135deg, var(--gold), #e9d1a5);
  font-weight: 800;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  padding: 140px 22px 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 18px;
  color: var(--gold);
  background: rgba(202,171,123,.08);
  border: 1px solid rgba(202,171,123,.28);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(48px, 10vw, 92px);
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--white);
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.main-btn,
.ghost-btn {
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.main-btn {
  color: #000;
  background: var(--gold);
}

.ghost-btn {
  color: var(--gold);
  border: 1px solid rgba(202,171,123,.28);
  background: rgba(202,171,123,.07);
}

.menu-panel {
  max-width: 1100px;
  margin: auto;
  padding: 22px 18px 70px;
}

.search-box {
  position: sticky;
  top: 98px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  margin-bottom: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.065);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.admin-bar .search-box {
  top: 130px;
}

.search-box i {
  color: var(--gold);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 500 15px "Alexandria";
}

.search-box input::placeholder {
  color: #777;
}

.categories {
  position: sticky;
  top: 164px;
  z-index: 99;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0 18px;
  background: rgba(0,0,0,.75);
  scrollbar-width: none;
}

.admin-bar .categories {
  top: 196px;
}

.categories::-webkit-scrollbar {
  display: none;
}

.categories button {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-family: inherit;
}

.categories button.active,
.categories button:hover {
  background: var(--gold);
  color: #000;
}

.menu-grid {
  display: grid;
  gap: 24px;
}

.menu-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,255,255,.047);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  transition: .4s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202,171,123,.42);
}

.card-image {
  height: 210px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 24px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.card-head h3 {
  font-size: 24px;
  margin-bottom: 7px;
  color: var(--white);
}

.card-head span {
  color: var(--gold);
  font-family: "Nunito";
}

.price {
  text-align: left;
  min-width: 90px;
}

.price strong {
  color: var(--gold);
  font-size: 22px;
  white-space: nowrap;
}

.card-content p,
.social-section p,
.modal-content p {
  color: var(--muted);
  line-height: 2;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tags span {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(202,171,123,.1);
  border: 1px solid rgba(202,171,123,.18);
  font-size: 13px;
}

.social-section {
  padding: 60px 18px 80px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.social-section h2 {
  font-size: 38px;
  margin-bottom: 12px;
  color: var(--white);
}

.social-links {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
  padding: 17px 20px;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border);
}

.social-links a i {
  color: var(--gold);
  font-size: 22px;
}

.floating-socials {
  position: fixed;
  left: 18px;
  bottom: 102px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-socials a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(202,171,123,.13);
  border: 1px solid rgba(202,171,123,.3);
  text-decoration: none;
  font-size: 22px;
  position: relative;
}

.business-floating::after {
  content: "B";
  position: absolute;
  width: 17px;
  height: 17px;
  right: -3px;
  top: -3px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font: 800 10px "Nunito", sans-serif;
}

.bottom-nav {
  position: fixed;
  right: 14px;
  left: 14px;
  bottom: 14px;
  height: 74px;
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 9px;
  border-radius: 28px;
  background: rgba(0,0,0,.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(22px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  gap: 3px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 20px;
  font-size: 12px;
}

.item-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.item-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: absolute;
  right: 50%;
  bottom: 22px;
  transform: translateX(50%) translateY(30px);
  width: min(520px, calc(100% - 28px));
  max-height: 88vh;
  overflow: hidden auto;
  border-radius: 34px;
  background: #070909;
  border: 1px solid rgba(202,171,123,.22);
  transition: .35s ease;
}

.item-modal.active .modal-box {
  transform: translateX(50%) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  cursor: pointer;
}

.modal-image {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.modal-content {
  padding: 24px;
}

.modal-badge {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(202,171,123,.1);
  margin-bottom: 14px;
}

.modal-content h3 {
  font-size: 30px;
  margin-bottom: 6px;
  color: var(--white);
}

.modal-content h4 {
  color: var(--gold);
  font-family: "Nunito";
  margin-bottom: 14px;
}

.modal-price {
  margin: 20px 0;
}

.modal-price strong {
  color: var(--gold);
  font-size: 25px;
}

.modal-content .modal-whatsapp + .modal-whatsapp {
  margin-top: 10px;
}

.modal-whatsapp {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  padding: 28px 20px 110px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  direction: rtl;
}

.footer-copy strong {
  color: var(--gold);
}

.footer-copy .copyright {
  direction: ltr;
  unicode-bidi: isolate;
}

.hidden {
  display: none !important;
}

body.sidebar-open,
body.modal-open {
  overflow: hidden;
}

.header-whatsapp,
.menu-toggle,
.sidebar-close,
.sidebar-links a,
.social-links a,
.floating-socials a,
.bottom-nav a,
.main-btn,
.ghost-btn,
.modal-whatsapp {
  transition: .3s ease;
}

.header-whatsapp:hover,
.main-btn:hover,
.modal-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(202,171,123,.22);
}

.menu-toggle:hover,
.sidebar-close:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
}

.sidebar-links a:hover {
  background: rgba(202,171,123,.12);
  border-color: rgba(202,171,123,.38);
  transform: translateX(-6px);
}

.social-links a:hover {
  background: rgba(202,171,123,.12);
  border-color: rgba(202,171,123,.38);
  transform: translateY(-4px);
}

.floating-socials a:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}

.bottom-nav a:hover,
.bottom-nav a.active {
  background: var(--gold);
  color: #000;
}

.ghost-btn:hover {
  background: rgba(202,171,123,.14);
  border-color: rgba(202,171,123,.42);
  transform: translateY(-4px);
}

@media (min-width: 800px) {
  .hero {
    padding-right: 76px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .bottom-nav {
    max-width: 520px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .luxury-sidebar {
    top: 46px;
    height: calc(100vh - 46px);
  }

  .admin-bar .search-box {
    top: 144px;
  }

  .admin-bar .categories {
    top: 210px;
  }
}

@media (max-width: 620px) {
  .header-whatsapp {
    display: none;
  }

  .card-head {
    flex-direction: column;
  }

  .price {
    text-align: right;
  }

  .floating-socials {
    display: none;
  }
}

.social-links a {
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-links a span {
  order: 1;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
}

.social-links a i {
  order: 2;
  margin-right: auto;
  margin-left: 0;
  min-width: 40px;
  text-align: left;

  font-size: 30px;
  line-height: 1;

  transition: .25s ease;
}

.social-links a:hover i {
  transform: scale(1.18);
  color: var(--gold);
}
.bottom-nav {
  border: 1px solid rgba(202,171,123,.35);

  box-shadow:
    0 0 0 1px rgba(202,171,123,.08),
    0 0 30px rgba(202,171,123,.08),
    inset 0 0 25px rgba(202,171,123,.03);

  backdrop-filter: blur(14px);
}

.bottom-nav a {
  transition: .25s ease;
}

.bottom-nav a:hover {
  background: rgba(202,171,123,.08);
  color: var(--gold);

  box-shadow:
    inset 0 0 18px rgba(202,171,123,.12),
    0 0 14px rgba(202,171,123,.08);

  border-radius: 16px;
}
.categories-wrap {
  position: sticky;
  top: 164px;
  z-index: 99;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  background: rgba(0,0,0,.75);
  padding: 12px 0 18px;
}

.admin-bar .categories-wrap {
  top: 196px;
}

.categories-wrap .categories {
  position: static;
  top: auto;
  padding: 0;
  background: transparent;
}

.cat-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(202,171,123,.35);
  background: rgba(202,171,123,.10);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s ease;
}

.cat-arrow:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
}

.bottom-nav {
  border: 1px solid rgba(202,171,123,.35);
  box-shadow:
    0 0 0 1px rgba(202,171,123,.08),
    0 0 30px rgba(202,171,123,.08),
    inset 0 0 25px rgba(202,171,123,.03);
  backdrop-filter: blur(14px);
}

.bottom-nav a:hover {
  background: rgba(202,171,123,.08);
  color: var(--gold);
  box-shadow:
    inset 0 0 18px rgba(202,171,123,.12),
    0 0 14px rgba(202,171,123,.08);
  border-radius: 16px;
}

.brand-logo {
  max-width: 190px;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.brand-mark img,
.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.loader-logo img {
  padding: 10px;
}

/* Fix floating socials position under WhatsApp button */
.floating-socials {
  top: 132px;
  bottom: auto;
  left: 22px;
  gap: 14px;
}

/* Fix anchor scroll offset for fixed header */
#social,
#menu {
  scroll-margin-top: 150px;
}

/* Extra spacing so social title does not hide under header */
.social-section {
  padding-top: 120px;
}

.page-shell {
  min-height: 100vh;
  padding: 150px 18px 120px;
}

.luxury-page {
  max-width: 980px;
  margin: auto;
  padding: 42px;
  border-radius: 38px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(202,171,123,.18);
  backdrop-filter: blur(18px);
}

.luxury-page h1 {
  color: #fff;
  font-size: clamp(34px, 6vw, 64px);
  margin: 22px 0 16px;
}

.luxury-page p {
  color: var(--muted);
  line-height: 2;
  font-size: 17px;
  margin-bottom: 28px;
}

.meetme-form {
  margin-top: 25px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 9px;
  color: var(--gold);
  font-weight: 700;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid rgba(202,171,123,.22);
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  color: #fff;
  padding: 15px 16px;
  font: 500 15px "Alexandria", sans-serif;
  outline: none;
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  border: 0;
  margin-top: 22px;
  cursor: pointer;
  font-family: inherit;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  gap: 7px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(202,171,123,.18);
  transition: .3s ease;
}

.contact-card i {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-card strong {
  font-size: 22px;
}

.contact-card span {
  color: var(--muted);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(202,171,123,.45);
  background: rgba(202,171,123,.10);
}

@media (min-width: 800px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid label:last-child {
    grid-column: 1 / -1;
  }

  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.meetme-wp-menu {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.meetme-wp-menu li {
  margin: 0;
  padding: 0;
}

.meetme-wp-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
}

.meetme-wp-menu a:hover {
  background: rgba(202,171,123,.12);
  border-color: rgba(202,171,123,.38);
  transform: translateX(-6px);
}

.brand-centered {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
}

.header-spacer {
  width: 160px;
}

.site-header {
  justify-content: space-between;
}

.meetme-wp-menu a {
  justify-content: space-between;
}


/* Header layout fix */
.site-header {
  direction: ltr;
}

.header-actions {
  direction: rtl;
  order: 1;
}

.brand-centered {
  right: 50%;
  transform: translateX(50%);
}

.header-spacer {
  order: 3;
}

/* Bigger centered logo */
.brand-logo {
  max-width: 260px;
  max-height: 72px;
}

/* Reservation title line break support */
.reservation-page h1 {
  line-height: 1.15;
}

.reservation-page h1 .title-line {
  display: block;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  border: 1.5px solid rgba(202,171,123,.55) !important;
  box-shadow:
    0 0 0 1px rgba(202,171,123,.05),
    inset 0 0 18px rgba(202,171,123,.035);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--gold) !important;
  box-shadow:
    0 0 0 3px rgba(202,171,123,.12),
    0 0 24px rgba(202,171,123,.12);
}

/* Flatpickr Premium Dark */
.flatpickr-calendar {
  background: #070909 !important;
  border: 1px solid rgba(202,171,123,.35) !important;
  box-shadow: 0 25px 70px rgba(0,0,0,.55) !important;
  border-radius: 22px !important;
  font-family: "Alexandria", sans-serif !important;
}

.flatpickr-months,
.flatpickr-weekdays {
  background: transparent !important;
}

.flatpickr-current-month,
.flatpickr-monthDropdown-months,
.flatpickr-weekday,
.flatpickr-day {
  color: #fff !important;
}

.flatpickr-day:hover,
.flatpickr-day.selected,
.flatpickr-day.today {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #000 !important;
}

.flatpickr-time input,
.flatpickr-am-pm {
  color: #fff !important;
  background: transparent !important;
}

/* FINAL CLEAN HEADER FIX */

.site-header {
  position: fixed !important;
  height: 92px !important;
  padding: 14px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.header-actions {
  position: static !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  direction: ltr !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

.header-whatsapp {
  order: 1 !important;
  margin: 0 !important;
  z-index: 20 !important;
  pointer-events: auto !important;
}

.menu-toggle {
  order: 2 !important;
  margin: 0 !important;
  margin-right: -90px !important;
  width: 52px !important;
  height: 52px !important;
  z-index: 20 !important;
  pointer-events: auto !important;
}

.brand-centered {
  position: absolute !important;
  right: 50% !important;
  transform: translateX(50%) !important;
  z-index: 30 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.brand-logo {
  width: 360px !important;
  max-width: 360px !important;
  max-height: 88px !important;
}

/* Mobile: keep hamburger right */
@media (max-width: 620px) {
  .header-actions {
    direction: rtl !important;
  }

  .menu-toggle {
    order: 1 !important;
    margin-right: -100px !important;
    margin-left: 0 !important;
  }

  .header-whatsapp {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .header-actions {
    direction: rtl !important;
  }

  .menu-toggle {
    order: 1 !important;
    margin-right: -100px !important;
    margin-left: 0 !important;
  }

  .header-whatsapp {
    display: none !important;
  }
}

/* Mobile: prevent logo click overlap with hamburger */
@media (max-width: 620px) {
  .brand-centered {
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .menu-toggle {
    z-index: 50 !important;
    pointer-events: auto !important;
  }
}

/* Fixed bottom nav on all pages */
.bottom-nav {
  position: fixed !important;
  right: 50% !important;
  left: auto !important;
  bottom: 18px !important;
  transform: translateX(50%) !important;
  width: min(680px, calc(100% - 32px)) !important;
  z-index: 99999 !important;
}

/* Back button for inner pages */
.page-back-btn {
  position: fixed;
  top: 118px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(202,171,123,.14);
  border: 1px solid rgba(202,171,123,.35);
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.page-back-btn:hover {
  background: var(--gold);
  color: #000;
}

@media (max-width: 620px) {
  .page-back-btn {
    top: 112px;
    right: 14px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .bottom-nav {
    bottom: 12px !important;
    width: calc(100% - 24px) !important;
  }
}

.menu-empty-state {
  display: none;
  margin: 26px auto 0;
  max-width: 520px;
  padding: 22px;
  border-radius: 24px;
  text-align: center;
  background: rgba(10,10,10,.65);
  border: 1px solid rgba(202,171,123,.35);
  color: #fff;
}

.menu-empty-state i {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 28px;
}

.menu-empty-state strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.menu-empty-state span {
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

.menu-empty-state {
  display: none;
  margin: 28px auto 0;
  max-width: 520px;
  padding: 24px 20px;
  border-radius: 26px;
  text-align: center;
  background: rgba(8, 10, 10, .72);
  border: 1px solid rgba(202, 171, 123, .35);
  color: #fff;
}

.menu-empty-state i {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 30px;
}

.menu-empty-state strong {
  display: block;
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 800;
}

.menu-empty-state span {
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

/* Hide page back button while sidebar is open */
body.sidebar-open .page-back-btn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* =========================
   DYNAMIC MENU CATEGORIES
========================= */

.menu-categories-section {
  position: relative;
  padding: 70px 22px 30px;
  z-index: 2;
}

.menu-categories-section .section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.menu-categories-section .section-heading span {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(202,171,123,.32);
  color: #caab7b;
  background: rgba(202,171,123,.08);
  font-weight: 800;
}

.menu-categories-section .section-heading h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
}

.menu-categories-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(202,171,123,.22);
  background: rgba(10,10,10,.72);
  cursor: pointer;
  padding: 0;
  text-align: right;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.menu-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--category-color) 65%, transparent);
  opacity: .55;
  pointer-events: none;
  z-index: 3;
}

.menu-category-card:hover {
  transform: translateY(-5px);
}

.menu-category-image {
  position: absolute;
  inset: 0;
}

.menu-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  transform: scale(1.04);
}

.menu-category-card:hover .menu-category-image img {
  transform: scale(1.1);
}

.menu-category-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.86)),
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--category-color) 28%, transparent), transparent 45%);
}

.menu-category-content {
  position: relative;
  z-index: 4;
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  direction: rtl;
}

.menu-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: color-mix(in srgb, var(--category-color) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--category-color) 55%, transparent);
  color: var(--category-color);
  font-size: 22px;
}

.menu-category-content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.menu-category-content span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .menu-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .menu-categories-section {
    padding: 42px 14px 20px;
  }

  .menu-categories-grid {
    grid-template-columns: 1fr;
  }

  .menu-category-card,
  .menu-category-content {
    min-height: 170px;
  }
}

/* =========================
   FINAL PREMIUM BOTTOM NAV OVERRIDE
========================= */

.bottom-nav {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: 18px !important;
  transform: translateX(-50%) !important;

  width: min(520px, calc(100% - 24px)) !important;
  height: 78px !important;
  z-index: 9999 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  gap: 6px !important;

  padding: 8px !important;
  border-radius: 999px !important;

  background: linear-gradient(180deg, rgba(25,25,25,.88), rgba(5,5,5,.94)) !important;
  border: 1px solid rgba(202,171,123,.18) !important;
  backdrop-filter: blur(24px) !important;

  box-shadow:
    0 10px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.bottom-nav a {
  width: 64px !important;
  height: 64px !important;
  border-radius: 20px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;

  color: rgba(255,255,255,.62) !important;
  text-decoration: none !important;
}

.bottom-nav a i {
  font-size: 18px !important;
}

.bottom-nav a span {
  font-size: 11px !important;
  font-weight: 800 !important;
}

.bottom-nav a:hover,
.bottom-nav a.active {
  color: #caab7b !important;
  background: rgba(202,171,123,.10) !important;
}

@media (min-width: 992px) {
  .bottom-nav {
    display: none !important;
  }
}

#modalDesc {
  display: block !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 14px !important;
  line-height: 1.9 !important;
  margin: 14px 0 18px !important;
}

/* =========================
   MENU CATEGORIES SLIDER FINAL
========================= */

.menu-categories-slider-wrap {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 14px;
  align-items: center;
}

.menu-categories-slider-wrap .menu-categories-grid {
  width: 100%;
  margin: 0;
  display: flex !important;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.menu-categories-slider-wrap .menu-categories-grid::-webkit-scrollbar {
  display: none;
}

.menu-categories-slider-wrap .menu-category-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
}

.menu-cat-slide-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(202,171,123,.35);
  background: rgba(202,171,123,.10);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: .25s ease;
}

.menu-cat-slide-arrow:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
}

@media (max-width: 620px) {
  .menu-categories-slider-wrap {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .menu-cat-slide-arrow {
    width: 44px;
    height: 44px;
  }

  .menu-categories-slider-wrap .menu-category-card {
    flex-basis: 230px;
  }
}

/* =========================
   OFFERS SECTION
========================= */

.offers-section {
  position: relative;
  padding: 70px 22px 35px;
  z-index: 2;
}

.offers-section .section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.offers-section .section-heading span {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(202,171,123,.32);
  color: var(--gold);
  background: rgba(202,171,123,.08);
  font-weight: 800;
}

.offers-section .section-heading h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
}

.offers-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.047);
  border: 1px solid rgba(202,171,123,.18);
  backdrop-filter: blur(18px);
  transition: .35s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(202,171,123,.42);
}

.offer-image {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.offer-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
}

.offer-content {
  padding: 22px;
}

.offer-subtitle {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.offer-content h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.offer-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.offer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.offer-meta small {
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
  font-size: 16px;
}

.offer-meta strong {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.offer-date {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  margin-bottom: 16px;
}

.offer-date i {
  color: var(--gold);
}

.offer-button {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.offers-empty-state {
  width: min(560px, calc(100% - 24px));
  margin: 0 auto;
  padding: 30px 22px;
  border-radius: 28px;
  text-align: center;
  background: rgba(8,10,10,.72);
  border: 1px solid rgba(202,171,123,.35);
  color: #fff;
}

.offers-empty-state i {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 34px;
}

.offers-empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
}

.offers-empty-state span {
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

/* =========================
   OFFERS SLIDER
========================= */

.offers-slider-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 14px;
  align-items: center;
}

.offers-slider-wrap .offers-grid {
  width: 100%;
  margin: 0;
  display: flex !important;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.offers-slider-wrap .offers-grid::-webkit-scrollbar {
  display: none;
}

.offers-slider-wrap .offer-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

.offers-slide-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(202,171,123,.35);
  background: rgba(202,171,123,.10);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: .25s ease;
}

.offers-slide-arrow:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
}

@media (max-width: 620px) {
  .offers-slider-wrap {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .offers-slide-arrow {
    width: 44px;
    height: 44px;
  }

  .offers-slider-wrap .offer-card {
    flex-basis: 260px;
  }
}

/* =========================
   MENU TEMPLATES
========================= */

.menu-template-modern .menu-card {
  background: rgba(255,255,255,.047);
  border: 1px solid var(--border);
}

.menu-template-luxury .menu-card {
  background:
    linear-gradient(180deg, rgba(202,171,123,.10), rgba(0,0,0,.72)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(202,171,123,.35);
  box-shadow:
    0 0 0 1px rgba(202,171,123,.06),
    0 20px 60px rgba(0,0,0,.35);
}

.menu-template-luxury .card-head h3 {
  color: var(--gold);
}

.menu-template-luxury .price strong {
  color: #fff;
  background: rgba(202,171,123,.16);
  border: 1px solid rgba(202,171,123,.30);
  padding: 8px 12px;
  border-radius: 16px;
}

.menu-template-classic .menu-grid {
  gap: 14px;
}

.menu-template-classic .menu-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 180px;
  border-radius: 24px;
  background: rgba(255,255,255,.075);
}

.menu-template-classic .card-image {
  height: 100%;
  min-height: 180px;
}

.menu-template-classic .card-content {
  padding: 18px;
}

.menu-template-classic .card-head h3 {
  font-size: 21px;
}

.menu-template-minimal .menu-grid {
  gap: 10px;
}

.menu-template-minimal .menu-card {
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.menu-template-minimal .card-image {
  display: none;
}

.menu-template-minimal .card-content {
  padding: 18px;
}

.menu-template-minimal .card-head {
  margin-bottom: 8px;
}

.menu-template-minimal .card-content p {
  font-size: 13px;
}

@media (max-width: 620px) {
  .menu-template-classic .menu-card {
    grid-template-columns: 1fr;
  }

  .menu-template-classic .card-image {
    height: 190px;
  }
}

/* FIX MENU PAGE GAP */
.page-template-page-menu .page-shell {
  padding-bottom: 10px !important;
}

.page-template-page-menu .luxury-page {
  margin-bottom: 18px !important;
  min-height: auto !important;
  padding: 70px 28px 55px !important;
}

.page-template-page-menu .menu-categories-section {
  padding-top: 20px !important;
}

.page-template-page-menu .menu-panel {
  padding-top: 20px !important;
}

/* STRONGER TEMPLATE DIFFERENCES */
.menu-template-luxury .menu-card {
  border: 1px solid rgba(202,171,123,.55) !important;
  background: linear-gradient(145deg, rgba(202,171,123,.18), rgba(0,0,0,.88)) !important;
  box-shadow: 0 22px 65px rgba(202,171,123,.12) !important;
}

.menu-template-luxury .card-image {
  height: 260px !important;
}

.menu-template-luxury .card-head h3 {
  color: var(--gold) !important;
}

.menu-template-classic .menu-card {
  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  border-radius: 22px !important;
}

.menu-template-classic .card-image {
  height: 100% !important;
  min-height: 210px !important;
}

.menu-template-minimal .menu-card {
  border-radius: 18px !important;
  background: rgba(255,255,255,.035) !important;
}

.menu-template-minimal .card-image {
  display: none !important;
}

.menu-template-minimal .card-content {
  padding: 18px 22px !important;
}

@media (max-width: 620px) {
  .page-template-page-menu .luxury-page {
    padding: 55px 18px 38px !important;
  }

  .menu-template-classic .menu-card {
    grid-template-columns: 1fr !important;
  }

  .menu-template-classic .card-image {
    height: 190px !important;
  }
}

/* =========================
   BIO TREE
========================= */

.bio-tree-page {
  min-height: 100vh;
  padding: 145px 18px 110px;
  display: grid;
  place-items: center;
}

.bio-tree-card {
  width: min(560px, 100%);
  padding: 34px 22px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(39,76,76,.38), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(202,171,123,.22);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}

.bio-tree-logo {
  width: 104px;
  height: 104px;
  margin: 8px auto 18px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), #0d2222);
  border: 1px solid rgba(202,171,123,.38);
  color: var(--gold);
  font-size: 38px;
}

.bio-tree-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-tree-card h1 {
  font-size: clamp(32px, 7vw, 54px);
  color: #fff;
  margin-bottom: 10px;
}

.bio-tree-card p {
  color: var(--muted);
  line-height: 1.9;
  margin: 0 auto 24px;
  max-width: 430px;
}

.bio-tree-links {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.bio-tree-links a {
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  transition: .25s ease;
}

.bio-tree-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(202,171,123,.35);
  background: rgba(202,171,123,.10);
}

.bio-tree-links a i {
  color: var(--gold);
}

.bio-tree-links a span {
  font-weight: 800;
  text-align: right;
}

@media (max-width: 620px) {
  .bio-tree-page {
    padding-top: 125px;
  }

  .bio-tree-card {
    border-radius: 28px;
  }
}

/* FIX MOBILE HEADER TRANSPARENCY */
@media (max-width: 620px) {
  .site-header {
    background: rgba(0,0,0,.96) !important;
    backdrop-filter: blur(22px) !important;
  }

  body.admin-bar .site-header {
    top: 46px !important;
  }

  .bio-tree-page {
    padding-top: 130px !important;
  }

  .page-back-btn {
    display: none !important;
  }
}

.bio-tree-social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.bio-tree-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(202,171,123,.22);
  text-decoration: none;
}

.bio-tree-social-icons a:hover {
  background: rgba(202,171,123,.14);
}

/* FORCE BIO TREE SOCIAL ICONS ON DESKTOP + MOBILE */
.bio-tree-social-icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin: 18px 0 24px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.bio-tree-social-icons a {
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 50% !important;
  color: var(--gold) !important;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(202,171,123,.22) !important;
  text-decoration: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.bio-tree-social-icons a i {
  display: inline-block !important;
  color: var(--gold) !important;
  font-size: 17px !important;
  line-height: 1 !important;
}

.bio-tree-social-icons a:hover {
  transform: translateY(-3px);
  background: rgba(202,171,123,.14) !important;
}

/* SIDEBAR SCROLL FIX */
.luxury-sidebar {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: 100vh !important;
  padding-bottom: 30px !important;
}

.luxury-sidebar .sidebar-links {
  max-height: calc(100vh - 170px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-left: 6px !important;
}

.luxury-sidebar .sidebar-links::-webkit-scrollbar {
  width: 5px;
}

.luxury-sidebar .sidebar-links::-webkit-scrollbar-thumb {
  background: rgba(202,171,123,.45);
  border-radius: 20px;
}

@media (max-width: 620px) {
  .luxury-sidebar {
    max-height: 100dvh !important;
  }

  .luxury-sidebar .sidebar-links {
    max-height: calc(100dvh - 150px) !important;
  }
}

.floating-social{
    position:fixed;
    left:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:999;
}

.floating-social a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:var(--gold);
    background:rgba(255,255,255,.06);
    border:1px solid rgba(202,171,123,.25);
}

@media(max-width:768px){
    .floating-social{
        display:none;
    }
}

/* FINAL: Social Section Grid Fix */
.social-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 26px !important;
}

.social-grid a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 17px 20px !important;
  border-radius: 22px !important;
  color: #fff !important;
  text-decoration: none !important;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid var(--border) !important;
  font-weight: 800 !important;
}

.social-grid a i {
  color: var(--gold) !important;
  font-size: 26px !important;
}

.social-grid a:hover {
  background: rgba(202,171,123,.12) !important;
  border-color: rgba(202,171,123,.38) !important;
  transform: translateY(-4px) !important;
}

@media (max-width: 620px) {
  .social-grid {
    grid-template-columns: 1fr !important;
  }
}

/* FINAL: Sidebar Touch Scroll Fix */
.luxury-sidebar {
  height: 100dvh !important;
  max-height: 100dvh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  padding-bottom: 120px !important;
}

.admin-bar .luxury-sidebar {
  height: calc(100dvh - 46px) !important;
  max-height: calc(100dvh - 46px) !important;
}

.sidebar-links {
  overflow: visible !important;
  max-height: none !important;
  padding-bottom: 80px !important;
}

@media (max-width: 620px) {
  body.sidebar-open {
    overflow: hidden !important;
    touch-action: none !important;
  }

  body.sidebar-open .luxury-sidebar {
    touch-action: pan-y !important;
  }
}

/* FINAL OLD FLOATING SOCIALS LOOK */
.floating-social {
  position: fixed !important;
  left: 22px !important;
  top: 160px !important;
  transform: none !important;
  z-index: 999 !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.floating-social a {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 50% !important;
  color: var(--gold) !important;
  background: rgba(202,171,123,.13) !important;
  border: 1px solid rgba(202,171,123,.30) !important;

  text-decoration: none !important;
  font-size: 22px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.20) !important;
  transition: .25s ease !important;
}

.floating-social a i {
  font-size: 22px !important;
  line-height: 1 !important;
  color: inherit !important;
}

.floating-social a:hover {
  background: var(--gold) !important;
  color: #000 !important;
  transform: scale(1.1) !important;
}

@media (max-width: 768px) {
  .floating-social {
    display: none !important;
  }
}

/* =========================
   BIO TREE SHARE BUTTON
========================= */

.bio-tree-link-row {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
  align-items: center;
}

.bio-tree-main-link {
  display: grid !important;
  grid-template-columns: 34px 1fr 28px !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 18px !important;
  border-radius: 22px !important;
  color: #fff !important;
  text-decoration: none !important;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}

.bio-share-btn {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(202,171,123,.24);
  background: rgba(202,171,123,.09);
  color: var(--gold);
  cursor: pointer;
}

.bio-share-panel {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  padding: 18px;
}

.bio-share-panel.active {
  display: grid;
}

.bio-share-box {
  width: min(360px, 100%);
  padding: 22px;
  border-radius: 28px;
  background: #070909;
  border: 1px solid rgba(202,171,123,.25);
  display: grid;
  gap: 12px;
  position: relative;
}

.bio-share-box strong {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.bio-share-box button,
.bio-share-box a {
  border: 0;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.bio-share-box i {
  color: var(--gold);
}

.bio-share-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  justify-content: center;
  padding: 0 !important;
  border-radius: 50% !important;
}