:root {
  --bl-black: #050505;
  --bl-ink: #1f1d1b;
  --bl-muted: #6f6a66;
  --bl-line: #e9e2db;
  --bl-soft: #faf7f3;
  --bl-gold: #c69020;
  --bl-gold-dark: #a3730c;
  --bl-red: #cf3349;
  --bl-red-dark: #ae263b;
  --bl-white: #fff;
  --bl-header-height: 78px;
  --bl-radius: 8px;
  color-scheme: light;
}

.bl-page-hero--gallery {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.bl-gallery-shell {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  align-items: start;
}

.bl-gallery-nav {
  position: sticky;
  top: calc(var(--bl-header-height) + 1rem);
  align-self: start;
}

.bl-gallery-nav__inner {
  display: grid;
  gap: .5rem;
  padding: .2rem 0;
}

.bl-gallery-nav__link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: .72rem .85rem;
  border: 1px solid var(--bl-line);
  border-radius: 8px;
  background: var(--bl-white);
  color: var(--bl-ink);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
}

.bl-gallery-nav__link:hover,
.bl-gallery-nav__link:focus-visible {
  border-color: rgba(198, 144, 32, .55);
  color: var(--bl-black);
  transform: translateY(-1px);
}

.bl-gallery-nav__link.is-active {
  border-color: var(--bl-black);
  background: var(--bl-black);
  color: var(--bl-white);
}

.bl-gallery-main {
  min-width: 0;
}

.bl-gallery-copy {
  max-width: none;
}

.bl-gallery-copy > .orin-gallery:first-child,
.bl-gallery-main .orin-gallery:first-child {
  margin-top: 0;
}

.bl-gallery-hub__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.85rem, 2vw, 1rem);
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.bl-gallery-hub__link {
  display: grid;
  gap: .45rem;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--bl-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  text-decoration: none;
  align-content: end;
  transition: border-color .18s ease, transform .18s ease;
}

.bl-gallery-hub__link:hover,
.bl-gallery-hub__link:focus-visible {
  border-color: rgba(207, 51, 73, .38);
  transform: translateY(-2px);
}

.bl-gallery-hub__link strong {
  color: var(--bl-black);
  font-size: 1.05rem;
  line-height: 1.25;
}

.bl-gallery-hub__link span {
  color: var(--bl-muted);
  font-size: .92rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .bl-gallery-shell {
    display: block;
  }

  .bl-gallery-nav {
    position: sticky;
    top: var(--bl-header-height);
    z-index: 20;
    margin: 0 0 1.2rem;
    padding: .55rem 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
  }

  .bl-gallery-nav__inner {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding: .15rem 0 .3rem;
    scrollbar-width: thin;
  }

  .bl-gallery-nav__link {
    flex: 0 0 auto;
    min-height: 42px;
    white-space: nowrap;
  }

  .bl-gallery-hub__links {
    grid-template-columns: 1fr;
  }
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body.beautylift-public {
  margin: 0;
  background: var(--bl-white);
  color: var(--bl-ink);
  font-family: Poppins, Inter, Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  max-width: 100%;
  overflow-x: hidden;
}

body.beautylift-public *,
body.beautylift-public *::before,
body.beautylift-public *::after {
  box-shadow: none !important;
}

body.bl-menu-open,
body.bl-cart-open {
  overflow: hidden;
}

html.bl-modal-open {
  overflow-y: scroll;
}

body.bl-modal-open {
  position: fixed;
  inset: var(--bl-modal-lock-top, 0) 0 auto 0;
  width: 100%;
  overflow: hidden;
}

a {
  color: inherit;
}

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

.bl-skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 10000;
  background: var(--bl-white);
  color: var(--bl-black);
  padding: .7rem 1rem;
  border-radius: var(--bl-radius);
}

.bl-skip-link:focus {
  top: 1rem;
}

.bl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  background: var(--bl-black);
  color: var(--bl-white);
  transform: translateY(0);
  transition: transform 220ms ease;
  will-change: transform;
}

.bl-header.is-hidden-on-scroll {
  transform: translateY(-100%);
}

.bl-header__inner {
  width: min(1160px, calc(100% - 32px));
  min-height: var(--bl-header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.bl-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  color: var(--bl-white);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0;
}

.bl-brand img {
  width: 38px;
  height: 38px;
  filter: invert(1);
}

.bl-brand strong {
  font-weight: 800;
}

.bl-brand:hover,
.bl-brand:focus-visible,
.bl-brand:hover span,
.bl-brand:focus-visible span {
  color: var(--bl-white);
  text-decoration: none;
}

.bl-nav {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  align-self: stretch;
  gap: .4rem;
}

.bl-nav__item {
  position: static;
  min-height: var(--bl-header-height);
  display: flex;
  align-items: center;
}

.bl-nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 44px;
  padding: 0 .85rem;
  text-decoration: none;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--bl-radius);
  transition: background 160ms ease, color 160ms ease;
}

.bl-nav__link span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  line-height: 1;
  transform: translateY(-.08em);
  transition: transform 160ms ease;
}

.bl-nav__link:hover,
.bl-nav__item:focus-within .bl-nav__link,
.bl-nav__item:hover .bl-nav__link {
  background: rgba(255, 255, 255, .1);
  color: var(--bl-white);
  text-decoration: none;
}

.bl-nav__item:focus-within .bl-nav__link span[aria-hidden="true"],
.bl-nav__item:hover .bl-nav__link span[aria-hidden="true"] {
  transform: translateY(.08em);
}

.bl-nav__panel {
  position: fixed;
  top: var(--bl-header-height);
  left: 0;
  right: 0;
  z-index: 895;
  width: 100%;
  padding: 0;
  background: var(--bl-white);
  color: var(--bl-ink);
  border-bottom: 1px solid var(--bl-line);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.bl-nav__item:hover .bl-nav__panel,
.bl-nav__item:focus-within .bl-nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bl-nav__panel-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1rem 0;
}

.bl-nav__feature {
  position: relative;
  min-height: 236px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--bl-radius);
  background: var(--bl-black);
  color: var(--bl-white);
  text-decoration: none;
}

.bl-nav__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .66));
}

.bl-nav__feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.bl-nav__feature:hover,
.bl-nav__feature:focus-visible {
  color: var(--bl-white);
  text-decoration: none;
}

.bl-nav__feature:hover img,
.bl-nav__feature:focus-visible img {
  transform: scale(1.035);
}

.bl-nav__feature-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .35rem;
  padding: 1rem;
}

.bl-nav__feature-title {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.bl-nav__feature-summary {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  line-height: 1.45;
}

.bl-nav__panel-content {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.bl-nav__panel-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .15rem .15rem .85rem;
  border-bottom: 1px solid var(--bl-line);
}

.bl-nav__panel-eyebrow {
  min-width: 0;
  color: var(--bl-muted);
  font-size: .82rem;
  font-weight: 800;
}

.bl-nav__sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bl-nav__section {
  min-width: 0;
}

.bl-nav__section-title {
  display: block;
  margin: 0 0 .45rem;
  color: var(--bl-black);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
}

.bl-nav__links {
  display: grid;
  gap: .18rem;
}

.bl-nav__panel-link {
  min-width: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: .55rem .7rem;
  border-radius: 6px;
  color: var(--bl-ink);
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.bl-nav__panel-link:hover,
.bl-nav__panel-link:focus-visible {
  background: var(--bl-soft);
  color: var(--bl-red-dark);
  text-decoration: none;
}

.bl-nav__all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 38px;
  padding: .5rem .7rem;
  border: 1px solid rgba(198, 144, 32, .32);
  border-radius: 6px;
  color: var(--bl-gold-dark);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.bl-nav__all::after {
  content: "\2192";
  display: inline-block;
  transform: translateX(0);
  transition: transform 160ms ease;
}

.bl-nav__all:hover,
.bl-nav__all:focus-visible {
  border-color: rgba(198, 144, 32, .58);
  background: rgba(198, 144, 32, .1);
  color: var(--bl-gold-dark);
  text-decoration: none;
}

.bl-nav__all:hover::after,
.bl-nav__all:focus-visible::after {
  transform: translateX(5px);
}

.bl-header__actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: .6rem;
}

.bl-header__search,
.bl-header__cart {
  appearance: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--bl-radius);
  background: rgba(255, 255, 255, .1);
  color: var(--bl-white);
  cursor: pointer;
}

.bl-header__search:hover,
.bl-header__search:focus-visible,
.bl-header__cart:hover,
.bl-header__cart:focus-visible {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .18);
}

.bl-header__search svg,
.bl-header__cart svg,
.bl-cart-add svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bl-header__cart {
  position: relative;
}

.bl-header__cart span {
  position: absolute;
  right: -6px;
  top: -6px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .3rem;
  border: 2px solid var(--bl-black);
  border-radius: 999px;
  background: var(--bl-red);
  color: var(--bl-white);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
}

.bl-header__cta,
.bl-button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: var(--bl-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.1rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.bl-header__cta,
.bl-button--gold {
  border-color: var(--bl-gold);
  background: var(--bl-gold);
  color: var(--bl-white);
}

.bl-header__cta:hover,
.bl-button--gold:hover {
  border-color: var(--bl-gold-dark);
  background: var(--bl-gold-dark);
}

.bl-button--red,
.bl-appointment__form button[type="submit"] {
  border-color: var(--bl-red);
  background: var(--bl-red);
  color: var(--bl-white);
}

.bl-button--red:hover,
.bl-appointment__form button[type="submit"]:hover {
  border-color: var(--bl-red-dark);
  background: var(--bl-red-dark);
}

.bl-button--light {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .72);
  color: var(--bl-ink);
}

.bl-button--light:hover {
  border-color: rgba(255, 255, 255, .7);
  background: var(--bl-white);
}

.bl-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--bl-radius);
  padding: 10px;
}

.bl-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--bl-white);
}

.bl-mobile {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: block;
  pointer-events: none;
}

.bl-mobile[hidden] {
  display: none;
}

.bl-mobile.is-open {
  pointer-events: auto;
}

.bl-mobile__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .56);
  opacity: 0;
  transition: opacity 220ms ease;
}

.bl-mobile.is-open .bl-mobile__overlay {
  opacity: 1;
}

.bl-mobile__drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(420px, calc(100vw - 32px));
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bl-black);
  color: var(--bl-white);
  transform: translate3d(-100%, 0, 0);
  transition: transform 220ms ease;
  outline: none;
  overflow: hidden;
}

.bl-mobile.is-open .bl-mobile__drawer {
  transform: translate3d(0, 0, 0);
}

.bl-mobile__topbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.bl-mobile__close {
  appearance: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--bl-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  color: var(--bl-white);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.bl-mobile__brand {
  flex: 1 1 auto;
  min-width: 0;
}

.bl-mobile__brand:hover,
.bl-mobile__brand:focus-visible,
.bl-mobile__brand:hover span,
.bl-mobile__brand:focus-visible span {
  text-decoration: none;
}

.bl-mobile__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  overscroll-behavior: contain;
}

.bl-mobile__panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 0;
  padding: .5rem 20px calc(2rem + env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: transform 220ms ease, opacity 120ms ease, visibility 0s linear;
  pointer-events: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.bl-mobile__panel.is-active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition-delay: 0s;
  pointer-events: auto;
}

.bl-mobile__panel--main {
  display: flex;
  flex-direction: column;
  align-content: stretch;
}

.bl-mobile.is-submenu .bl-mobile__panel--main:not(.is-active) {
  transform: translate3d(-100%, 0, 0);
}

.bl-mobile__links {
  display: grid;
  gap: 0;
}

