html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  box-sizing: border-box;
}

.site-header #menuButton,
.site-header .menu:not(.unified-menu-button),
.site-header .menu-button:not(.unified-menu-button),
.site-header > nav a[href="/member/"],
.site-header > nav a[href="/member"],
.site-header .bbb-member-menu,
.site-header .bbb-member-trigger,
.site-header .bbb-member-account-link,
.site-header .bbb-member-badge,
.site-header .bbb-final-account-badge,
.site-header .bbb-responsive-account-badge,
.site-header [class*="member-dropdown"],
.site-header [class*="account-dropdown"] {
  display: none !important;
}

.unified-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 7px;
  margin-left: auto;
}

.unified-account-button,
.unified-notification-button,
.unified-menu-button {
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(23, 22, 20, .15);
  border-radius: 999px;
  background: #fff;
  color: #171614;
  text-decoration: none;
}

.unified-account-button[hidden],
.unified-notification-button[hidden],
.unified-mobile-menu[hidden],
.unified-mobile-menu [hidden],
.unified-notification-count[hidden] {
  display: none !important;
}

.unified-account-button {
  overflow: hidden;
  border-color: rgba(183, 137, 72, .55);
  background: #171614;
  color: #fff;
}

.unified-account-button img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.unified-account-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.unified-account-fallback svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.unified-notification-button svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.unified-notification-count {
  position: absolute;
  z-index: 4;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border: 2px solid #fffdf8;
  border-radius: 999px;
  background: #b78948;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.unified-menu-button {
  cursor: pointer;
}

.unified-menu-lines {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  pointer-events: none;
}

.unified-menu-lines span {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: top .18s ease, transform .18s ease, opacity .18s ease;
}

.unified-menu-lines span:nth-child(1) { top: 0; }
.unified-menu-lines span:nth-child(2) { top: 7px; }
.unified-menu-lines span:nth-child(3) { top: 14px; }

.unified-menu-button[aria-expanded="true"] {
  background: #171614;
  color: #fff;
}

.unified-menu-button[aria-expanded="true"] .unified-menu-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.unified-menu-button[aria-expanded="true"] .unified-menu-lines span:nth-child(2) {
  opacity: 0;
}

.unified-menu-button[aria-expanded="true"] .unified-menu-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.unified-mobile-menu {
  display: none;
}

