:root {
  --bf-green:       #099601;
  --bf-green-dark:  #067500;
  --bf-green-light: #39b730;
  --bf-green-soft:  #eaf7e8;
  --bf-green-header: #89B800;
  --bf-plum: #8a5d68;
  --bf-plum-dark: #704a54;
  --bf-soft: #faf7f8;
  --bf-cream: #f6f0f2;
  --bf-dark: #252525;
  --bf-text: #555;
  --bf-border: rgba(0,0,0,.08);
  --bf-shadow: 0 14px 36px rgba(0,0,0,.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--bf-dark);
  background: #fff;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: .25s ease;
}

/* HEADER */

.bf-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--bf-green-header) !important;
  	
  padding: 18px 0;
  transition: .25s ease;
}

.bf-header.is-scrolled {
  background: #099601;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.bf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bf-logo img {
  max-width: 210px;
}

.bf-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.bf-nav a {
  color: #fff;
  font-weight: 600;
  letter-spacing: .2px;
  text-decoration: none;
}

.bf-nav a:hover {
  color: #f8ecef;
  text-decoration: none;
}

.bf-nav-btn {
  background: #fff;
  color: var(--bf-plum) !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.bf-nav-btn:hover {
  background: var(--bf-soft);
  color: var(--bf-plum-dark) !important;
}

.bf-menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
}

.bf-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* SHARED */

.bf-eyebrow,
.home-blog-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: #8a5d68;
  margin-bottom: 10px;
}

.bf-btn {
  display: inline-block;
  background: var(--bf-plum);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--bf-plum);
}

.bf-btn:hover {
  background: var(--bf-plum-dark);
  border-color: var(--bf-plum-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.bf-btn-light {
  background: #fff;
  color: var(--bf-plum);
}

.bf-btn-light:hover {
  background: var(--bf-plum);
  color: #fff;
}

/* HOME SLIDER - FIXED HEIGHT */

.bf-home-slider-section {
  padding:0;
  background: #fff;
}

.bf-home-slider,
#imageSlider,
#imageSlider .carousel-inner,
#imageSlider .carousel-item {
  height: 400px !important;
  max-height: 400px !important;
  overflow: hidden !important;
}

.bf-home-slider {
    width:100%;
    border-radius:0;
    box-shadow:0 10px 35px rgba(0,0,0,.15);
}


#imageSlider .carousel-item {
  position: relative;
}

#imageSlider .carousel-item img {
  width: 100% !important;
  height: 400px !important;
  max-height: 400px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* Blog slide wrapper support */

#imageSlider .home-blog-slide {
  position: absolute !important;
  inset: 0 !important;
  height: 400px !important;
  max-height: 400px !important;
  overflow: hidden !important;
}

#imageSlider .home-blog-slide img {
  width: 100% !important;
  height: 400px !important;
  max-height: 400px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Blog slide overlay */

#imageSlider .carousel-item:has(.home-blog-panel)::before,
.blog-slide::before,
.home-blog-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.38) 48%,
    rgba(0,0,0,.08) 100%
  );
  z-index: 1;
}

.home-blog-panel {
  position: absolute !important;
  left: 8% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important;
  max-width: 600px;
  color: #fff;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.home-blog-panel .home-blog-eyebrow,
.home-blog-panel .bf-eyebrow {
  color: #d9b6c0;
  margin-bottom: 14px;
}

.home-blog-panel h2 {
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
}

.home-blog-panel p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin-bottom: 22px;
}

.home-blog-panel a {
  display: inline-block;
  background: var(--bf-plum);
  color: #fff;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-blog-panel a:hover {
  background: var(--bf-plum-dark);
  color: #fff;
  text-decoration: none;
}

/* PAGE SECTIONS */

.bf-section {
  padding: 50px 0;
}

.bf-soft {
  background: var(--bf-soft);
}

.bf-section-heading {
  max-width: 100%;
  margin: 0 auto 42px;
  text-align: center;
}

.bf-section-heading h2 {
  font-size: clamp(25px, 4vw, 30px);
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 800;
}

.bf-section-heading p {
  color: var(--bf-text);
  font-size: 17px;
}

.bf-section-heading .bf-eyebrow,
.bf-feature-panel .bf-eyebrow,
.bf-article-content .bf-eyebrow,
.bf-cta .bf-eyebrow {
  color: #8a5d68;
}

.bf-card-grid {
  display: grid;
  gap: 24px;
}