.bl-mobile__link,
.bl-mobile__back,
.bl-mobile__overview {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: transparent;
  color: var(--bl-white);
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.bl-mobile__link--parent {
  justify-content: space-between;
}

.bl-mobile__link--parent span:last-child {
  color: rgba(255, 255, 255, .55);
  font-size: 1.35rem;
  line-height: 1;
}

.bl-mobile__back {
  justify-content: flex-start;
  color: rgba(255, 255, 255, .82);
}

.bl-mobile__back span:first-child {
  font-size: 1.2rem;
  line-height: 1;
}

.bl-mobile__overview {
  color: var(--bl-gold);
}

.bl-mobile__link:hover,
.bl-mobile__link:focus-visible,
.bl-mobile__back:hover,
.bl-mobile__back:focus-visible,
.bl-mobile__overview:hover,
.bl-mobile__overview:focus-visible,
.bl-mobile__close:hover,
.bl-mobile__close:focus-visible {
  color: var(--bl-white);
}

.bl-mobile__search-field {
  appearance: none;
  width: 100%;
  min-height: 54px;
  margin-top: 1rem;
  padding: 0 .9rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--bl-radius);
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .74);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.bl-mobile__search-field:hover,
.bl-mobile__search-field:focus-visible {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .13);
  color: var(--bl-white);
}

.bl-mobile__search-field svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bl-mobile__search-field span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bl-mobile__social {
  margin-top: auto;
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.bl-mobile__social-link {
  min-width: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--bl-radius);
  background: rgba(255, 255, 255, .08);
  color: var(--bl-white);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.bl-mobile__social-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.bl-mobile__social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.bl-mobile__social-copy {
  min-width: 0;
  display: grid;
  gap: .1rem;
}

.bl-mobile__social-link:hover,
.bl-mobile__social-link:focus-visible {
  text-decoration: none;
}

.bl-mobile__social-copy strong,
.bl-mobile__social-copy span {
  min-width: 0;
  overflow-wrap: break-word;
}

.bl-mobile__social-copy strong {
  font-size: .94rem;
  line-height: 1.25;
}

.bl-mobile__social-copy span {
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  line-height: 1.35;
}

.bl-mobile__social-link--whatsapp .bl-mobile__social-icon {
  color: #25d366;
}

.bl-mobile__social-link--whatsapp:hover,
.bl-mobile__social-link--whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, .5);
  background: rgba(37, 211, 102, .2);
}

.bl-mobile__social-link--facebook .bl-mobile__social-icon {
  color: #1877f2;
}

.bl-mobile__social-link--facebook:hover,
.bl-mobile__social-link--facebook:focus-visible {
  border-color: rgba(24, 119, 242, .55);
  background: rgba(24, 119, 242, .22);
}

.site-shell-search {
  z-index: 1800;
}

.bl-search-page {
  min-width: 0;
}

.bl-search-page__body {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2.4rem 0 4.5rem;
  display: grid;
  gap: 1.35rem;
}

.bl-search-page__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: stretch;
}

.bl-search-page__field {
  min-width: 0;
  display: block;
}

.bl-search-page__field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--bl-line);
  border-radius: 8px;
  background: var(--bl-white);
  color: var(--bl-ink);
  font: inherit;
  font-size: 1rem;
  padding: 0 1rem;
  outline: none;
  box-shadow: 0 10px 30px rgba(31, 29, 27, .06);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.bl-search-page__field input:focus {
  border-color: rgba(198, 144, 32, .72);
  box-shadow: 0 0 0 4px rgba(198, 144, 32, .16);
}

.bl-search-page__summary {
  display: grid;
  gap: .25rem;
  padding-top: .35rem;
}

.bl-search-page__summary h2,
.bl-search-page__summary p {
  margin: 0;
}

.bl-search-page__summary h2 {
  color: var(--bl-black);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.2;
}

.bl-search-page__summary p,
.bl-search-page__results p {
  color: var(--bl-muted);
}

.bl-search-page__results {
  display: grid;
  gap: 0;
}

.bl-search-page__results .public-search-page-result {
  display: grid;
  gap: .45rem;
  padding: 1rem 0;
  border-top: 1px solid var(--bl-line);
}

.bl-search-page__results .public-search-page-result:first-child {
  border-top: 0;
}

.bl-search-page__results h3,
.bl-search-page__results p {
  margin: 0;
}

.bl-search-page__results h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.bl-search-page__results a {
  color: var(--bl-black);
  text-decoration: none;
}

.bl-search-page__results a:hover,
.bl-search-page__results a:focus-visible {
  color: var(--bl-red-dark);
}

@media (max-width: 640px) {
  .bl-search-page__body {
    width: calc(100% - 24px);
    padding: 1.75rem 0 3.25rem;
  }

  .bl-search-page__form {
    grid-template-columns: 1fr;
  }
}

.bl-main {
  min-height: 60vh;
  padding-top: var(--bl-header-height);
}

.bl-hero {
  min-height: calc(100vh - var(--bl-header-height));
  position: relative;
  display: grid;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .28)),
    var(--bl-hero-background-image, none);
  background-position: center, center;
  background-size: auto, cover;
  background-repeat: no-repeat;
  color: var(--bl-white);
}

.bl-hero__content {
  width: min(580px, 100%);
  min-width: 0;
  margin-left: max(16px, calc((100% - 1160px) / 2));
  text-align: left;
}

.bl-hero h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.bl-hero p {
  margin: 0 0 1.3rem;
  max-width: 560px;
  font-size: 1.08rem;
  font-weight: 600;
}

.bl-hero__down {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.bl-hero__down:hover,
.bl-hero__down:focus-visible {
  color: var(--bl-white);
  text-decoration: none;
}

.bl-hero__down span {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  animation: bl-hero-down-ring 2.8s ease-in-out infinite;
}

.bl-hero__down span::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 11px;
  width: 14px;
  height: 14px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0;
  transform: translateY(-8px) rotate(45deg);
  animation: bl-hero-down-arrow 2.1s cubic-bezier(.58, 0, .28, 1) infinite;
}

@keyframes bl-hero-down-ring {
  0%,
  100% {
    border-color: rgba(255, 255, 255, .48);
  }

  50% {
    border-color: rgba(255, 255, 255, .82);
  }
}

@keyframes bl-hero-down-arrow {
  0% {
    opacity: 0;
    transform: translateY(-8px) rotate(45deg);
  }

  24%,
  58% {
    opacity: 1;
  }

  82%,
  100% {
    opacity: 0;
    transform: translateY(18px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-nav__panel,
  .bl-nav__feature img,
  .bl-nav__panel-link,
  .bl-nav__all,
  .bl-nav__all::after,
  .bl-hero__down,
  .bl-hero__down span,
  .bl-hero__down span::after {
    animation: none;
    transition: none;
  }

  .bl-hero__down span::after {
    opacity: 1;
    transform: rotate(45deg);
  }
}

.bl-section,
.bl-detail,
.bl-page-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.bl-section {
  padding: 4.5rem 0;
}

.bl-page-hero--treatment-category {
  padding-bottom: 1.35rem;
}

.bl-page-hero + .bl-section--treatment-list {
  padding-top: 2rem;
}

.bl-section--center {
  text-align: center;
  max-width: 820px;
}

.bl-section--center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.bl-section--tint {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  background: var(--bl-soft);
}

.bl-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bl-eyebrow {
  margin: 0 0 .45rem;
  color: var(--bl-gold-dark);
  font-size: .82rem;
  text-transform: uppercase;
  font-weight: 800;
}

.bl-section h2,
.bl-page-hero h1,
.bl-detail-hero h1 {
  margin: 0;
  line-height: 1.12;
}

.bl-section h2,
.bl-page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.bl-section__lead,
.bl-page-hero p,
.bl-detail-hero__lead {
  color: var(--bl-muted);
  font-size: 1.05rem;
}

.bl-link {
  color: var(--bl-gold-dark);
  font-weight: 800;
  text-decoration: none;
}

.bl-treatment-groups,
.bl-pillar-grid,
.bl-contact-grid,
.bl-card-grid {
  display: grid;
  gap: 1rem;
}

.bl-treatment-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.bl-treatment-zone,
.bl-pillar-grid article,
.bl-cta-panel,
.bl-side-cta {
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  padding: 1.25rem;
  background: var(--bl-white);
}

.bl-treatment-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--bl-white);
}

.bl-treatment-zone::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--bl-gold);
}

.bl-treatment-zone:hover,
.bl-treatment-zone:focus-within {
  border-color: rgba(198, 144, 32, .48);
}

.bl-treatment-zone__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bl-treatment-zone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(198, 144, 32, .22);
  border-radius: var(--bl-radius);
  background: #fffaf4;
  color: var(--bl-gold-dark);
}

.bl-treatment-zone__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bl-treatment-zone__count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(207, 51, 73, .18);
  border-radius: 999px;
  padding: .25rem .65rem;
  background: rgba(207, 51, 73, .07);
  color: var(--bl-red-dark);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.bl-treatment-zone h3,
.bl-pillar-grid h3,
.bl-cta-panel h3,
.bl-side-cta h2 {
  margin-top: 0;
}

.bl-treatment-zone h3 {
  margin-bottom: .45rem;
  font-size: 1.45rem;
  line-height: 1.12;
}

.bl-treatment-zone h3 a {
  color: inherit;
  text-decoration: none;
}

.bl-treatment-zone h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.bl-treatment-zone p {
  margin: 0 0 1rem;
  color: var(--bl-muted);
  line-height: 1.55;
}

.bl-treatment-zone ul,
.bl-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bl-treatment-zone ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  margin-bottom: 1.15rem;
}

.bl-treatment-zone li {
  min-width: 0;
  width: 100%;
}

.bl-treatment-zone ul a {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(31, 29, 27, .1);
  border-radius: var(--bl-radius);
  padding: .42rem .7rem;
  background: rgba(255, 255, 255, .78);
  color: var(--bl-ink);
  font-size: .9rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.bl-treatment-zone ul a:hover,
.bl-treatment-zone ul a:focus-visible {
  border-color: rgba(198, 144, 32, .45);
  background: var(--bl-white);
  color: var(--bl-gold-dark);
}

.bl-treatment-zone__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid var(--bl-black);
  border-radius: var(--bl-radius);
  padding: .72rem 1rem;
  background: var(--bl-black);
  color: var(--bl-white);
  font-weight: 800;
  text-decoration: none;
}

.bl-treatment-zone__cta span {
  display: inline-block;
}

.bl-treatment-zone__cta:hover,
.bl-treatment-zone__cta:focus-visible {
  border-color: var(--bl-red-dark);
  background: var(--bl-red-dark);
  color: var(--bl-white);
}

.bl-treatment-zone a:focus-visible {
  outline: 3px solid rgba(198, 144, 32, .38);
  outline-offset: 3px;
}

.bl-footer a {
  text-decoration: none;
}

.bl-footer a:hover,
.bl-prose a:hover {
  color: var(--bl-gold-dark);
}

.bl-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bl-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bl-card-grid--doctors {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bl-card,
.bl-doctor-card {
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  overflow: hidden;
}

.bl-card--priority {
  border-color: rgba(198, 144, 32, .38);
}

.bl-card a,
.bl-doctor-card a {
  display: block;
  height: 100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.bl-card__image,
.bl-doctor-card__image,
.bl-wide-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bl-soft);
}