@media (min-width: 1101px) {
  body .site-header {
    position: sticky !important;
    z-index: 5000 !important;
    top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    margin: 0 !important;
    padding: 0 clamp(24px, 4vw, 68px) !important;
    gap: 14px !important;
    overflow: visible !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(183, 137, 72, .18) !important;
    background: rgba(255, 253, 248, .98) !important;
    box-shadow: 0 5px 18px rgba(23, 20, 15, .04) !important;
  }

  body .site-header .brand,
  body .site-header > .brand,
  body .site-header .site-brand,
  body .site-header .header-brand {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 185px !important;
    max-width: 230px !important;
    height: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 9px !important;
    overflow: hidden !important;
    color: inherit !important;
    text-decoration: none !important;
  }

  body .site-header .brand-logo,
  body .site-header .brand > img,
  body .site-header .site-brand > img,
  body .site-header .header-brand > img {
    position: static !important;
    display: block !important;
    flex: 0 0 54px !important;
    width: 54px !important;
    height: 42px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    transform: none !important;
  }

  body .site-header .brand-copy,
  body .site-header .brand > span {
    display: block !important;
    min-width: 0 !important;
    max-width: 165px !important;
    overflow: hidden !important;
  }

  body .site-header .brand-copy strong,
  body .site-header .brand > span > strong {
    display: block !important;
    overflow: hidden !important;
    color: #b78948 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body .site-header .brand-copy small,
  body .site-header .brand > span > small {
    display: block !important;
    margin-top: 3px !important;
    overflow: hidden !important;
    font-size: 7px !important;
    line-height: 1.15 !important;
    letter-spacing: .11em !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body .site-header .main-nav,
  body .site-header > nav:not(.unified-mobile-menu) {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: clamp(6px, .7vw, 12px) !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  body .site-header .main-nav a,
  body .site-header > nav:not(.unified-mobile-menu) a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    margin: 0 !important;
    padding: 8px 8px !important;
    overflow: visible !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }

  body .site-header .booking-button,
  body .site-header .trip-cart-button,
  body .site-header .header-new {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 150px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 8px 14px !important;
    overflow: hidden !important;
    font-size: 10px !important;
    white-space: nowrap !important;
  }

  body .site-header > .unified-header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    width: auto !important;
    height: 42px !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    gap: 7px !important;
    overflow: visible !important;
  }

  body .site-header .unified-account-button,
  body .site-header .unified-notification-button {
    display: grid !important;
    flex-basis: 38px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
  }

  body .site-header .unified-account-button[hidden],
  body .site-header .unified-notification-button[hidden] {
    display: none !important;
  }

  body .site-header .unified-menu-button,
  .unified-mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  body .site-header {
    padding-inline: 20px !important;
    gap: 8px !important;
  }

  body .site-header .brand,
  body .site-header > .brand,
  body .site-header .site-brand,
  body .site-header .header-brand {
    min-width: 165px !important;
    max-width: 185px !important;
  }

  body .site-header .main-nav,
  body .site-header > nav:not(.unified-mobile-menu) {
    gap: 4px !important;
  }

  body .site-header .main-nav a,
  body .site-header > nav:not(.unified-mobile-menu) a {
    padding-inline: 5px !important;
    font-size: 9px !important;
  }

  body .site-header .booking-button,
  body .site-header .trip-cart-button {
    padding-inline: 10px !important;
    font-size: 9px !important;
  }
}

@media (max-width: 1100px) {
  body.unified-menu-open {
    overflow: hidden !important;
  }

  body .site-header {
    position: sticky !important;
    z-index: 5000 !important;
    top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    margin: 0 !important;
    padding: 0 11px !important;
    gap: 6px !important;
    overflow: visible !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(183, 137, 72, .2) !important;
    background: rgba(255, 253, 248, .99) !important;
    box-shadow: 0 7px 22px rgba(23, 20, 15, .06) !important;
  }

  body .site-header > .main-nav,
  body .site-header .main-nav,
  body .site-header > nav:not(.unified-mobile-menu),
  body .site-header > .header-new,
  body .site-header > .booking-button,
  body .site-header > .trip-cart-button {
    display: none !important;
  }

  body .site-header .brand,
  body .site-header > .brand,
  body .site-header .site-brand,
  body .site-header .header-brand {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 7px !important;
    overflow: hidden !important;
    text-decoration: none !important;
  }

  body .site-header .brand-logo,
  body .site-header .brand > img,
  body .site-header .site-brand > img,
  body .site-header .header-brand > img {
    position: static !important;
    display: block !important;
    flex: 0 0 58px !important;
    width: 58px !important;
    height: 42px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    transform: none !important;
  }

  body .site-header .brand-copy,
  body .site-header .brand > span {
    display: block !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body .site-header .brand-copy strong,
  body .site-header .brand > span > strong {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    color: #b78948 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body .site-header .brand-copy small,
  body .site-header .brand > span > small {
    display: none !important;
  }

  body .site-header > .unified-header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    width: auto !important;
    height: 40px !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    gap: 4px !important;
    overflow: visible !important;
  }

  body .site-header .unified-account-button,
  body .site-header .unified-notification-button,
  body .site-header .unified-menu-button {
    display: grid !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }

  body .site-header .unified-account-button[hidden],
  body .site-header .unified-notification-button[hidden] {
    display: none !important;
  }

  body .mobile-menu:not(.unified-mobile-menu),
  body .bbb-responsive-menu:not(.unified-mobile-menu),
  body .bbb-final-mobile-menu:not(.unified-mobile-menu) {
    display: none !important;
  }

  .unified-mobile-menu {
    position: fixed;
    z-index: 4999;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 70px);
    margin: 0;
    padding: 10px 14px 18px;
    overflow-y: auto;
    border-bottom: 1px solid rgba(183, 137, 72, .23);
    background: rgba(255, 253, 248, .998);
    box-shadow: 0 24px 42px rgba(20, 17, 13, .17);
  }

  .unified-mobile-menu[hidden] {
    display: none !important;
  }

  .unified-mobile-menu a {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    padding: 12px 13px;
    border: 0;
    border-bottom: 1px solid rgba(183, 137, 72, .15);
    border-radius: 10px;
    color: #302c27;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .unified-mobile-menu a:last-child {
    border-bottom: 0;
  }

  .unified-mobile-menu a.active {
    background: #171614;
    color: #fff;
  }
}

@media (max-width: 430px) {
  body .site-header .brand-logo,
  body .site-header .brand > img,
  body .site-header .site-brand > img,
  body .site-header .header-brand > img {
    flex-basis: 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
  }

  body .site-header .brand-copy strong,
  body .site-header .brand > span > strong {
    font-size: 12px !important;
  }
}

@media (max-width: 370px) {
  body .site-header .brand-copy,
  body .site-header .brand > span {
    display: none !important;
  }
}

/* Keep legacy account controls in the DOM for old scripts, but never render them. */
body .site-header > nav:not(.unified-mobile-menu) a[href="/member/"],
body .site-header > nav:not(.unified-mobile-menu) a[href="/member"],
body .site-header > nav:not(.unified-mobile-menu) a.bbb-member-account-link,
body .site-header .bbb-member-menu,
body .site-header .bbb-member-trigger,
body .site-header .bbb-member-badge,
body .site-header .bbb-final-account-badge,
body .site-header .bbb-responsive-account-badge,
body .site-header [class*="member-dropdown"],
body .site-header [class*="account-dropdown"] {
  display: none !important;
}

/* UNIFIED_NOTIFICATION_DROPDOWN_START */
.unified-header-actions {
  position: relative;
}

.unified-notification-panel {
  position: absolute;
  z-index: 6500;
  top: calc(100% + 12px);
  right: 0;
  box-sizing: border-box;
  width: min(380px, calc(100vw - 24px));
  max-height: min(560px, calc(100dvh - 92px));
  overflow: hidden;
  border: 1px solid rgba(183, 137, 72, .28);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(20, 17, 13, .22);
  color: #171614;
}

.unified-notification-panel[hidden] {
  display: none !important;
}

.unified-notification-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 17px 14px;
  border-bottom: 1px solid rgba(23, 22, 20, .1);
}