.bf-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.bf-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.bf-service-card {
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--bf-shadow);
  color: var(--bf-dark);
  text-decoration: none;
}

.bf-service-card:hover {
  color: var(--bf-dark);
  text-decoration: none;
  transform: translateY(-4px);
}

.bf-service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.bf-service-card div {
  padding: 22px;
}

.bf-service-card h3,
.bf-treatment-card h3,
.bf-book-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.bf-service-card p,
.bf-treatment-card p,
.bf-book-card p {
  color: var(--bf-text);
  margin-bottom: 0;
}

.bf-feature-panel {
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: 22px;
  padding: 38px;
  box-shadow: var(--bf-shadow);
}

.bf-feature-panel h2 {
  font-size: clamp(25px, 4vw, 30px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.bf-feature-panel p {
  color: var(--bf-text);
  font-size: 17px;
}

.bf-pill-row {
  margin-top: 24px;
}

.bf-pill-row span {
  display: inline-block;
  background: var(--bf-soft);
  border: 1px solid var(--bf-border);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 4px 6px 4px 0;
  font-size: 14px;
  font-weight: 700;
}

.bf-pill-row i {
  color: var(--bf-plum);
  margin-right: 6px;
}

.bf-book-card {
  background: var(--bf-soft);
  border: 1px solid var(--bf-border);
  border-radius: 18px;
  padding: 28px;
}

.bf-price {
  color: var(--bf-plum);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin: 18px 0;
}

.bf-article-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--bf-shadow);
}

.bf-article-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.bf-article-content {
  padding: 46px;
  align-self: center;
}

.bf-article-content h2 {
  width: 100%;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
}

.bf-article-content p {
  color: var(--bf-text);
  font-size: 17px;
  margin-bottom: 26px;
}

.bf-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bf-stat {
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--bf-shadow);
}

.bf-stat strong {
  display: block;
  color: var(--bf-plum);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 10px;
}

.bf-stat span {
  font-weight: 800;
}

.bf-treatment-card {
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--bf-shadow);
}

.bf-treatment-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--bf-plum);
  font-weight: 800;
  text-decoration: none;
}

.bf-treatment-card a:hover {
  color: var(--bf-plum-dark);
  text-decoration: underline;
}

.bf-cta {
  background: #fff;
  color: #fff;
}

.bf-cta h2 {
  color: var(--bf-plum-dark);
  width: 100%;
  font-weight: 800;
}

.bf-cta p {
  color: var(--bf-text);
  font-size: 17px;
  margin-bottom: 5px;
}

.bf-cta-panel {
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:var(--bf-shadow);
    text-align:center;
}

.bf-cta-panel h2{
    width: 100%;
    line-height:1;
    font-weight:800;
  padding-top: 30px;
    color:var(--bf-plum-dark);
}

.bf-footer {
  background: #1f1f1f;
  color: rgba(255,255,255,.78);
  padding: 70px 0 30px;
}

.bf-footer-logo {
  max-width: 220px;
  margin-bottom: 20px;
}

.bf-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 42px;
}

.bf-footer h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 800;
}

.bf-footer a {
  display: block;
  color: rgba(255,255,255,.78);
  margin-bottom: 8px;
  text-decoration: none;
}

.bf-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.bf-footer .bf-btn {
  display: inline-block;
  color: #fff;
  margin-top: 8px;
}

.bf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.bf-footer-bottom p {
  margin: 0;
}