.bl-card span {
  display: block;
  margin-top: .9rem;
  color: var(--bl-gold-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bl-card h3,
.bl-doctor-card h3 {
  margin: .45rem 0 .4rem;
}

.bl-card h3 {
  color: var(--bl-ink);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.bl-card p,
.bl-doctor-card p {
  margin: 0;
  color: var(--bl-muted);
}

.bl-card p {
  font-size: .98rem;
  line-height: 1.55;
}

.bl-archive-group--priority {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bl-line);
}

.bl-priority-treatments {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.bl-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bl-priority-card {
  min-width: 0;
  border: 1px solid rgba(31, 29, 27, .18);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  overflow: hidden;
}

.bl-priority-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: .6rem;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.bl-priority-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bl-soft);
}

.bl-priority-card span {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(207, 51, 73, .18);
  border-radius: 999px;
  padding: .2rem .55rem;
  background: rgba(207, 51, 73, .07);
  color: var(--bl-red-dark);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.bl-priority-card h3 {
  margin: 0;
  color: var(--bl-ink);
  font-size: 1.3rem;
  line-height: 1.16;
}

.bl-priority-card p {
  margin: 0;
  color: var(--bl-muted);
  font-size: .96rem;
  line-height: 1.55;
}

.bl-priority-card strong {
  align-self: end;
  color: var(--bl-gold-dark);
  font-size: .94rem;
}

.bl-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 2rem;
  align-items: center;
}

.bl-cta-panel a,
.bl-side-cta a {
  display: inline-flex;
  margin-top: .9rem;
  font-weight: 800;
  color: var(--bl-gold-dark);
  text-decoration: none;
}

.bl-testimonials {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.bl-testimonials__controls {
  display: flex;
  justify-content: flex-end;
  gap: .55rem;
}

.bl-testimonials__controls button {
  appearance: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  color: var(--bl-black);
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.bl-testimonials__controls button:hover,
.bl-testimonials__controls button:focus-visible {
  border-color: rgba(198, 144, 32, .5);
  background: #fffaf4;
}

.bl-testimonials__controls button:disabled {
  cursor: default;
  opacity: .45;
}

.bl-testimonials__viewport {
  min-width: 0;
  overflow: hidden;
}

.bl-testimonials__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.bl-testimonials__track::-webkit-scrollbar {
  display: none;
}

.bl-testimonials__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.bl-testimonial-card {
  min-width: 0;
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: .9rem;
  margin: 0;
  padding: 1.15rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: linear-gradient(180deg, var(--bl-white), #fffaf4);
  transition: border-color 180ms ease;
}

.bl-testimonial-card:hover,
.bl-testimonial-card:focus-within {
  border-color: rgba(198, 144, 32, .5);
}

.bl-testimonial-card__header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 30px;
  gap: .8rem;
  align-items: center;
}

.bl-testimonial-card__header picture {
  display: block;
  width: 58px;
  height: 58px;
}

.bl-testimonial-card__header img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(31, 29, 27, .1);
  border-radius: 999px;
  object-fit: cover;
  background: var(--bl-soft);
}

.bl-testimonial-card__header figcaption {
  min-width: 0;
  display: grid;
  gap: .08rem;
  color: var(--bl-ink);
}

.bl-testimonial-card__header strong,
.bl-testimonial-card__header span {
  min-width: 0;
  overflow-wrap: break-word;
}

.bl-testimonial-card__header strong {
  font-size: 1rem;
  line-height: 1.3;
}

.bl-testimonial-card__header figcaption span {
  color: var(--bl-muted);
  font-size: .84rem;
  line-height: 1.35;
}

.bl-testimonial-card__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.bl-testimonial-card__google svg {
  display: block;
  width: 24px;
  height: 24px;
}

.bl-testimonial-card__stars {
  color: #fbbc04;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 1px;
}

.bl-testimonials blockquote {
  margin: 0;
  color: #2f2b28;
  font-size: .98rem;
  line-height: 1.65;
}

.bl-testimonial-card > p {
  margin: 0;
  color: var(--bl-muted);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}

.bl-google-reviews {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
}

.bl-google-reviews__summary,
.bl-google-reviews__panel,
.bl-google-review-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: linear-gradient(135deg, var(--bl-white), #fff8f0 58%, #fff);
  padding: 1rem;
}

.bl-google-reviews__panel,
.bl-google-review-cta {
  margin: 1.25rem 0;
  padding: 1.25rem;
}

.bl-google-reviews__summary-copy,
.bl-google-reviews__panel-copy {
  display: grid;
  gap: .35rem;
  min-width: 0;
}

.bl-google-reviews__eyebrow {
  margin: 0;
  color: var(--bl-red-dark);
  font-size: .75rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.bl-google-reviews__summary-copy strong,
.bl-google-reviews__panel h2,
.bl-google-review-cta h2 {
  margin: 0;
  color: var(--bl-ink);
  line-height: 1.2;
}

.bl-google-reviews__panel h2,
.bl-google-review-cta h2 {
  font-size: 1.6rem;
}

.bl-google-reviews__summary-copy span,
.bl-google-reviews__panel p,
.bl-google-review-cta p {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.bl-google-reviews__summary-copy > span:not(.bl-google-reviews__eyebrow):not(.bl-google-reviews__summary-stars),
.bl-google-reviews__panel p,
.bl-google-review-cta p {
  color: var(--bl-muted);
}

.bl-google-reviews__summary-stars {
  color: #fbbc04;
  font-size: .96rem;
  line-height: 1;
}

.bl-google-reviews__summary-actions,
.bl-google-reviews__panel-actions,
.bl-google-review-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem;
  min-width: 0;
}

.bl-google-reviews__button,
.bl-google-reviews__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem .95rem;
  border-radius: var(--bl-radius);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.bl-google-reviews__button {
  border: 1px solid var(--bl-red);
  background: var(--bl-red);
  color: var(--bl-white);
}

.bl-rich-text .bl-google-reviews__button,
.bl-page-content .bl-google-reviews__button,
.bl-prose .bl-google-reviews__button {
  color: var(--bl-white);
  font-weight: 800;
}

.bl-google-reviews__link {
  border: 1px solid rgba(31, 29, 27, .14);
  background: var(--bl-white);
  color: var(--bl-ink);
}

.bl-rich-text .bl-google-reviews__link,
.bl-page-content .bl-google-reviews__link,
.bl-prose .bl-google-reviews__link {
  color: var(--bl-ink);
  font-weight: 800;
}

.bl-google-reviews__button:hover,
.bl-google-reviews__button:focus-visible {
  border-color: var(--bl-red-dark);
  background: var(--bl-red-dark);
}

.bl-google-reviews__link:hover,
.bl-google-reviews__link:focus-visible {
  border-color: rgba(198, 144, 32, .45);
  color: var(--bl-gold-dark);
}

.bl-google-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 1rem;
  min-width: 0;
}

.bl-google-review-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: .85rem;
  margin: 0;
  padding: 1.1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
}

.bl-google-review-card--home {
  background: linear-gradient(180deg, var(--bl-white), #fffaf4);
}

.bl-google-review-card__header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  min-width: 0;
}

.bl-google-review-card__avatar {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(31, 29, 27, .1);
  border-radius: 999px;
  background: var(--bl-soft);
  color: var(--bl-red-dark);
  font-size: .95rem;
  font-weight: 900;
}

.bl-google-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-google-review-card__person {
  display: grid;
  gap: .08rem;
  min-width: 0;
}

.bl-google-review-card__person strong,
.bl-google-review-card__person span,
.bl-google-review-card__source {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bl-google-review-card__person strong {
  color: var(--bl-ink);
  font-size: 1rem;
  line-height: 1.28;
}

.bl-google-review-card__person span {
  color: var(--bl-muted);
  font-size: .83rem;
  line-height: 1.3;
}

.bl-google-review-card__source {
  color: var(--bl-gold-dark);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
  text-decoration: none;
}

.bl-google-review-card__source:hover,
.bl-google-review-card__source:focus-visible {
  color: var(--bl-red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bl-google-review-card__stars {
  color: #fbbc04;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0;
}

.bl-google-review-card__quote {
  margin: 0;
  color: #2f2b28;
  font-size: .96rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.bl-pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bl-page-hero,
.bl-detail-hero {
  padding: 3.2rem 0 2rem;
}

.bl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.3rem;
  color: var(--bl-muted);
  font-size: .9rem;
}

.bl-breadcrumb a {
  text-decoration: none;
  color: var(--bl-muted);
}

.bl-detail-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 2rem;
  align-items: center;
}

.bl-detail-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.bl-detail-hero figure {
  margin: 0;
}

.bl-detail-hero figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--bl-radius);
}

.bl-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}

.bl-detail-hero__actions a {
  color: var(--bl-gold-dark);
  font-weight: 800;
  text-decoration: none;
}

.bl-treatment-hero {
  padding-top: 1.6rem;
  padding-bottom: 2.4rem;
}

.bl-treatment-hero__copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.bl-treatment-hero .bl-breadcrumb,
.bl-treatment-hero .bl-eyebrow,
.bl-treatment-hero .bl-detail-hero__lead {
  margin-bottom: 0;
}

.bl-treatment-hero .bl-detail-hero__lead {
  max-width: 66ch;
  font-size: 1.12rem;
}

.bl-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: .2rem;
}

.bl-hero-highlights article {
  min-width: 0;
  padding: .85rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
}

.bl-hero-highlights strong,
.bl-hero-highlights span {
  display: block;
  overflow-wrap: break-word;
}

.bl-hero-highlights strong {
  color: var(--bl-black);
  font-size: .95rem;
  line-height: 1.3;
}

.bl-hero-highlights span {
  margin-top: .2rem;
  color: var(--bl-muted);
  font-size: .86rem;
  line-height: 1.45;
}

.bl-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
  padding-bottom: 4rem;
}

.bl-prose {
  color: #302d2a;
}

.bl-prose--narrow {
  max-width: 860px;
  margin: 0 auto 4rem;
}

.bl-prose h2,
.bl-prose h3 {
  line-height: 1.25;
  margin-top: 2rem;
}

.bl-prose img {
  border-radius: var(--bl-radius);
}

.bl-prose a {
  color: var(--bl-gold-dark);
  font-weight: 700;
}

.bl-prose .bl-card a {
  color: inherit;
  font-weight: 400;
}

.bl-prose .bl-card h3 {
  color: var(--bl-ink);
  font-weight: 800;
}

.bl-prose .bl-card p {
  color: var(--bl-muted);
  font-weight: 400;
}

.bl-side-cta {
  position: sticky;
  top: 98px;
}

.bl-treatment-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 2.2rem;
}

.bl-treatment-main {
  display: grid;
  gap: 2.1rem;
}

.bl-treatment-main > section {
  min-width: 0;
}

.bl-treatment-main .bl-section__head h2,
.bl-conversion-panel h2,
.bl-treatment-final-cta h2,
.bl-results-section h2,
.bl-benefit-grid h3,
.bl-mini-list h3,
.bl-process-list h3,
.bl-trust-strip h3 {
  margin-top: 0;
}

.bl-conversion-section,
.bl-procedure-options,
.bl-fit-consult-grid,
.bl-trust-strip,
.bl-treatment-main .bl-treatment-packs,
.bl-treatment-main .bl-price-box,
.bl-treatment-content,
.bl-results-section,
.bl-related-treatments,
.bl-treatment-disclaimer,
.bl-treatment-final-cta,
.bl-treatment-main .bl-faq {
  margin-top: 0;
}

.bl-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.bl-benefit-grid article {
  min-width: 0;
  padding: 1.05rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
}

.bl-procedure-options {
  padding: 1.15rem;
  border: 1px solid rgba(31, 29, 27, .16);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
}

.bl-procedure-options .bl-section__head {
  margin-bottom: 1rem;
}

.bl-procedure-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.bl-procedure-options__grid article {
  min-width: 0;
  display: grid;
  gap: .7rem;
  align-content: space-between;
  padding: 1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
}

.bl-procedure-options__grid h3 {
  margin: 0 0 .35rem;
  color: var(--bl-ink);
  font-size: 1.05rem;
  line-height: 1.3;
}