.unified-notification-panel-head strong,
.unified-notification-panel-head span {
  display: block;
}

.unified-notification-panel-head strong {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.unified-notification-panel-head span {
  margin-top: 3px;
  color: #756f67;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
}

.unified-notification-close {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(23, 22, 20, .12);
  border-radius: 999px;
  background: #fff;
  color: #171614;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.unified-notification-list {
  max-height: 390px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.unified-notification-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 14px 17px;
  border: 0;
  border-bottom: 1px solid rgba(23, 22, 20, .09);
  border-radius: 0;
  background: #fffdf8;
  color: #171614;
  text-align: left;
  cursor: pointer;
}

.unified-notification-item:hover,
.unified-notification-item:focus-visible {
  background: #f6efe5;
  outline: 0;
}

.unified-notification-item:disabled {
  opacity: .58;
  cursor: wait;
}

.unified-notification-item strong,
.unified-notification-item span,
.unified-notification-item small {
  display: block;
}

.unified-notification-item strong {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.unified-notification-item span {
  margin-top: 5px;
  color: #5f5a53;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  line-height: 1.5;
}

.unified-notification-item small {
  margin-top: 7px;
  color: #9a8f82;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
}

.unified-notification-empty {
  padding: 32px 18px;
  color: #756f67;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  text-align: center;
}

.unified-notification-empty[hidden] {
  display: none !important;
}

.unified-notification-error {
  margin: 0;
  padding: 10px 16px;
  background: #fff0ee;
  color: #963a32;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  line-height: 1.4;
}

.unified-notification-error[hidden] {
  display: none !important;
}

.unified-notification-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border-top: 1px solid rgba(23, 22, 20, .1);
  background: #171614;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 520px) {
  .unified-notification-panel {
    position: fixed;
    top: 78px;
    right: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100dvh - 90px);
    border-radius: 18px;
  }

  .unified-notification-list {
    max-height: calc(100dvh - 250px);
  }
}
/* UNIFIED_NOTIFICATION_DROPDOWN_END */