.bf-reviews {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.bf-reviews-heading {
    text-align: center;
    max-width: none;
    width: 100%;
    margin-bottom: 25px;
}

.bf-reviews-heading p {
    max-width: none;
    width: 100%;
}

.bf-reviews-heading h2 {
    margin-bottom: 12px;
}

/* TABLET */

@media (max-width: 991px) {
  .bf-menu-toggle {
    display: block;
  }

  .bf-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #343a40;
    border-radius: 0 0 18px 18px;
    padding: 18px;
    box-shadow: 0 18px 36px rgba(0,0,0,.18);
  }

  .bf-nav.is-open {
    display: flex;
  }

  .bf-nav a {
    padding: 12px 0;
  }

  .bf-nav-btn {
    text-align: center;
    margin-top: 8px;
  }

  .bf-card-grid-4,
  .bf-card-grid-3,
  .bf-stat-grid,
  .bf-article-feature,
  .bf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bf-article-feature {
    grid-template-columns: 1fr;
  }

  .bf-article-image img {
    min-height: 320px;
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .bf-logo img {
    max-width: 180px;
  }

  .bf-home-slider,
  #imageSlider,
  #imageSlider .carousel-inner,
  #imageSlider .carousel-item,
  #imageSlider .home-blog-slide {
    height: 300px !important;
    max-height: 300px !important;
  }

  #imageSlider .carousel-item img,
  #imageSlider .home-blog-slide img {
    height: 300px !important;
    max-height: 300px !important;
  }

  .home-blog-panel {
    left: 22px !important;
    right: 22px !important;
    max-width: none;
  }

  .home-blog-panel h2 {
    font-size: 24px;
  }

  .home-blog-panel p {
    font-size: 14px;
    line-height: 1.45;
  }

  .home-blog-panel a {
    padding: 9px 17px;
    font-size: 13px;
  }

  .bf-section {
    padding: 56px 0;
  }

  .bf-card-grid-4,
  .bf-card-grid-3,
  .bf-stat-grid,
  .bf-footer-grid {
    grid-template-columns: 1fr;
  }

  .bf-feature-panel,
  .bf-article-content {
    padding: 28px;
  }

  .bf-btn {
    width: auto;
  }

  .bf-footer-bottom {
    display: block;
  }

  .bf-footer-bottom p {
    margin-bottom: 8px;
  }
}

/* new stuff for main pages */
/* =========================================================
   Skin Treatments page
   Moved from widescope.css / inline page styling
   ========================================================= */

/* Prevent anchor links being hidden behind the fixed header */
[id] {
  scroll-margin-top: 120px;
}

/* General page introduction box */
.intro-box {
  background: #faf7f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 35px;
}

.intro-box p:last-child {
  margin-bottom: 0;
}

/* Treatment section headings */
.section-heading {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  text-decoration-color: #8a5d68;
}

/* Treatment cards */
.card-title {
  font-size: 1.2em;
  color: #6a832c;
  font-weight: 600;
}

.card-text {
  word-wrap: normal;
  font-weight: 700;
}

/* FAQ content */
.faq-question {
  font-weight: 700;
  margin-bottom: 8px;
}

/* Expandable treatment detail panel */
.tf-panel {
  display: none;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
}

.tf-panel.is-open {
  display: block;
}

.tf-panel .tf-close {
  float: right;
  margin-bottom: 10px;
}

.tf-variants {
  margin-top: 10px;
  font-size: 14px;
}

.tf-variants strong {
  display: block;
  margin-bottom: 6px;
}

.tf-pill {
  display: inline-block;
  margin: 3px 6px 3px 0;
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  line-height: 1.2;
}

/* Three-column booking options inside the intro panels */
.skin-booking-options-wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.skin-booking-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.skin-booking-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 700;
}

.skin-booking-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.skin-booking-footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.skin-booking-price {
  font-size: 24px;
  font-weight: 800;
  color: #8a5d68;
  line-height: 1;
  white-space: nowrap;
}

.skin-booking-card a {
  display: inline-block;
  background: #8a5d68;
  color: #fff;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.skin-booking-card a:hover,
.skin-booking-card a:focus {
  background: #704a54;
  color: #fff;
  text-decoration: none;
}

/* Text displayed underneath treatment sections */
.treatment-note {
  text-align: center;
  margin: 20px 0 35px;
  font-weight: 700;
}

/* Existing visibility helpers used by the treatment page */
.visibledevice {
  display: none;
}

.visibledesktop {
  display: block;
}

/* =========================================================
   Homepage Hero Slider V2
   Alternative client comparison version
   ========================================================= */

.bf-home-slider-section-v2 {
  width: 100%;
  padding: 0;
  margin-top: 0;
  background: #fff;
}

.bf-home-slider-v2 {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.bf-home-slider-v2 .carousel-inner,
.bf-home-slider-v2 .carousel-item {
  height: clamp(400px, 48vw, 400px);
}

.bf-home-slider-v2 .carousel-item {
  position: relative;
  overflow: hidden;
}

/* Main image */

.bf-hero-image-v2 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient behind the text */

.bf-hero-overlay-v2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(12, 17, 13, 0.80) 0%,
    rgba(12, 17, 13, 0.56) 38%,
    rgba(12, 17, 13, 0.14) 72%,
    rgba(12, 17, 13, 0.04) 100%
  );
}

/* Hero text */