.bl-procedure-options__grid p {
  margin: 0;
  color: var(--bl-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.bl-procedure-options__grid strong {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(198, 144, 32, .28);
  border-radius: var(--bl-radius);
  padding: .42rem .6rem;
  color: var(--bl-gold-dark);
  font-size: .9rem;
  line-height: 1.25;
}

.bl-benefit-grid h3,
.bl-mini-list h3,
.bl-process-list h3,
.bl-trust-strip h3 {
  margin-bottom: .35rem;
  font-size: 1rem;
  line-height: 1.35;
}

.bl-benefit-grid p,
.bl-mini-list p,
.bl-process-list p,
.bl-trust-strip p {
  margin: 0;
  color: var(--bl-muted);
  font-size: .94rem;
  line-height: 1.6;
}

.bl-fit-consult-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.bl-conversion-panel {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
}

.bl-consult-panel {
  background: var(--bl-white);
}

.bl-check-list,
.bl-treatment-side-cta ul {
  list-style: none;
  padding: 0;
}

.bl-check-list {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 0;
}

.bl-check-list li,
.bl-treatment-side-cta li {
  position: relative;
  min-width: 0;
  padding-left: 1.35rem;
  overflow-wrap: break-word;
}

.bl-check-list li {
  color: var(--bl-ink);
  font-weight: 700;
  line-height: 1.5;
}

.bl-check-list li::before,
.bl-treatment-side-cta li::before {
  content: "";
  position: absolute;
  left: 0;
  border-radius: 999px;
  background: var(--bl-red);
}

.bl-check-list li::before {
  top: .55rem;
  width: .62rem;
  height: .62rem;
  border: 2px solid var(--bl-white);
}

.bl-mini-list {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}

.bl-mini-list article {
  min-width: 0;
  padding-left: .85rem;
  border-left: 3px solid rgba(198, 144, 32, .45);
}

.bl-process-list {
  counter-reset: bl-step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bl-process-list li {
  counter-increment: bl-step;
  min-width: 0;
  position: relative;
  padding: 1.15rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
}

.bl-process-list li::before {
  content: counter(bl-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .75rem;
  border-radius: 999px;
  background: var(--bl-black);
  color: var(--bl-white);
  font-weight: 800;
  line-height: 1;
}

.bl-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(31, 29, 27, .18);
  border-radius: var(--bl-radius);
  background: var(--bl-black);
  color: var(--bl-white);
}

.bl-trust-strip article {
  min-width: 0;
  padding: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.bl-trust-strip article:last-child {
  border-right: 0;
}

.bl-trust-strip h3 {
  color: var(--bl-white);
}

.bl-trust-strip p {
  color: rgba(255, 255, 255, .74);
}

.bl-treatment-content {
  padding-top: .7rem;
  border-top: 1px solid var(--bl-line);
}

.bl-results-section {
  padding: 1.25rem;
  border-left: 4px solid var(--bl-gold);
  border-radius: var(--bl-radius);
  background: #fff9ef;
}

.bl-results-section > div > :first-child {
  margin-top: 0;
}

.bl-results-section > div > :last-child {
  margin-bottom: 0;
}

.bl-treatment-disclaimer {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 1.18rem 1.25rem 1.18rem 1.45rem;
  border: 1px solid rgba(31, 29, 27, .14);
  border-left: 4px solid var(--bl-gold);
  border-radius: var(--bl-radius);
  background: #fffdf8;
}

.bl-treatment-disclaimer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--bl-gold);
}

.bl-treatment-disclaimer p {
  max-width: 76ch;
  margin: 0;
  color: #3d352d;
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.bl-related-treatments {
  padding-top: .2rem;
}

.bl-treatment-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem;
  border-radius: var(--bl-radius);
  background: var(--bl-black);
  color: var(--bl-white);
}

.bl-treatment-final-cta p {
  margin: .55rem 0 0;
  color: rgba(255, 255, 255, .76);
}

.bl-treatment-final-cta .bl-eyebrow {
  color: #e2b254;
}

.bl-treatment-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem;
}

.bl-treatment-final-cta__actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--bl-radius);
  color: var(--bl-white);
  font-weight: 800;
  text-decoration: none;
}

.bl-treatment-side-cta {
  display: grid;
  gap: .85rem;
  background: var(--bl-white);
}

.bl-treatment-side-cta p,
.bl-treatment-side-cta ul {
  margin: 0;
}

.bl-treatment-side-cta ul {
  display: grid;
  gap: .48rem;
}

.bl-treatment-side-cta li {
  color: #3f3831;
  font-size: .92rem;
  line-height: 1.45;
}

.bl-treatment-side-cta li::before {
  top: .52rem;
  width: .48rem;
  height: .48rem;
}

.bl-treatment-side-cta .bl-button {
  width: 100%;
  justify-content: center;
  margin-top: .1rem;
}

.bl-treatment-side-cta a {
  margin-top: 0;
}

.bl-faq,
.bl-price-box,
.bl-price-directory {
  margin-top: 2.5rem;
}

.bl-faq details {
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  padding: 1rem;
  margin-bottom: .75rem;
  background: var(--bl-white);
}

.bl-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.bl-price-box,
.bl-price-directory section {
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  padding: 1rem;
  background: var(--bl-white);
}

.bl-price-box table,
.bl-price-directory table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.bl-price-col-name {
  width: 42%;
}

.bl-price-col-amount {
  width: 28%;
}

.bl-price-col-action {
  width: 170px;
}

.bl-price-box th,
.bl-price-box td,
.bl-price-directory th,
.bl-price-directory td {
  padding: .75rem 0;
  border-bottom: 1px solid var(--bl-line);
  text-align: left;
  vertical-align: top;
}

.bl-price-box th:last-child,
.bl-price-box td:last-child,
.bl-price-directory th:last-child,
.bl-price-directory td:last-child {
  text-align: right;
  white-space: nowrap;
  padding-left: 1rem;
}

.bl-price-name,
.bl-price-value {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bl-price-value {
  font-variant-numeric: tabular-nums;
}

.bl-price-directory {
  display: grid;
  gap: 1rem;
  padding-bottom: 4rem;
}

.bl-price-toolbar {
  margin: 0 auto 1rem;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
}

.bl-price-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
}

.bl-price-search {
  flex: 1 1 320px;
}

.bl-price-search input,
.bl-price-toolbar select {
  min-height: 44px;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  color: var(--bl-ink);
  padding: 0 2.2rem 0 .85rem;
  font: inherit;
}

.bl-price-search input {
  width: min(360px, 100%);
  min-width: min(300px, calc(100vw - 64px));
}

.bl-price-toolbar select {
  min-width: min(280px, calc(100vw - 64px));
}

.bl-currency-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
}

.bl-currency-toggle button {
  min-width: 58px;
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--bl-line);
  background: transparent;
  color: var(--bl-ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.bl-currency-toggle button:last-child {
  border-right: 0;
}

.bl-currency-toggle button[aria-pressed="true"],
.bl-currency-toggle button.is-active {
  background: var(--bl-black);
  color: var(--bl-white);
}

.bl-currency-toggle--compact {
  border-color: rgba(31, 29, 27, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.bl-currency-toggle--compact button {
  min-width: 44px;
  min-height: 32px;
  padding: 0 .6rem;
  color: #5f554c;
  font-size: .76rem;
}

.bl-currency-toggle--compact button[aria-pressed="true"],
.bl-currency-toggle--compact button.is-active {
  background: #2f2b27;
  color: var(--bl-white);
}

.bl-price-toolbar p {
  flex: 1 1 260px;
  margin: 0;
  color: var(--bl-muted);
  font-size: .92rem;
}

.bl-price-amount {
  display: inline-block;
  font-weight: 800;
}

.bl-price-stack {
  display: inline-grid;
  gap: .12rem;
  justify-items: start;
}

.bl-price-original {
  display: block;
  margin-top: .2rem;
  color: var(--bl-muted);
  font-size: .78rem;
  font-weight: 700;
}

.bl-price-compare {
  color: var(--bl-muted);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.bl-price-savings {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .12rem .4rem;
  border: 1px solid color-mix(in srgb, var(--bl-red-dark) 35%, var(--bl-line));
  border-radius: 999px;
  background: var(--bl-white);
  color: var(--bl-red-dark);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.1;
}

.bl-offer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: .2rem .55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bl-red) 12%, var(--bl-white));
  color: var(--bl-red-dark);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.bl-offer-badge--link:hover {
  border-color: color-mix(in srgb, var(--bl-red-dark) 32%, var(--bl-white));
  background: var(--bl-white);
  color: var(--bl-red-dark);
}

.bl-offer-badge--link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bl-gold) 55%, transparent);
  outline-offset: 2px;
}

.bl-price-action-col,
.bl-price-action-cell {
  width: 1%;
}

.bl-price-action-cell {
  white-space: nowrap;
}

.bl-price-action-cell .bl-cart-add {
  width: 146px;
  min-height: 40px;
  padding: .55rem .8rem;
}

.bl-price-empty {
  display: grid;
  gap: .55rem;
  margin: 1rem 0 4rem;
  padding: 1rem;
  border: 1px solid rgba(198, 144, 32, .35);
  border-radius: var(--bl-radius);
  background: #fff9ef;
}

.bl-price-empty[hidden] {
  display: none;
}

.bl-price-empty strong {
  color: var(--bl-ink);
  font-size: 1rem;
}

.bl-price-empty p {
  margin: 0;
  color: var(--bl-muted);
}

.bl-price-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .2rem;
}

.bl-faq-page .bl-page-hero {
  margin-bottom: 0;
}

.bl-faq-directory {
  display: grid;
  gap: 1rem;
  width: min(940px, calc(100% - 32px));
  margin: 0 auto 4rem;
}

.bl-faq-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
}

.bl-faq-search {
  display: grid;
  gap: .35rem;
  color: var(--bl-ink);
  font-weight: 800;
}

.bl-faq-search input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  color: var(--bl-ink);
  padding: 0 .85rem;
  font: inherit;
}

.bl-faq-filters {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.bl-faq-filters button {
  min-height: 38px;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  color: var(--bl-ink);
  padding: .45rem .75rem;
  font: inherit;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
}

.bl-faq-filters button[aria-pressed="true"] {
  border-color: var(--bl-black);
  background: var(--bl-black);
  color: var(--bl-white);
}

.bl-faq-groups {
  display: grid;
  gap: 1rem;
}

.bl-faq-group {
  display: grid;
  gap: .65rem;
}

.bl-faq-group[hidden],
.bl-faq-item[hidden] {
  display: none;
}

.bl-faq-group h2 {
  margin: .35rem 0 0;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
}

.bl-faq-item {
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  overflow: hidden;
}

.bl-faq-item[open] {
  border-color: rgba(198, 144, 32, .45);
  background: #fffaf1;
}

.bl-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--bl-ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.bl-faq-item summary::-webkit-details-marker {
  display: none;
}

.bl-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 29, 27, .18);
  border-radius: 999px;
  color: var(--bl-gold-dark);
  font-size: 1.15rem;
  line-height: 1;
}

.bl-faq-item[open] summary::after {
  content: "-";
}

.bl-faq-item__answer {
  padding: 0 1rem 1rem;
  color: #3f3831;
}

.bl-faq-item__answer > :first-child {
  margin-top: 0;
}

.bl-faq-item__answer > :last-child {
  margin-bottom: 0;
}

.bl-faq-empty {
  display: grid;
  gap: .55rem;
  padding: 1rem;
  border: 1px solid rgba(198, 144, 32, .35);
  border-radius: var(--bl-radius);
  background: #fff9ef;
}

.bl-faq-empty[hidden] {
  display: none;
}

.bl-faq-empty p {
  margin: 0;
  color: var(--bl-muted);
}

.bl-faq-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .2rem;
}

.bl-cart-add {
  gap: .45rem;
  max-width: 100%;
  white-space: nowrap;
}

.bl-cart-add.bl-button--red,
.bl-cart-add.bl-button--red span {
  color: var(--bl-white);
}

.bl-treatment-packs {
  margin-top: 2.5rem;
}

.bl-treatment-packs .bl-section__head {
  align-items: center;
}

.bl-treatment-pack-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
}

.bl-treatment-pack-actions .bl-link {
  white-space: nowrap;
}

.bl-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bl-pack-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
}

.bl-pack-card img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bl-soft);
}

.bl-pack-card > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: .45rem;
}