/* 2026-08-07: RTL notification panel + mobile treatments booking shortcut */
.unified-notification-panel {
  right: auto;
  inset-inline-end: 0;
  text-align: start;
}

html[dir="rtl"] .unified-notification-panel,
body.bbb-rtl .unified-notification-panel {
  direction: rtl;
}

html[dir="rtl"] .unified-notification-panel-head,
body.bbb-rtl .unified-notification-panel-head {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .unified-notification-panel-head > div,
body.bbb-rtl .unified-notification-panel-head > div {
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
}

html[dir="rtl"] .unified-notification-item,
body.bbb-rtl .unified-notification-item,
html[dir="rtl"] .unified-notification-empty,
body.bbb-rtl .unified-notification-empty,
html[dir="rtl"] .unified-notification-error,
body.bbb-rtl .unified-notification-error {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .unified-notification-item strong,
html[dir="rtl"] .unified-notification-item span,
html[dir="rtl"] .unified-notification-item small,
body.bbb-rtl .unified-notification-item strong,
body.bbb-rtl .unified-notification-item span,
body.bbb-rtl .unified-notification-item small {
  text-align: right;
  unicode-bidi: plaintext;
}

html[dir="rtl"] .unified-notification-footer,
body.bbb-rtl .unified-notification-footer {
  direction: rtl;
  text-align: center;
}

.booking-mobile-icon {
  display: none;
}

@media (max-width: 1100px) {
  body .site-header > .booking-button.mobile-header-booking {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 1px solid rgba(183,137,72,.55) !important;
    border-radius: 999px !important;
    background: #e4c50d !important;
    color: #171614 !important;
  }

  body .site-header > .booking-button.mobile-header-booking > span:not(.booking-mobile-icon) {
    display: none !important;
  }

  body .site-header > .booking-button.mobile-header-booking .booking-mobile-icon {
    display: grid !important;
    place-items: center !important;
    width: 21px !important;
    height: 21px !important;
  }

  body .site-header > .booking-button.mobile-header-booking .booking-mobile-icon svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  body .site-header > .booking-button.mobile-header-booking b {
    position: absolute !important;
    z-index: 2 !important;
    top: -5px !important;
    right: -5px !important;
    display: grid !important;
    place-items: center !important;
    min-width: 19px !important;
    width: auto !important;
    height: 19px !important;
    min-height: 19px !important;
    padding: 0 4px !important;
    border: 2px solid #fffdf8 !important;
    border-radius: 999px !important;
    background: #171614 !important;
    color: #fff !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  html[dir="rtl"] body .site-header > .booking-button.mobile-header-booking b,
  body.bbb-rtl .site-header > .booking-button.mobile-header-booking b {
    right: auto !important;
    left: -5px !important;
  }
}

@media (max-width: 520px) {
  .unified-notification-panel {
    right: 10px;
    left: 10px;
    inset-inline-end: auto;
  }
}