.bf-hero-content-v2 {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 90px);
  bottom: clamp(45px, 7vw, 85px);
  width: min(620px, calc(100% - 56px));
  color: #fff;
}

.bf-hero-eyebrow-v2 {
  margin: 0 0 12px;
  color: #d9ef9f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.bf-hero-content-v2 h1,
.bf-hero-content-v2 h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 700;
}

.bf-hero-content-v2 p {
  max-width: 570px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

/* Button inside the hero */

.bf-hero-content-v2 .bf-btn {
  display: inline-block;
  background: #8a5d68;
  color: #fff;
  border: 1px solid #8a5d68;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.bf-hero-content-v2 .bf-btn:hover,
.bf-hero-content-v2 .bf-btn:focus {
  background: #704a54;
  border-color: #704a54;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Portrait photograph collage */

.bf-hero-collage-v2 {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  width: 100%;
  height: 100%;
}

.bf-hero-collage-image-v2 {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.bf-hero-collage-image-v2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bf-hero-collage-image-v2 + .bf-hero-collage-image-v2 {
  border-left: 4px solid rgba(255, 255, 255, 0.75);
}

/* Slider arrows */

.bf-home-slider-v2 .carousel-control-prev,
.bf-home-slider-v2 .carousel-control-next {
  z-index: 4;
  width: 7%;
  opacity: 0.85;
}

.bf-home-slider-v2 .carousel-control-prev:hover,
.bf-home-slider-v2 .carousel-control-next:hover {
  opacity: 1;
}

.bf-home-slider-v2 .carousel-control-prev-icon,
.bf-home-slider-v2 .carousel-control-next-icon {
  width: 34px;
  height: 34px;
}

/* Slider indicators */

.bf-home-slider-v2 .carousel-indicators {
  z-index: 5;
  margin-bottom: 20px;
}

.bf-home-slider-v2 .carousel-indicators li {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.55);
}

.bf-home-slider-v2 .carousel-indicators .active {
  background-color: #fff;
}

/* Optional positioning adjustments for particular images */

.bf-hero-position-left-v2 {
  object-position: left center;
}

.bf-hero-position-right-v2 {
  object-position: right center;
}

.bf-hero-position-top-v2 {
  object-position: center top;
}

.bf-hero-position-bottom-v2 {
  object-position: center bottom;
}


/* =========================================================
   Skin Treatments: subtle compact banner
   ========================================================= */

.bf-skin-banner-v2 {
  width: 100%;
  margin: 0 0 30px;
  padding: 0 24px;
  background: #fff;
}

.bf-skin-banner-carousel-v2 {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.bf-skin-banner-carousel-v2 .carousel-inner,
.bf-skin-banner-carousel-v2 .carousel-item {
  width: 100%;
  height: 100%;
}

.bf-skin-banner-image-v2 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bf-skin-banner-image-top-v2 {
  object-position: center 28%;
}

.bf-skin-banner-overlay-v2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.52);
}

.bf-skin-banner-content-v2 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100% - 70px));
  text-align: center;
  color: #fff;
}

.bf-skin-banner-eyebrow-v2 {
  margin: 0 auto 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.95);
}

.bf-skin-banner-content-v2 h1 {
  margin: 0 auto 12px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  font-weight: 700;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.95);
}

.bf-skin-banner-content-v2 p {
  margin: 0 auto 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.95);
}

.bf-skin-banner-content-v2 .bf-btn {
  display: inline-block;
  padding: 10px 19px;
  border-radius: 999px;
  background: #8a5d68;
  border: 1px solid #8a5d68;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.40);
}

.bf-skin-banner-content-v2 .bf-btn:hover,
.bf-skin-banner-content-v2 .bf-btn:focus {
  background: #704a54;
  border-color: #704a54;
  color: #fff;
  text-decoration: none;
}

.bf-skin-banner-carousel-v2.carousel-fade .carousel-item {
  transition: opacity 1.4s ease-in-out;
}

@media (max-width: 991px) {
  .bf-skin-banner-v2 {
    padding: 0 14px;
    margin-bottom: 26px;
  }

  .bf-skin-banner-carousel-v2 {
    height: 270px;
    border-radius: 0 0 14px 14px;
  }

  .bf-skin-banner-content-v2 {
    width: min(700px, calc(100% - 60px));
  }

  .bf-skin-banner-content-v2 h1 {
    font-size: clamp(27px, 4.5vw, 38px);
  }
}