.bl-pack-card > div > span {
  color: var(--bl-gold-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bl-pack-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.bl-pack-card strong {
  color: var(--bl-red-dark);
}

.bl-pack-card .bl-button {
  justify-self: start;
  margin-top: .2rem;
}

.bl-price-box--standalone {
  margin-top: 0;
}

.bl-price-box p {
  margin-top: 0;
  color: var(--bl-muted);
}

.bl-cart[hidden] {
  display: none;
}

.bl-cart {
  position: fixed;
  inset: 0;
  z-index: 2100;
  pointer-events: none;
}

.bl-cart.is-open {
  pointer-events: auto;
}

.bl-cart__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .58);
  opacity: 0;
  transition: opacity 220ms ease;
}

.bl-cart.is-open .bl-cart__overlay {
  opacity: 1;
}

.bl-cart__drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(460px, 100vw);
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--bl-white);
  color: var(--bl-ink);
  transform: translate3d(100%, 0, 0);
  transition: transform 220ms ease;
  outline: none;
}

.bl-cart.is-open .bl-cart__drawer {
  transform: translate3d(0, 0, 0);
}

.bl-cart__topbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--bl-line);
}

.bl-cart__topbar h2,
.bl-cart__topbar p {
  margin: 0;
}

.bl-cart__close {
  appearance: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bl-white);
  color: var(--bl-ink);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.bl-cart__items {
  min-height: 0;
  overflow-y: auto;
  padding: .8rem 1.1rem;
}

.bl-cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--bl-line);
  border-left: 4px solid transparent;
  padding-left: .65rem;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.bl-cart-item.is-added {
  background: rgba(198, 144, 32, .12);
  border-left: 4px solid var(--bl-gold);
}

.bl-cart-item img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bl-soft);
}

.bl-cart-item__body {
  min-width: 0;
  display: grid;
  gap: .45rem;
}

.bl-cart-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.bl-cart-item p {
  margin: 0;
  color: var(--bl-muted);
  font-size: .92rem;
}

.bl-cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}

.bl-cart-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
}

.bl-cart-qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--bl-soft);
  color: var(--bl-ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.bl-cart-qty span {
  min-width: 38px;
  text-align: center;
  font-weight: 800;
}

.bl-cart-item__remove {
  border: 0;
  background: transparent;
  color: var(--bl-red-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.bl-cart__empty {
  grid-row: 2;
  display: none;
  align-content: center;
  justify-items: start;
  gap: .8rem;
  padding: 1.1rem;
}

.bl-cart__empty h3,
.bl-cart__empty p {
  margin: 0;
}

.bl-cart.is-empty .bl-cart__items,
.bl-cart.is-empty .bl-cart__footer {
  display: none;
}

.bl-cart.is-empty .bl-cart__empty {
  display: grid;
}

.bl-cart__footer {
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--bl-line);
  background: var(--bl-white);
}

.bl-cart__total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
  font-weight: 800;
}

.bl-cart__status {
  min-height: 1.2rem;
  margin: 0 0 .65rem;
  color: var(--bl-muted);
  font-size: .92rem;
  font-weight: 700;
}

.bl-cart__status.is-error {
  color: var(--bl-red-dark);
}

.bl-package-card a {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: .25rem;
}

.bl-package-card strong {
  display: block;
  margin-top: .75rem;
  color: var(--bl-red-dark);
}

.bl-package-price,
.bl-included-services {
  margin: 0 0 2rem;
}

.bl-package-price {
  display: grid;
  gap: .3rem;
  padding: 1.1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
}

.bl-package-price p,
.bl-package-price span {
  margin: 0;
  color: var(--bl-muted);
  font-weight: 700;
}

.bl-package-price strong {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.15;
}

.bl-included-services > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.bl-included-services article {
  padding: 1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
}

.bl-included-services h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
}

.bl-included-services p {
  margin: 0;
  color: var(--bl-muted);
}

.bl-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 .9rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
  color: var(--bl-muted);
  font-weight: 800;
}

.bl-checkout-form {
  margin: 0;
}

.bl-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 4rem;
}

.bl-offer-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  scroll-margin-top: 7rem;
}

.bl-offer-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}

.bl-offer-date {
  color: var(--bl-muted);
  font-size: .88rem;
  font-weight: 800;
}

.bl-offer-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.2;
}

.bl-offer-card p {
  margin: 0;
  color: var(--bl-muted);
}

.bl-offer-card__countdown {
  --bl-offer-countdown-progress: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: .7rem .85rem;
  border: 1px solid color-mix(in srgb, var(--bl-red) 20%, var(--bl-line));
  border-radius: var(--bl-radius);
  background: color-mix(in srgb, var(--bl-red) 8%, var(--bl-white));
  color: var(--bl-red-dark) !important;
  font-size: .95rem;
  font-weight: 900;
}

.bl-offer-card__countdown::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: var(--bl-offer-countdown-progress);
  background: linear-gradient(90deg, color-mix(in srgb, var(--bl-red) 22%, var(--bl-white)), color-mix(in srgb, var(--bl-gold) 28%, var(--bl-white)));
  transform-origin: left center;
  animation: bl-offer-countdown-vanish 1.8s ease-in-out infinite;
}

.bl-offer-card__countdown::after {
  content: "";
  position: absolute;
  right: .8rem;
  bottom: .45rem;
  left: .8rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bl-red-dark) 0 var(--bl-offer-countdown-progress), color-mix(in srgb, var(--bl-red) 12%, var(--bl-white)) var(--bl-offer-countdown-progress) 100%);
  opacity: .55;
}

.bl-offer-card__countdown span {
  position: relative;
  z-index: 1;
}

@keyframes bl-offer-countdown-vanish {
  0%,
  100% {
    opacity: .95;
    transform: scaleX(1);
  }

  50% {
    opacity: .5;
    transform: scaleX(.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-offer-card__countdown::before {
    animation: none;
    transform: none;
  }
}

.bl-offer-card__items {
  display: grid;
  gap: .65rem;
}

.bl-offer-card__items > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .35rem .75rem;
  align-items: center;
  padding-top: .65rem;
  border-top: 1px solid var(--bl-line);
}

.bl-offer-card__items strong,
.bl-offer-card__items span,
.bl-offer-card__items small {
  min-width: 0;
}

.bl-offer-card__items span {
  color: var(--bl-red-dark);
  font-weight: 900;
  text-align: right;
}

.bl-offer-card__items small {
  grid-column: 1 / -1;
  color: var(--bl-muted);
  font-weight: 700;
}

.bl-offer-card__items .bl-price-savings {
  color: var(--bl-red-dark);
}

.bl-offer-card__items .bl-cart-add {
  grid-column: 1 / -1;
  justify-self: start;
}

.bl-offer-empty a {
  color: var(--bl-red-dark);
  font-weight: 900;
}

.bl-button--wide {
  width: 100%;
}

.bl-side-price {
  margin: 0 0 .9rem;
  font-size: 1.2rem;
  color: var(--bl-ink);
}

.bl-empty-state {
  max-width: 640px;
  padding: 1.4rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-soft);
}

.bl-empty-state h2,
.bl-empty-state p {
  margin-top: 0;
}

.bl-contact-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bl-contact-grid a {
  display: grid;
  gap: .35rem;
  padding: 1.2rem;
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  text-decoration: none;
}

.bl-contact-grid strong {
  color: var(--bl-gold-dark);
}

.bl-contact-map {
  width: 100%;
  margin: 3rem 0 0;
}

.bl-contact-map__frame {
  position: relative;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  min-height: 320px;
  overflow: hidden;
  background: var(--bl-soft);
}

.bl-contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bl-contact-map__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 0;
  background: var(--bl-black);
  pointer-events: none;
  transform: translate(-50%, -95%) rotate(-45deg);
}

.bl-contact-map__pin img {
  width: 34px;
  height: 34px;
  filter: invert(1);
  transform: rotate(45deg);
}

.bl-contact-map__cta {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(5, 5, 5, .88);
  border-radius: var(--bl-radius);
  padding: .65rem 1rem;
  background: rgba(255, 255, 255, .94);
  color: var(--bl-black);
  font-weight: 800;
  text-decoration: none;
  transform: translateX(-50%);
}

.bl-footer {
  background: var(--bl-black);
  color: rgba(255, 255, 255, .76);
}

.bl-footer__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 1.5rem;
}

.bl-footer h2 {
  margin: 0 0 .9rem;
  color: var(--bl-white);
  font-size: 1rem;
}

.bl-footer li + li {
  margin-top: .45rem;
}

.bl-footer__brand p {
  max-width: 340px;
}

.bl-brand--footer {
  color: var(--bl-white);
}

.bl-language-selector {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}

.bl-language-selector__title {
  flex-basis: 100%;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bl-language-selector__option {
  min-height: 38px;
  padding: .42rem .58rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.bl-language-selector__option:hover,
.bl-language-selector__option:focus-visible,
.bl-language-selector__option.is-active {
  border-color: rgba(207, 168, 92, .74);
  background: rgba(207, 168, 92, .12);
  color: var(--bl-white);
  text-decoration: none;
}

.bl-language-selector__option small {
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
}

.bl-lang-flag {
  width: 22px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .26);
}

.bl-lang-flag--ro {
  background: linear-gradient(90deg, #002b7f 0 33.33%, #fcd116 33.33% 66.66%, #ce1126 66.66% 100%);
}

.bl-lang-flag--en {
  background: #012169;
}

.bl-footer .bl-brand--footer:hover,
.bl-footer .bl-brand--footer:focus-visible,
.bl-footer .bl-brand--footer:hover span,
.bl-footer .bl-brand--footer:focus-visible span {
  color: var(--bl-white);
  text-decoration: none;
}

.bl-footer__legal {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.1rem;
  font-size: .9rem;
}

.bl-footer__legal a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
}

.bl-footer__dispute-links {
  margin-top: 1rem;
  display: grid;
  gap: .55rem;
}

.bl-footer__dispute-link {
  display: block;
  width: min(250px, 100%);
  max-width: 100%;
  border-radius: 8px;
  transition: filter .18s ease, transform .18s ease;
}

.bl-footer__dispute-link:hover,
.bl-footer__dispute-link:focus-visible {
  filter: brightness(1.04);
  text-decoration: none;
  transform: translateY(-1px);
}

.bl-footer__dispute-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--bl-white);
}

.bl-footer__payments {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.bl-footer__payment-icon {
  display: block;
  height: 30px;
  border-radius: 6px;
  padding: .25rem .32rem;
  background: rgba(255, 255, 255, .96);
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.bl-footer__payment-icon--visa {
  width: 48px;
}

.bl-footer__payment-icon--mastercard {
  width: 40px;
}

.bl-appointment[hidden] {
  display: none;
}

.bl-appointment {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  isolation: isolate;
}

.bl-appointment__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, .76);
  backdrop-filter: blur(8px);
}

.bl-appointment__dialog {
  position: relative;
  width: min(1010px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, .7fr);
  overflow: auto;
  background: var(--bl-white);
  border-radius: var(--bl-radius);
  outline: none;
}

.bl-appointment__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 29, 27, .12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .9);
  color: #7b7168;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.bl-appointment__close:hover,
.bl-appointment__close:focus-visible {
  border-color: rgba(31, 29, 27, .22);
  background: var(--bl-black);
  color: var(--bl-white);
}

.bl-appointment__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.bl-appointment__body {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 4.4rem 3rem 3.2rem;
}