@media (max-width: 767px) {
  .bf-skin-banner-v2 {
    padding: 0;
    margin-bottom: 22px;
  }

  .bf-skin-banner-carousel-v2 {
    height: 245px;
    border-radius: 0;
    box-shadow: none;
  }

  .bf-skin-banner-content-v2 {
    width: calc(100% - 44px);
  }

  .bf-skin-banner-content-v2 h1 {
    font-size: 28px;
  }

  .bf-skin-banner-content-v2 p {
    font-size: 14px;
    line-height: 1.45;
  }

  .bf-skin-banner-content-v2 .bf-btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .bf-skin-banner-carousel-v2 {
    height: 230px;
  }

  .bf-skin-banner-content-v2 {
    width: calc(100% - 32px);
  }

  .bf-skin-banner-content-v2 h1 {
    font-size: 25px;
  }

  .bf-skin-banner-content-v2 p {
    display: none;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .bf-home-slider-section-v2 {
    padding: 12px 14px 0;
  }

  .bf-home-slider-v2 {
    border-radius: 0 0 18px 18px;
  }

  .bf-home-slider-v2 .carousel-inner,
  .bf-home-slider-v2 .carousel-item {
    height: 500px;
  }

  .bf-hero-content-v2 {
    left: 44px;
    bottom: 65px;
    width: min(560px, calc(100% - 88px));
  }

  .bf-hero-collage-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .bf-hero-collage-image-v2:first-child {
    display: none;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .bf-home-slider-section-v2 {
    padding: 0;
  }

  .bf-home-slider-v2 {
    border-radius: 0;
    box-shadow: none;
  }

  .bf-home-slider-v2 .carousel-inner,
  .bf-home-slider-v2 .carousel-item {
    height: 520px;
  }

  .bf-hero-image-v2 {
    object-position: center;
  }

  .bf-hero-overlay-v2 {
    background: linear-gradient(
      to top,
      rgba(12, 17, 13, 0.9) 0%,
      rgba(12, 17, 13, 0.64) 52%,
      rgba(12, 17, 13, 0.14) 100%
    );
  }

  .bf-hero-content-v2 {
    left: 22px;
    right: 22px;
    bottom: 48px;
    width: auto;
  }

  .bf-hero-content-v2 h1,
  .bf-hero-content-v2 h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .bf-hero-content-v2 p {
    font-size: 15px;
    line-height: 1.55;
  }

  .bf-hero-content-v2 .bf-btn {
    padding: 11px 20px;
  }

  .bf-hero-collage-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .bf-hero-collage-image-v2:first-child {
    display: none;
  }

  .bf-hero-collage-image-v2 + .bf-hero-collage-image-v2 {
    border-left-width: 2px;
  }

  .bf-home-slider-v2 .carousel-control-prev,
  .bf-home-slider-v2 .carousel-control-next {
    width: 12%;
  }

  .bf-home-slider-v2 .carousel-indicators {
    margin-bottom: 16px;
  }

  .bf-home-slider-v2 .carousel-indicators li {
    width: 26px;
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .bf-home-slider-v2 .carousel-inner,
  .bf-home-slider-v2 .carousel-item {
    height: 500px;
  }

  .bf-hero-content-v2 {
    bottom: 42px;
  }

  .bf-hero-content-v2 p {
    margin-bottom: 18px;
  }
}


/* Tablet */
@media (max-width: 991px) {
  .skin-booking-options-wide {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 800px) {
  .visibledevice {
    display: block;
  }

  .visibledesktop {
    display: none;
  }
}

@media (max-width: 767px) {
  .intro-box {
    padding: 20px;
  }

  .skin-booking-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .skin-booking-card a {
    width: 100%;
    text-align: center;
  }

  .card-title {
    font-size: 1em;
  }

  .product-summary {
    font-size: 0.9em;
  }

  .card-text {
    font-size: 0.9em;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.bfmain .pb-5,
 .bfmain .py-5
{ padding-top: 3rem!important; }

/* =========================================================
   MAIN CONTENT CARD STYLING
   Keep at bottom so these styles win
   ========================================================= */

.bf-soft {
  background: #faf7f8 !important;
}

.bf-feature-panel {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 22px !important;
  padding: 38px !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

.bf-book-card {
  background: #faf7f8 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px !important;
  padding: 28px !important;
}

.bf-service-card {
  display: block;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

.bf-service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.bf-service-card > div {
  padding: 22px !important;
}

.bf-article-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

.bf-stat {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px !important;
  padding: 28px !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

.bf-treatment-card {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px !important;
  padding: 28px !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

.bf-cta-panel {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 22px !important;
  padding: 30px !important;
  text-align: center !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

.bf-pill-row span {
  background: #faf7f8 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 999px !important;
}

@media (max-width: 991px) {
  .bf-article-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .bf-feature-panel,
  .bf-article-content {
    padding: 28px !important;
  }
}

/* Final homepage call-to-action section */

.bf-cta {
  background: #fff;
  color: var(--bf-dark);
}

.bf-cta-panel {
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: 22px;
  padding: 42px 30px;
  text-align: center;
  box-shadow: var(--bf-shadow);
}

.bf-cta-panel .bf-eyebrow {
  color: var(--bf-plum);
  margin-bottom: 12px;
}

.bf-cta-panel h2 {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  color: var(--bf-plum-dark);
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.2;
  font-weight: 800;
}

.bf-cta-panel p:not(.bf-eyebrow) {
  color: var(--bf-text);
  font-size: 17px;
  margin: 0 0 24px;
}

.bf-cta-panel .bf-btn {
  display: inline-block;
  width: auto;
  background: var(--bf-plum);
  border: 1px solid var(--bf-plum);
  border-radius: 999px;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.bf-cta-panel .bf-btn:hover,
.bf-cta-panel .bf-btn:focus {
  background: var(--bf-plum-dark);
  border-color: var(--bf-plum-dark);
  color: #fff;
  text-decoration: none;
}

/* ==========================================================
   BEAUTY FACTORY NAVIGATION DROPDOWNS
   ========================================================== */

.bf-nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}


/* ----------------------------------------------------------
   Dropdown button
   ---------------------------------------------------------- */

.bf-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    color: #fff;
    font: inherit;
    font-weight: 600;
    letter-spacing: .2px;

    cursor: pointer;

    transition: color .25s ease;
}

.bf-nav-dropdown-toggle:hover,
.bf-nav-dropdown-toggle:focus {
    color: #f8ecef;
    outline: none;
}

.bf-nav-dropdown-toggle i {
    font-size: 9px;

    transition: transform .2s ease;
}

.bf-nav-dropdown.is-open .bf-nav-dropdown-toggle i {
    transform: rotate(180deg);
}


/* ----------------------------------------------------------
   Dropdown panel
   ---------------------------------------------------------- */

.bf-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 2000;

    min-width: 245px;
    padding: 8px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;

    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 8px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}


/* ----------------------------------------------------------
   Dropdown links
   ---------------------------------------------------------- */

.bf-nav .bf-nav-dropdown-menu a {
    display: block;
    width: 100%;

    padding: 11px 14px;

    border-radius: 8px;

    color: var(--bf-dark);

    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;

    white-space: nowrap;

    text-decoration: none;
}

.bf-nav .bf-nav-dropdown-menu a:hover,
.bf-nav .bf-nav-dropdown-menu a:focus {
    background: var(--bf-soft);
    color: var(--bf-plum);
    text-decoration: none;
}

/* ==========================================================
   DESKTOP
   ========================================================== */

@media (min-width: 992px) {

    .bf-nav-dropdown:hover .bf-nav-dropdown-menu,
    .bf-nav-dropdown:focus-within .bf-nav-dropdown-menu,
    .bf-nav-dropdown.is-open .bf-nav-dropdown-menu {

        opacity: 1;
        visibility: visible;

        transform: translate(-50%, 0);

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 991px) {

    .bf-nav-dropdown {
        display: block;

        width: 100%;
    }

    .bf-nav-dropdown-toggle {
        width: 100%;

        justify-content: space-between;
    }

    .bf-nav-dropdown-menu {
        position: static;

        display: none;

        min-width: 0;

        margin: 6px 0 4px;
        padding: 4px 0 4px 16px;

        background: transparent;

        border: 0;
        border-radius: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        transition: none;
    }

    .bf-nav-dropdown.is-open .bf-nav-dropdown-menu {
        display: block;
    }

    .bf-nav .bf-nav-dropdown-menu a {
        padding: 9px 0;

        white-space: normal;
    }

}

.bf-chatbot{position:fixed;right:22px;bottom:22px;z-index:9999;font-family:Inter,Arial,sans-serif}
.bf-chat-toggle{display:inline-flex;align-items:center;gap:9px;min-height:48px;padding:12px 19px;border:0;border-radius:999px;background:#8a5d68;color:#fff;font-size:14px;font-weight:700;cursor:pointer;box-shadow:0 10px 28px rgba(0,0,0,.18)}
.bf-chat-toggle:hover,.bf-chat-toggle:focus{background:#704a54;outline:none}
.bf-chat-panel{display:none;width:370px;max-width:calc(100vw - 30px);margin-bottom:12px;overflow:hidden;border:1px solid rgba(0,0,0,.10);border-radius:18px;background:#fff;box-shadow:0 18px 50px rgba(0,0,0,.20)}
.bf-chat-panel.is-open{display:block}
.bf-chat-header{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:16px 18px;background:#8a5d68;color:#fff}
.bf-chat-header-main{display:flex;align-items:center;gap:11px}
.bf-chat-avatar{display:flex;align-items:center;justify-content:center;width:38px;height:38px;flex:0 0 38px;border-radius:50%;background:rgba(255,255,255,.16)}
.bf-chat-header strong{display:block;font-size:14px;line-height:1.2}
.bf-chat-status{margin-top:3px;color:rgba(255,255,255,.82);font-size:11px}
.bf-chat-close{border:0;background:transparent;color:#fff;font-size:25px;line-height:1;cursor:pointer}
.bf-chat-messages{height:350px;overflow-y:auto;padding:16px;background:#faf7f8;scroll-behavior:smooth}
.bf-chat-message{max-width:88%;margin-bottom:12px;padding:10px 13px;border-radius:13px;font-size:13px;line-height:1.55;overflow-wrap:anywhere}
.bf-chat-message.bot{margin-right:auto;border:1px solid rgba(0,0,0,.07);border-bottom-left-radius:4px;background:#fff;color:#4e4e4e}
.bf-chat-message.user{margin-left:auto;border-bottom-right-radius:4px;background:#8a5d68;color:#fff}
.bf-chat-message a{display:inline-block;margin-top:7px;color:#704a54;font-weight:700;text-decoration:underline}
.bf-chat-quick{display:flex;gap:7px;padding:0 16px 12px;overflow-x:auto;background:#faf7f8}
.bf-chat-quick button{flex:0 0 auto;padding:7px 10px;border:1px solid rgba(138,93,104,.24);border-radius:999px;background:#fff;color:#704a54;font-size:11px;font-weight:700;cursor:pointer}
.bf-chat-form{display:flex;align-items:center;gap:8px;padding:12px;border-top:1px solid rgba(0,0,0,.07);background:#fff}
.bf-chat-question{flex:1;min-width:0;min-height:42px;padding:9px 12px;border:1px solid #ddd3d0;border-radius:10px;background:#fff;color:#333;font:inherit;font-size:13px}
.bf-chat-question:focus{border-color:#8a5d68;outline:0;box-shadow:0 0 0 3px rgba(138,93,104,.10)}
.bf-chat-send{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;flex:0 0 42px;border:0;border-radius:10px;background:#8a5d68;color:#fff;cursor:pointer}
.bf-chat-disclaimer{margin:0;padding:0 14px 12px;background:#fff;color:#888;font-size:10px;line-height:1.45}
.bf-chat-credit {
    margin: 0;
    padding: 7px 15px 10px;
    text-align: center;
    font-size: 10px;
    line-height: 1.3;
    color: #999;
}

.bf-chat-credit a {
    color: #8a5d68;
    font-weight: 600;
    text-decoration: none;
}

.bf-chat-credit a:hover,
.bf-chat-credit a:focus {
    text-decoration: underline;
}	


@media(max-width:600px){.bf-chatbot{right:12px;bottom:12px}.bf-chat-panel{width:calc(100vw - 24px);max-width:none}.bf-chat-messages{height:320px}.bf-chat-toggle-text{display:none}.bf-chat-toggle{width:50px;height:50px;padding:0;justify-content:center}}

/* ============================================================
   MOBILE NAV DROPDOWNS
   ============================================================ */

@media (max-width: 991px) {

    .bf-nav-dropdown-menu a {
        color: #fff !important;
        padding-left: 22px;
        font-size: 0.92em;
        opacity: 0.88;
    }

    .bf-nav-dropdown-menu a {
        color: #fff !important;
    }

    .bf-nav-dropdown-menu a:hover,
    .bf-nav-dropdown-menu a:focus {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.08);
    }

}