.bl-appointment__eyebrow {
  margin: 0 0 .55rem;
  color: var(--bl-gold-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.bl-appointment__body h2 {
  margin: 0;
  color: var(--bl-black);
  font-size: clamp(1.95rem, 4vw, 2.55rem);
  line-height: 1.08;
}

.bl-appointment__intro {
  margin: .8rem 0 1.45rem;
  color: #5f5851;
  font-size: .98rem;
  line-height: 1.65;
}

.bl-appointment__form {
  display: grid;
  gap: .9rem;
}

.bl-appointment__form-fields {
  display: grid;
  gap: .9rem;
}

.bl-appointment__form-fields[hidden],
.bl-appointment__progress[hidden],
.bl-appointment__success[hidden] {
  display: none !important;
}

.bl-appointment__form.is-loading,
.bl-appointment__form.is-success {
  min-height: clamp(320px, 48vh, 430px);
  align-content: center;
}

.bl-floating-field {
  position: relative;
  display: block;
  min-width: 0;
}

.bl-floating-field span {
  position: absolute;
  left: .95rem;
  top: 50%;
  max-width: calc(100% - 1.9rem);
  padding: 0 .22rem;
  background: var(--bl-white);
  color: #81786f;
  font-size: .95rem;
  line-height: 1.2;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: top 180ms ease, color 180ms ease, font-size 180ms ease, transform 180ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bl-appointment__form input[type="text"],
.bl-appointment__form input[type="tel"],
.bl-appointment__form input[type="email"] {
  width: 100%;
  min-height: 60px;
  border: 1px solid #d9cec4;
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  color: var(--bl-black);
  padding: 1.25rem 1rem .55rem;
  font: inherit;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 180ms ease, background 180ms ease;
}

.bl-appointment__form input::placeholder {
  color: transparent;
}

.bl-appointment__form input:focus {
  outline: 2px solid rgba(198, 144, 32, .32);
  outline-offset: 2px;
  border-color: var(--bl-gold);
}

.bl-floating-field input:focus + span,
.bl-floating-field input:not(:placeholder-shown) + span,
.bl-floating-field input:-webkit-autofill + span {
  top: .35rem;
  color: var(--bl-gold-dark);
  font-size: .73rem;
  font-weight: 800;
  transform: translateY(0);
}

.bl-appointment__form button[type="submit"] {
  min-height: 56px;
  margin-top: .15rem;
  border: 1px solid var(--bl-red);
  border-radius: var(--bl-radius);
  background: var(--bl-red);
  color: var(--bl-white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.bl-appointment__form button[type="submit"]:hover,
.bl-appointment__form button[type="submit"]:focus-visible {
  background: var(--bl-red-dark);
}

.bl-appointment__form button[type="submit"]:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.bl-appointment__alternate {
  display: grid;
  gap: .75rem;
  margin-top: .1rem;
}

.bl-appointment__whatsapp {
  display: grid;
  gap: .12rem;
  min-height: 58px;
  padding: .8rem 1rem;
  border: 1px solid rgba(36, 122, 67, .22);
  border-radius: var(--bl-radius);
  background: #f4fbf6;
  color: #1f6d3b;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.bl-appointment__whatsapp:hover,
.bl-appointment__whatsapp:focus-visible {
  border-color: rgba(36, 122, 67, .45);
  background: #247a43;
  color: var(--bl-white);
}

.bl-appointment__whatsapp strong {
  font-size: .98rem;
  line-height: 1.25;
}

.bl-appointment__whatsapp span {
  font-size: .84rem;
  line-height: 1.35;
}

.bl-appointment__alternate p {
  margin: 0;
  color: var(--bl-muted);
  font-size: .9rem;
  line-height: 1.45;
}

.bl-appointment__agreements {
  margin-top: .2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bl-line);
  color: var(--bl-muted);
  font-size: .86rem;
  line-height: 1.55;
}

.bl-appointment__agreements p {
  margin: .65rem 0 0;
}

.bl-appointment__agreements a,
.bl-appointment__alternate a:not(.bl-appointment__whatsapp) {
  color: var(--bl-gold-dark);
  font-weight: 800;
}

.bl-check {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

.bl-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--bl-red);
}

.bl-appointment__status {
  min-height: 1.2rem;
  margin: .1rem 0 0;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
}

.bl-appointment__status.is-error {
  color: var(--bl-red-dark);
}

.bl-appointment__status.is-success {
  color: #247a43;
}

.bl-appointment__progress,
.bl-appointment__success {
  min-width: 0;
  min-height: clamp(320px, 48vh, 430px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: 2rem 0;
  text-align: center;
}

.bl-appointment__progress p,
.bl-appointment__success p,
.bl-appointment__success h3 {
  margin: 0;
}

.bl-appointment__progress p {
  color: var(--bl-muted);
  font-size: .98rem;
  font-weight: 800;
}

.bl-appointment__spinner {
  width: 68px;
  height: 68px;
  border: 3px solid rgba(198, 144, 32, .22);
  border-top-color: var(--bl-red);
  border-radius: 999px;
  animation: bl-appointment-spin 820ms linear infinite;
}

.bl-appointment__success-mark {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 122, 67, .18);
  border-radius: 999px;
  background: #eefaf1;
  color: #247a43;
  animation: bl-appointment-success-pop 380ms cubic-bezier(.2, .82, .28, 1.22) both;
}

.bl-appointment__success-mark svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bl-appointment__success-mark path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: bl-appointment-check 460ms 140ms ease forwards;
}

.bl-appointment__success h3 {
  color: var(--bl-black);
  font-size: 1.65rem;
  line-height: 1.16;
}

.bl-appointment__success p {
  max-width: 430px;
  color: #4f4943;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.bl-appointment__return {
  appearance: none;
  min-height: 52px;
  margin-top: .25rem;
  border: 1px solid var(--bl-red);
  border-radius: var(--bl-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.15rem;
  background: var(--bl-red);
  color: var(--bl-white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.bl-appointment__return:hover,
.bl-appointment__return:focus-visible {
  border-color: var(--bl-red-dark);
  background: var(--bl-red-dark);
}

@keyframes bl-appointment-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bl-appointment-success-pop {
  0% {
    opacity: 0;
    transform: scale(.78);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bl-appointment-check {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-appointment__spinner,
  .bl-appointment__success-mark,
  .bl-appointment__success-mark path {
    animation: none;
  }

  .bl-appointment__success-mark path {
    stroke-dashoffset: 0;
  }
}

.bl-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
}

.cookie-consent {
  right: 1rem !important;
  bottom: 1rem !important;
  left: auto !important;
  z-index: 1200 !important;
  width: min(420px, calc(100vw - 2rem)) !important;
  border-radius: var(--bl-radius) !important;
}

@media (max-width: 1120px) {
  .bl-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .bl-header__toggle {
    display: block;
  }

  .bl-nav {
    display: none;
  }

  .bl-header__actions {
    grid-column: 3;
  }

  .bl-header__search {
    display: none;
  }

  .bl-treatment-final-cta {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .bl-treatment-final-cta__actions {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .bl-treatment-final-cta__actions .bl-button,
  .bl-treatment-final-cta__actions a {
    min-width: min(100%, 240px);
  }
}

@media (max-width: 920px) {
  .bl-treatment-groups,
  .bl-priority-grid,
  .bl-card-grid--four,
  .bl-card-grid--three,
  .bl-pillar-grid,
  .bl-contact-grid,
  .bl-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .bl-testimonials__track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  .bl-google-reviews__summary,
  .bl-google-reviews__panel,
  .bl-google-review-cta {
    grid-template-columns: 1fr;
  }

  .bl-google-reviews__summary-actions,
  .bl-google-reviews__panel-actions,
  .bl-google-review-cta__actions {
    justify-content: flex-start;
  }

  .bl-split,
  .bl-detail-hero,
  .bl-detail-layout,
  .bl-appointment__dialog {
    grid-template-columns: 1fr;
  }

  .bl-benefit-grid,
  .bl-procedure-options__grid,
  .bl-fit-consult-grid,
  .bl-process-list,
  .bl-trust-strip,
  .bl-treatment-final-cta {
    grid-template-columns: 1fr;
  }

  .bl-hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bl-included-services > div {
    grid-template-columns: 1fr;
  }

  .bl-pack-grid {
    grid-template-columns: 1fr;
  }

  .bl-side-cta {
    position: static;
  }

  .bl-trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .bl-trust-strip article:last-child {
    border-bottom: 0;
  }

  .bl-treatment-final-cta__actions {
    justify-content: flex-start;
  }

  .bl-appointment__media {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --bl-header-height: 68px;
  }

  body.beautylift-public {
    font-size: 15px;
  }

  .bl-header__inner {
    width: calc(100% - 16px);
    min-height: 68px;
    gap: .45rem;
  }

  .bl-header__actions {
    gap: .4rem;
  }

  .bl-header__cart {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .bl-brand {
    gap: .45rem;
    min-width: 0;
  }

  .bl-brand img {
    width: 34px;
    height: 34px;
  }

  .bl-brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .9rem;
  }

  .bl-header__cta {
    min-height: 44px;
    padding: .55rem .8rem;
    white-space: nowrap;
    font-size: .92rem;
  }

  .bl-mobile__topbar {
    min-height: 68px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .bl-mobile__drawer {
    width: min(380px, calc(100vw - 20px));
  }

  .bl-mobile__panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bl-hero {
    min-height: calc(100vh - var(--bl-header-height));
    padding: 4rem 1.1rem 6rem;
    align-items: center;
    background-position: 62% center;
  }

  .bl-hero__content {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
    margin-left: 0;
    text-align: left;
  }

  .bl-hero h1 {
    font-size: 2.25rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .bl-hero p {
    font-size: 1rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .bl-section,
  .bl-detail,
  .bl-page-hero,
  .bl-detail-hero {
    width: calc(100% - 24px);
  }

  .bl-section {
    padding: 3rem 0;
  }

  .bl-page-hero--treatment-category {
    padding-bottom: .8rem;
  }

  .bl-page-hero + .bl-section--treatment-list {
    padding-top: 1.25rem;
  }

  .bl-section--tint {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .bl-section__head {
    display: block;
  }

  .bl-treatment-groups,
  .bl-priority-grid,
  .bl-card-grid--four,
  .bl-card-grid--three,
  .bl-card-grid--doctors,
  .bl-pillar-grid,
  .bl-contact-grid,
  .bl-footer__inner {
    grid-template-columns: 1fr;
  }

  .bl-testimonials__track {
    grid-auto-columns: min(88vw, 360px);
  }

  .bl-google-reviews__summary,
  .bl-google-reviews__panel,
  .bl-google-review-cta,
  .bl-google-review-card {
    padding: .95rem;
  }

  .bl-google-reviews__panel h2,
  .bl-google-review-cta h2 {
    font-size: 1.35rem;
  }

  .bl-google-reviews__button,
  .bl-google-reviews__link {
    width: 100%;
  }

  .bl-google-review-card__header {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .bl-google-review-card__avatar {
    width: 48px;
    height: 48px;
  }

  .bl-google-review-card__source {
    grid-column: 2;
    text-align: left;
  }

  .bl-detail-hero {
    padding-top: 2rem;
  }

  .bl-treatment-hero {
    gap: 1.3rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .bl-detail-hero h1,
  .bl-page-hero h1 {
    font-size: 2.1rem;
  }

  .bl-treatment-hero .bl-detail-hero__lead {
    font-size: 1rem;
  }

  .bl-hero-highlights,
  .bl-benefit-grid,
  .bl-procedure-options__grid,
  .bl-process-list {
    grid-template-columns: 1fr;
  }

  .bl-treatment-main {
    gap: 1.5rem;
  }

  .bl-benefit-grid,
  .bl-fit-consult-grid,
  .bl-process-list {
    gap: .8rem;
  }

  .bl-benefit-grid article,
  .bl-procedure-options,
  .bl-procedure-options__grid article,
  .bl-conversion-panel,
  .bl-process-list li,
  .bl-results-section,
  .bl-treatment-disclaimer,
  .bl-treatment-final-cta {
    padding: 1rem;
  }

  .bl-treatment-disclaimer p {
    font-size: .9rem;
    line-height: 1.65;
  }

  .bl-treatment-final-cta__actions,
  .bl-treatment-final-cta__actions .bl-button,
  .bl-treatment-final-cta__actions a {
    width: 100%;
  }

  .bl-treatment-final-cta__actions {
    align-items: stretch;
  }

  .bl-treatment-final-cta__actions .bl-button,
  .bl-treatment-final-cta__actions a {
    justify-content: center;
  }

  .bl-price-box,
  .bl-price-directory section {
    overflow-x: auto;
  }

  .bl-pack-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .bl-pack-card img {
    min-height: 112px;
  }

  .bl-cart-add,
  .bl-price-action-cell .bl-cart-add,
  .bl-cart-add.bl-button--wide {
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    justify-self: end;
  }

  .bl-cart-add span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .bl-cart__drawer {
    width: 100vw;
  }

  .bl-price-toolbar,
  .bl-price-toolbar label,
  .bl-price-toolbar select {
    width: 100%;
  }

  .bl-currency-toggle {
    width: 100%;
  }

  .bl-currency-toggle.bl-currency-toggle--compact {
    width: auto;
  }

  .bl-currency-toggle button {
    flex: 1 1 0;
  }

  .bl-currency-toggle--compact button {
    flex: 0 0 auto;
  }

  .bl-treatment-pack-actions {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .bl-footer__inner,
  .bl-footer__legal {
    width: calc(100% - 24px);
  }

  .bl-footer__payments {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .bl-contact-map {
    margin-top: 2rem;
  }

  .bl-contact-map__frame {
    height: 360px;
    min-height: 360px;
  }

  .bl-contact-map__pin {
    width: 56px;
    height: 56px;
  }

  .bl-contact-map__pin img {
    width: 30px;
    height: 30px;
  }

  .bl-contact-map__cta {
    bottom: .9rem;
    width: min(320px, calc(100% - 24px));
  }

  .bl-appointment {
    padding: 0;
    place-items: stretch;
  }

  .bl-appointment__dialog {
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
  }

  .bl-appointment__close {
    top: .8rem;
    right: .8rem;
  }

  .bl-appointment__body {
    width: 100%;
    max-width: 100vw;
    padding: 4.4rem 1.25rem 2rem;
    align-content: start;
  }

  .bl-appointment__body h2 {
    font-size: 2rem;
  }

  .bl-appointment__intro {
    margin-bottom: 1.15rem;
  }

  .bl-appointment__form,
  .bl-appointment__agreements,
  .bl-appointment__alternate,
  .bl-appointment__whatsapp {
    max-width: 100%;
    min-width: 0;
  }

  .bl-appointment__form.is-loading,
  .bl-appointment__form.is-success,
  .bl-appointment__progress,
  .bl-appointment__success {
    min-height: calc(100dvh - 230px);
  }

  .bl-appointment__progress,
  .bl-appointment__success {
    padding: 1.8rem 0 calc(2rem + env(safe-area-inset-bottom));
  }

  .bl-appointment__success h3 {
    font-size: 1.5rem;
  }

  .bl-appointment__success p {
    max-width: 100%;
    font-size: .96rem;
  }

  .bl-appointment__return {
    width: 100%;
  }

  .bl-floating-field span {
    max-width: calc(100% - 1.5rem);
  }

  .bl-appointment__whatsapp {
    overflow-wrap: break-word;
  }

  .cookie-consent {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    overflow: hidden !important;
  }

  .cookie-consent * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

.bl-not-found {
  width: 100%;
  padding: 4.75rem max(16px, calc((100vw - 1160px) / 2)) 3.5rem;
  background:
    linear-gradient(180deg, var(--bl-white) 0%, var(--bl-soft) 100%);
}

.bl-not-found__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 2.5rem;
  align-items: start;
}

.bl-not-found__content {
  max-width: 670px;
  padding-top: 1.1rem;
}

.bl-not-found__code {
  width: fit-content;
  margin: 0 0 .75rem;
  border: 1px solid rgba(207, 51, 73, .22);
  border-radius: 999px;
  padding: .2rem .75rem;
  background: rgba(207, 51, 73, .08);
  color: var(--bl-red-dark);
  font-size: .9rem;
  font-weight: 800;
}

.bl-not-found h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--bl-black);
  font-size: 3.4rem;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.bl-not-found__lead {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: var(--bl-muted);
  font-size: 1.08rem;
}

.bl-not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.7rem;
}

.bl-not-found__button-secondary {
  border-color: var(--bl-line);
  background: var(--bl-white);
  color: var(--bl-ink);
}

.bl-not-found__button-secondary:hover,
.bl-not-found__button-secondary:focus-visible {
  border-color: rgba(198, 144, 32, .55);
  color: var(--bl-gold-dark);
}

.bl-not-found__contact {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--bl-muted);
}

.bl-not-found__contact a,
.bl-not-found__appointment {
  color: var(--bl-gold-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.bl-not-found__appointment {
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.bl-not-found__contact a:hover,
.bl-not-found__contact a:focus-visible,
.bl-not-found__appointment:hover,
.bl-not-found__appointment:focus-visible {
  color: var(--bl-red-dark);
}

.bl-not-found__panel {
  display: grid;
  gap: 1rem;
}

.bl-not-found__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--bl-radius);
  background: var(--bl-black);
}

.bl-not-found__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, .48));
  pointer-events: none;
}

.bl-not-found__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bl-not-found__quick {
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius);
  background: var(--bl-white);
  overflow: hidden;
}

.bl-not-found__quick h2 {
  margin: 0;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--bl-line);
  font-size: 1.12rem;
  line-height: 1.25;
}

.bl-not-found__quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bl-not-found__quick-grid a {
  display: block;
  min-width: 0;
  padding: 1rem 1.1rem;
  color: inherit;
  text-decoration: none;
}

.bl-not-found__quick-grid a:nth-child(odd) {
  border-right: 1px solid var(--bl-line);
}

.bl-not-found__quick-grid a:nth-child(n + 3) {
  border-top: 1px solid var(--bl-line);
}

.bl-not-found__quick-grid a:hover,
.bl-not-found__quick-grid a:focus-visible {
  background: var(--bl-soft);
}

.bl-not-found__quick-grid strong,
.bl-not-found__quick-grid span {
  display: block;
  min-width: 0;
  overflow-wrap: break-word;
}

.bl-not-found__quick-grid strong {
  color: var(--bl-ink);
  font-size: .95rem;
  line-height: 1.3;
}

.bl-not-found__quick-grid span {
  margin-top: .3rem;
  color: var(--bl-muted);
  font-size: .84rem;
  line-height: 1.45;
}

.bl-not-found-suggestions {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.bl-not-found-suggestions__links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.bl-not-found-suggestions__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(198, 144, 32, .28);
  border-radius: 999px;
  padding: .5rem .9rem;
  background: var(--bl-white);
  color: var(--bl-gold-dark);
  font-weight: 800;
  text-decoration: none;
}

.bl-not-found-suggestions__links a:hover,
.bl-not-found-suggestions__links a:focus-visible {
  border-color: var(--bl-gold);
  background: #fffaf4;
}

.bl-chat {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 960;
  font-family: Poppins, Inter, Segoe UI, Arial, sans-serif;
}

.bl-chat [hidden] {
  display: none !important;
}

.bl-chat__bubble {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #f7be00;
  color: var(--bl-black);
  cursor: pointer;
}

.bl-chat__bubble:hover,
.bl-chat__bubble:focus-visible {
  background: #dca800;
  outline: 3px solid rgba(247, 190, 0, .26);
  outline-offset: 3px;
}

.bl-chat__bubble-icon {
  width: 30px;
  height: 30px;
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.25 3.5h15.5A2.75 2.75 0 0 1 22.5 6.25v8.5a2.75 2.75 0 0 1-2.75 2.75h-7.28l-5.82 3.53A1.08 1.08 0 0 1 5 20.1v-2.6h-.75A2.75 2.75 0 0 1 1.5 14.75v-8.5A2.75 2.75 0 0 1 4.25 3.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.25 3.5h15.5A2.75 2.75 0 0 1 22.5 6.25v8.5a2.75 2.75 0 0 1-2.75 2.75h-7.28l-5.82 3.53A1.08 1.08 0 0 1 5 20.1v-2.6h-.75A2.75 2.75 0 0 1 1.5 14.75v-8.5A2.75 2.75 0 0 1 4.25 3.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bl-chat__bubble-icon::before,
.bl-chat__bubble-icon::after {
  content: none;
}

.bl-chat.is-open .bl-chat__bubble-icon {
  width: 26px;
  height: 26px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.28 4.86a1 1 0 0 0-1.42 1.42L10.59 12l-5.73 5.72a1 1 0 1 0 1.42 1.42L12 13.41l5.72 5.73a1 1 0 0 0 1.42-1.42L13.41 12l5.73-5.72a1 1 0 0 0-1.42-1.42L12 10.59 6.28 4.86Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.28 4.86a1 1 0 0 0-1.42 1.42L10.59 12l-5.73 5.72a1 1 0 1 0 1.42 1.42L12 13.41l5.72 5.73a1 1 0 0 0 1.42-1.42L13.41 12l5.73-5.72a1 1 0 0 0-1.42-1.42L12 10.59 6.28 4.86Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bl-chat__bubble-online {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--bl-white);
  border-radius: 999px;
  background: #1f8b50;
  box-shadow: 0 0 0 5px rgba(31, 139, 80, .16);
}

.bl-chat__bubble-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bl-white);
  border-radius: 999px;
  background: var(--bl-red);
  color: var(--bl-white);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
}

.bl-chat__panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(400px, calc(100vw - 28px));
  height: min(660px, calc(100vh - 116px));
  min-height: min(540px, calc(100vh - 116px));
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(31, 29, 27, .1);
  border-radius: 16px;
  background: #f7f7f7;
  color: var(--bl-ink);
}

.bl-chat__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6f6a66;
  cursor: pointer;
}

.bl-chat__close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.bl-chat__close span:first-child {
  transform: rotate(45deg);
}

.bl-chat__close span:last-child {
  transform: rotate(-45deg);
}

.bl-chat__welcome,
.bl-chat__form,
.bl-chat__thread {
  height: 100%;
  min-height: 0;
  padding: 24px;
}

.bl-chat__welcome {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(156px, 1fr) auto;
  gap: .7rem;
}

.bl-chat__brand {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f7be00;
  color: var(--bl-black);
  font-size: .84rem;
  font-weight: 800;
}

.bl-chat__welcome h2 {
  margin: .6rem 0 0;
  color: var(--bl-black);
  font-size: 1.55rem;
  line-height: 1.2;
}

.bl-chat__welcome p {
  margin: 0;
  color: #4f5666;
  font-size: 1rem;
  line-height: 1.55;
}

.bl-chat__wave {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: .35rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7c4 0 18%, #f7be00 19% 100%);
  vertical-align: -3px;
}

.bl-chat__online-card {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 112px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  background: var(--bl-white);
}

.bl-chat__online-card strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--bl-black);
  font-size: .95rem;
}

.bl-chat__online-card button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: #c69020;
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
}

.bl-chat__online-card button::after {
  content: "";
  width: .48rem;
  height: .48rem;
  display: inline-block;
  margin-left: .55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.bl-chat__avatars {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.bl-chat__avatars img {
  width: 44px;
  height: 44px;
  margin-left: -12px;
  border: 2px solid var(--bl-white);
  border-radius: 999px;
  object-fit: cover;
}

.bl-chat__avatars img:first-child {
  margin-left: 0;
}

.bl-chat__avatars--small img {
  width: 34px;
  height: 34px;
  margin-left: -9px;
}

.bl-chat__powered {
  justify-self: center;
  color: #838383;
  font-size: .72rem;
}

.bl-chat__form {
  display: grid;
  align-content: start;
  gap: .85rem;
  overflow-y: auto;
}

.bl-chat__form-grid {
  display: grid;
  gap: .75rem;
}

.bl-chat__form label,
.bl-chat__message-field,
.bl-chat__reply {
  display: grid;
  gap: .35rem;
}

.bl-chat__form label > span,
.bl-chat__message-field > label {
  color: #5f5f5f;
  font-size: .78rem;
  font-weight: 800;
}

.bl-chat__form input,
.bl-chat__form textarea,
.bl-chat__reply textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 10px;
  padding: .72rem .82rem;
  background: var(--bl-white);
  color: var(--bl-ink);
  font: inherit;
  font-size: .95rem;
  outline: none;
}

.bl-chat__form input:focus,
.bl-chat__form textarea:focus,
.bl-chat__reply textarea:focus {
  border-color: rgba(198, 144, 32, .72);
}

.bl-chat__form textarea {
  min-height: 116px;
  resize: none;
}

.bl-chat__composer {
  position: relative;
  display: block;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: var(--bl-white);
  overflow: hidden;
  transition: border-color .18s ease;
}

.bl-chat__composer:focus-within {
  border-color: rgba(198, 144, 32, .72);
}

.bl-chat__composer textarea {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: .72rem 3.45rem .72rem .82rem;
  box-shadow: none;
}

.bl-chat__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bl-chat__status {
  min-height: 1.25rem;
  margin: 0;
  color: #5f5f5f;
  font-size: .78rem;
}

.bl-chat__status.is-error {
  color: var(--bl-red-dark);
}

.bl-chat__form-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.bl-chat__form-actions .bl-chat__primary {
  flex: 1 1 auto;
}

.bl-chat__profile-submit {
  flex: 1 1 auto;
}

.bl-chat__primary {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--bl-black);
  color: var(--bl-white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.bl-chat__secondary {
  min-height: 44px;
  border: 1px solid rgba(31, 29, 27, .14);
  border-radius: 999px;
  background: var(--bl-white);
  color: var(--bl-ink);
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  padding: 0 .9rem;
  white-space: nowrap;
}

.bl-chat__primary:disabled {
  cursor: wait;
  opacity: .64;
}

.bl-chat__secondary:disabled {
  cursor: wait;
  opacity: .64;
}

.bl-chat__thread {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: .8rem;
}

.bl-chat__thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .8rem;
  padding-right: 48px;
  border-bottom: 1px solid #e3e3e3;
}

.bl-chat__thread-title {
  min-width: 0;
}

.bl-chat__thread-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .7rem;
}

.bl-chat__edit {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 29, 27, .06);
  color: #4f5666;
  cursor: pointer;
  padding: 0;
}

.bl-chat__edit:hover,
.bl-chat__edit:focus-visible {
  background: rgba(31, 29, 27, .1);
  color: var(--bl-ink);
}

.bl-chat__edit .bl-chat__edit-icon {
  width: 17px;
  height: 17px;
  display: block;
  background: currentColor;
  color: inherit;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.43 12.98c.04-.32.07-.65.07-.98s-.02-.66-.07-.98l2.11-1.65a.5.5 0 0 0 .12-.64l-2-3.46a.5.5 0 0 0-.6-.22l-2.49 1a7.28 7.28 0 0 0-1.69-.98L14.5 1.42A.5.5 0 0 0 14 1h-4a.5.5 0 0 0-.5.42L9.12 4.07c-.61.24-1.18.56-1.69.98l-2.49-1a.5.5 0 0 0-.6.22l-2 3.46a.5.5 0 0 0 .12.64l2.11 1.65c-.04.32-.08.65-.08.98s.03.66.08.98l-2.11 1.65a.5.5 0 0 0-.12.64l2 3.46c.14.24.43.34.68.22l2.41-.97c.52.4 1.08.72 1.69.97l.38 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.38-2.65c.61-.25 1.18-.57 1.69-.97l2.41.97c.25.12.54.02.68-.22l2-3.46a.5.5 0 0 0-.12-.64l-2.11-1.65ZM12 15.5A3.5 3.5 0 1 1 12 8a3.5 3.5 0 0 1 0 7.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.43 12.98c.04-.32.07-.65.07-.98s-.02-.66-.07-.98l2.11-1.65a.5.5 0 0 0 .12-.64l-2-3.46a.5.5 0 0 0-.6-.22l-2.49 1a7.28 7.28 0 0 0-1.69-.98L14.5 1.42A.5.5 0 0 0 14 1h-4a.5.5 0 0 0-.5.42L9.12 4.07c-.61.24-1.18.56-1.69.98l-2.49-1a.5.5 0 0 0-.6.22l-2 3.46a.5.5 0 0 0 .12.64l2.11 1.65c-.04.32-.08.65-.08.98s.03.66.08.98l-2.11 1.65a.5.5 0 0 0-.12.64l2 3.46c.14.24.43.34.68.22l2.41-.97c.52.4 1.08.72 1.69.97l.38 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.38-2.65c.61-.25 1.18-.57 1.69-.97l2.41.97c.25.12.54.02.68-.22l2-3.46a.5.5 0 0 0-.12-.64l-2.11-1.65ZM12 15.5A3.5 3.5 0 1 1 12 8a3.5 3.5 0 0 1 0 7.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bl-chat__thread-head strong,
.bl-chat__thread-head span {
  display: block;
}

.bl-chat__thread-head span {
  color: #1f8b50;
  font-size: .78rem;
  font-weight: 800;
}

.bl-chat__messages {
  display: grid;
  align-content: start;
  gap: .58rem;
  min-height: 0;
  scroll-behavior: smooth;
  overflow-y: auto;
  padding-right: .2rem;
}

.bl-chat__new-messages {
  position: absolute;
  left: 50%;
  bottom: 82px;
  z-index: 2;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 .9rem;
  background: var(--bl-black);
  color: var(--bl-white);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  transform: translateX(-50%);
  box-shadow: 0 12px 24px rgba(31, 29, 27, .16);
}

.bl-chat__message {
  width: 82%;
  display: grid;
  gap: .25rem;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: .72rem .82rem;
  background: var(--bl-white);
}

.bl-chat__message--staff {
  justify-self: start;
}

.bl-chat__message--visitor {
  justify-self: end;
  border-color: rgba(198, 144, 32, .28);
  background: #fffaf0;
}

.bl-chat__message span {
  color: #5f5f5f;
  font-size: .72rem;
  font-weight: 800;
}

.bl-chat__message p {
  margin: 0;
  color: var(--bl-ink);
  font-size: .92rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.bl-chat__message small {
  color: #8a8a8a;
  font-size: .68rem;
}

.bl-chat__reply {
  position: relative;
  display: block;
}

.bl-chat__reply textarea {
  min-height: 44px;
  max-height: 118px;
  resize: none;
  overflow-y: hidden;
}

.bl-chat__composer .bl-chat__primary {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 34px;
  min-width: 0;
  height: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
}

.bl-chat__send-icon {
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.72 2.28a.75.75 0 0 1 .18.78l-6.75 18a.75.75 0 0 1-1.39.03l-3.39-7.46-7.46-3.39a.75.75 0 0 1 .03-1.39l18-6.75a.75.75 0 0 1 .78.18ZM5.29 9.62l5.9 2.68a.75.75 0 0 1 .37.37l2.68 5.9 5.6-14.93-14.55 5.98Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.72 2.28a.75.75 0 0 1 .18.78l-6.75 18a.75.75 0 0 1-1.39.03l-3.39-7.46-7.46-3.39a.75.75 0 0 1 .03-1.39l18-6.75a.75.75 0 0 1 .78.18ZM5.29 9.62l5.9 2.68a.75.75 0 0 1 .37.37l2.68 5.9 5.6-14.93-14.55 5.98Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bl-chat__fallback {
  align-self: end;
  display: grid;
  gap: .45rem;
  margin: 0 24px 24px;
  border: 1px solid rgba(207, 51, 73, .24);
  border-radius: 12px;
  padding: .9rem;
  background: #fff8f6;
  color: var(--bl-ink);
}

.bl-chat__fallback span {
  color: #5f5f5f;
  font-size: .85rem;
}

.bl-chat__fallback div {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.bl-chat__fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(198, 144, 32, .32);
  border-radius: 999px;
  padding: 0 .85rem;
  color: var(--bl-gold-dark);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 520px) {
  .bl-chat {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .bl-chat.is-open {
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .bl-chat__bubble {
    width: 58px;
    height: 58px;
  }

  .bl-chat.is-open .bl-chat__bubble {
    display: none;
  }

  .bl-chat__panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    border: 0;
    border-radius: 0;
  }

  .bl-chat__close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 24px rgba(31, 29, 27, .12);
  }

  .bl-chat__welcome,
  .bl-chat__form,
  .bl-chat__thread {
    padding: calc(18px + env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) calc(16px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  }

  .bl-chat__welcome,
  .bl-chat__form {
    padding-top: calc(62px + env(safe-area-inset-top));
  }

  .bl-chat__thread-head {
    min-height: 52px;
    align-items: flex-start;
    gap: .65rem;
    padding-right: 52px;
  }

  .bl-chat__thread-actions {
    gap: .5rem;
  }

  .bl-chat__edit {
    width: 32px;
    height: 32px;
  }

  .bl-chat__avatars--small img {
    width: 30px;
    height: 30px;
    margin-left: -8px;
  }

  .bl-chat__online-card {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .bl-chat__form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .bl-chat__secondary,
  .bl-chat__form-actions .bl-chat__primary {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .bl-not-found {
    padding-top: 3.5rem;
  }

  .bl-not-found__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bl-not-found__content {
    max-width: 100%;
    padding-top: 0;
  }

  .bl-not-found h1 {
    max-width: 100%;
    font-size: 2.7rem;
  }

  .bl-not-found__panel {
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .bl-not-found {
    padding: 2.75rem 12px 2.5rem;
  }

  .bl-not-found h1 {
    max-width: 11ch;
    font-size: 1.95rem;
    line-height: 1.12;
  }

  .bl-not-found__lead {
    font-size: 1rem;
  }

  .bl-not-found__actions,
  .bl-not-found__actions .bl-button {
    width: 100%;
  }

  .bl-not-found__quick-grid {
    grid-template-columns: 1fr;
  }

  .bl-not-found__quick-grid a:nth-child(odd) {
    border-right: 0;
  }

  .bl-not-found__quick-grid a:nth-child(n + 2) {
    border-top: 1px solid var(--bl-line);
  }

  .bl-not-found-suggestions {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .bl-not-found-suggestions .bl-section__head {
    display: block;
  }

  .bl-not-found-suggestions__links a {
    flex: 1 1 100%;
  }
}

@media (max-width: 920px) {
  .bl-faq-toolbar {
    grid-template-columns: 1fr;
  }

  .bl-faq-directory {
    width: calc(100% - 24px);
  }
}

@media (max-width: 640px) {
  .bl-offers-grid {
    grid-template-columns: 1fr;
  }

  .bl-offer-card__items > div {
    grid-template-columns: 1fr;
  }

  .bl-offer-card__items span {
    text-align: left;
  }

  .bl-price-search,
  .bl-price-search input {
    width: 100%;
  }

  .bl-price-search input,
  .bl-price-toolbar select {
    min-width: 0;
  }

  .bl-price-directory section {
    overflow-x: visible;
  }

  .bl-price-directory table,
  .bl-price-directory thead,
  .bl-price-directory tbody,
  .bl-price-directory tr,
  .bl-price-directory td {
    display: block;
    width: 100%;
  }

  .bl-price-directory colgroup,
  .bl-price-directory thead {
    display: none;
  }

  .bl-price-directory .bl-price-row {
    padding: .9rem 0;
    border-bottom: 1px solid var(--bl-line);
  }

  .bl-price-directory .bl-price-row:last-child {
    border-bottom: 0;
  }

  .bl-price-directory td,
  .bl-price-directory td:last-child {
    padding: .18rem 0;
    border-bottom: 0;
    text-align: left;
    white-space: normal;
  }

  .bl-price-directory td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: .05rem;
    color: var(--bl-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .bl-price-directory .bl-price-action-cell {
    padding-top: .65rem;
  }

  .bl-price-directory .bl-price-action-cell .bl-cart-add {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 42px;
    padding: .6rem .85rem;
    justify-self: stretch;
  }

  .bl-price-directory .bl-price-action-cell .bl-cart-add span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .bl-price-empty__actions,
  .bl-price-empty__actions .bl-button,
  .bl-faq-empty__actions,
  .bl-faq-empty__actions .bl-button {
    width: 100%;
  }

  .bl-faq-filters button {
    flex: 1 1 auto;
  }

  .bl-faq-item summary {
    align-items: flex-start;
  }
}
