/* =========================================================
   MONO LASH • BROW • NAIL — Main Stylesheet
   ========================================================= */

:root{
  --bg: #FFFDFC;
  --cream: #FAF3EF;
  --soft-pink: #FBE0E7;
  --pink: #E95B86;
  --dark-pink: #D94772;
  --gold: #D7A94A;
  --text: #4A3D3D;
  --text-secondary: #8C7D7D;
  --border: #EADFE0;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', 'Inter', sans-serif;

  --shadow-soft: 0 10px 30px rgba(74,61,61,0.06);
  --shadow-hover: 0 16px 40px rgba(217,71,114,0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif{
  font-family: var(--font-serif);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.2px;
}

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

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

::selection{ background: var(--soft-pink); color: var(--dark-pink); }

.container-xl{ max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.section{ padding: 90px 0; }
.section-sm{ padding: 56px 0; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 1px;
  background: var(--pink);
  display: inline-block;
}

.section-head{ margin-bottom: 44px; }
.section-head h2{ font-size: 2.4rem; margin-bottom: 10px; }
.section-head p{ color: var(--text-secondary); max-width: 560px; }
.section-head .see-all{
  font-size: 14px; font-weight: 600; color: var(--dark-pink);
  white-space: nowrap;
}
.section-head .see-all:hover{ color: var(--pink); }

/* ---------- Buttons ---------- */
.btn{
  border-radius: var(--radius-pill);
  padding: 13px 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all .25s ease;
  letter-spacing: .3px;
}
.btn-pink{
  background: var(--pink);
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(233,91,134,0.28);
}
.btn-pink:hover{ background: var(--dark-pink); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(217,71,114,0.32); }
.btn-outline-pink{
  background: transparent;
  border-color: var(--text);
  color: var(--text) !important;
}
.btn-outline-pink:hover{ border-color: var(--pink); color: var(--pink) !important; background: rgba(233,91,134,0.05); transform: translateY(-2px); }
.btn-white{
  background: var(--white);
  color: var(--text) !important;
  border-color: var(--border);
}
.btn-white:hover{ border-color: var(--pink); color: var(--pink) !important; }
.btn-gold{
  background: var(--gold);
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(215,169,74,0.30);
}
.btn-gold:hover{ background: #c39638; transform: translateY(-2px); }
.btn-sm{ padding: 9px 20px; font-size: 12.5px; }
.btn-block-w{ width: 100%; }

.icon-btn{
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--soft-pink);
  color: var(--dark-pink);
  border: none;
  transition: all .2s ease;
  flex-shrink: 0;
}
.icon-btn:hover{ background: var(--pink); color: var(--white); transform: scale(1.08); }

/* ---------- Navbar ---------- */
.navbar-mono{
  background: rgba(255,253,252,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  padding: 18px 0;
  transition: all .3s ease;
  z-index: 1000;
}
.navbar-mono.scrolled{
  padding: 12px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(74,61,61,0.05);
}
.navbar-mono .navbar-brand{
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 6px;
  font-weight: 700;
  color: var(--text) !important;
  line-height: 1;
}
.navbar-mono .brand-tagline{
  display: block;
  font-family: var(--font-sans);
  font-size: 8.5px;
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}
.navbar-mono .nav-link{
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin: 0 14px;
  position: relative;
  padding: 6px 0 !important;
}
.navbar-mono .nav-link::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .25s ease;
}
.navbar-mono .nav-link:hover{ color: var(--pink); }
.navbar-mono .nav-link:hover::after{ width: 100%; }
.navbar-mono .nav-link.active{ color: var(--pink); font-weight: 600; }
.navbar-mono .nav-link.active::after{ width: 100%; }
.navbar-mono .nav-cta{ display: flex; align-items: center; gap: 14px; }
.navbar-mono .user-icon{
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
}
.navbar-toggler{ border: none; padding: 4px; box-shadow: none !important; }
.navbar-toggler .bar{
  display:block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: all .25s ease;
}

@media (max-width: 991.98px){
  .navbar-mono .navbar-collapse{
    background: var(--white);
    margin-top: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
  }
  .navbar-mono .nav-link{ margin: 6px 0; }
  .navbar-mono .nav-cta{ margin-top: 12px; flex-direction: row; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 60px 0 70px;
  overflow: hidden;
}
.hero-shape{
  position: absolute;
  border-radius: 50%;
  background: var(--soft-pink);
  z-index: 0;
  opacity: .6;
}
.hero .eyebrow{ margin-top: 8px; }
.hero h1{
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero p.lead-text{
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 430px;
  margin-bottom: 32px;
}
.hero-btns{ display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
.hero-image-wrap img{ width: 100%; height: 440px; object-fit: cover; }
.badge-floating{
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  text-align: center;
  z-index: 2;
  border: 1px solid var(--border);
}
.badge-floating .crown{ color: var(--gold); font-size: 18px; margin-bottom: 3px; }
.badge-floating span{ font-size: 10px; font-weight: 600; letter-spacing: .5px; color: var(--text); line-height: 1.3; }

/* page hero (inner pages) */
.page-hero{
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero h1{ font-size: 2.7rem; margin-bottom: 10px; }
.page-hero p{ color: var(--text-secondary); max-width: 480px; }
.page-hero-img{
  position: absolute;
  top: 90px; right: -40px;
  width: 46%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.page-hero-img img{ width: 100%; height: 260px; object-fit: cover; }

/* ---------- Feature strip ---------- */
.feature-strip{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 28px 10px;
  margin-top: -10px;
  position: relative;
  z-index: 2;
}
.feature-item{
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px;
}
.feature-item .fi-icon{
  color: var(--gold); font-size: 20px; flex-shrink: 0;
}
.feature-item span{ font-size: 13.5px; font-weight: 600; color: var(--text); }

/* ---------- Cards: Treatment ---------- */
.treat-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
  height: 100%;
}
.treat-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--soft-pink); }
.treat-card .tc-img{ height: 150px; overflow: hidden; }
.treat-card .tc-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.treat-card:hover .tc-img img{ transform: scale(1.08); }
.treat-card .tc-body{ padding: 16px 16px 18px; }
.treat-card .tc-cat{ font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 4px; }
.treat-card .tc-name{ font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.treat-card .tc-desc{ font-size: 12.5px; color: var(--text-secondary); margin-bottom: 10px; min-height: 32px; }
.treat-card .tc-footer{ display: flex; align-items: center; justify-content: space-between; }
.treat-card .tc-price{ color: var(--pink); font-weight: 700; font-size: 14.5px; }
.treat-card .tc-price small{ display: block; color: var(--text-secondary); font-weight: 400; font-size: 10px; }

/* ---------- Membership banner (home) ---------- */
.member-banner{
  background: linear-gradient(120deg, var(--soft-pink), #fdecf1);
  border-radius: var(--radius-lg);
  padding: 52px;
  overflow: hidden;
  position: relative;
}
.member-banner h2{ font-size: 2rem; margin-bottom: 6px; }
.member-banner ul{ list-style: none; padding: 0; margin: 22px 0 28px; }
.member-banner ul li{
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin-bottom: 12px; color: var(--text);
}
.member-banner ul li::before{
  content: "✓";
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--pink); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.member-card-visual{
  background: linear-gradient(135deg, var(--pink), var(--dark-pink));
  border-radius: 20px;
  padding: 30px;
  color: var(--white);
  height: 210px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 40px rgba(217,71,114,0.3);
  position: relative;
  overflow: hidden;
}
.member-card-visual::after{
  content: "";
  position: absolute; right: -30px; top: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.member-card-visual .mc-logo{ font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 4px; }
.member-card-visual .mc-sub{ font-size: 10px; letter-spacing: 3px; opacity: .85; margin-top: 4px; }
.member-card-visual .mc-label{ font-size: 11px; letter-spacing: 2px; opacity: .9; }

/* ---------- Why choose ---------- */
.why-item{ text-align: center; padding: 20px 14px; }
.why-item .wi-icon{
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold); font-size: 22px;
}
.why-item h4{ font-size: 1rem; margin-bottom: 6px; }
.why-item p{ font-size: 12.5px; color: var(--text-secondary); }

/* ---------- Beautician cards ---------- */
.beautician-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
  height: 100%;
  position: relative;
}
.beautician-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.beautician-card .bc-img{ height: 200px; overflow: hidden; position: relative; }
.beautician-card .bc-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.beautician-card:hover .bc-img img{ transform: scale(1.07); }
.beautician-card .bc-fav{
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); border: none; font-size: 14px;
}
.beautician-card .bc-body{ padding: 16px; text-align: center; }
.beautician-card .bc-name{ font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 2px; }
.beautician-card .bc-role{ font-size: 11.5px; color: var(--text-secondary); margin-bottom: 6px; }
.beautician-card .bc-rating{ font-size: 12.5px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.beautician-card .bc-rating span{ color: var(--text-secondary); font-weight: 400; }
.beautician-card .bc-exp{ font-size: 11px; color: var(--text-secondary); margin-bottom: 12px; }

/* ---------- Filter pills ---------- */
.filter-pills{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-pill{
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px; font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all .2s ease;
}
.filter-pill:hover{ border-color: var(--pink); color: var(--pink); }
.filter-pill.active{ background: var(--pink); color: var(--white); border-color: var(--pink); }

/* ---------- Instagram section ---------- */
.insta-section{
  background: var(--soft-pink);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.insta-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 22px; }
.insta-grid a{ display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; }
.insta-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.insta-grid a:hover img{ transform: scale(1.1); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.site-footer .f-logo{
  font-family: var(--font-serif);
  font-size: 1.4rem; letter-spacing: 5px; margin-bottom: 4px;
}
.site-footer .f-tagline{ font-size: 10px; letter-spacing: 2px; color: var(--text-secondary); margin-bottom: 14px; }
.site-footer p{ font-size: 13px; color: var(--text-secondary); }
.site-footer h6{
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; margin-bottom: 18px; color: var(--text);
  font-family: var(--font-sans);
}
.site-footer ul{ list-style: none; padding: 0; margin: 0; }
.site-footer ul li{ margin-bottom: 10px; }
.site-footer ul li a{ font-size: 13.5px; color: var(--text-secondary); }
.site-footer ul li a:hover{ color: var(--pink); }
.site-footer .f-contact li{ display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-secondary); }
.site-footer .f-contact li i{ color: var(--pink); margin-top: 3px; }
.footer-socials{ display: flex; gap: 10px; margin-top: 18px; }
.footer-bottom{
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--pink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(233,91,134,0.35);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
  z-index: 999; border: none; font-size: 18px;
}
.back-to-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--dark-pink); }

/* ---------- Fade in ---------- */
.fade-in-up{ opacity: 0; transform: translateY(24px); transition: all .7s cubic-bezier(.2,.7,.3,1); }
.fade-in-up.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Treatment page layout ---------- */
.treatment-sidebar{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 110px;
}
.treatment-sidebar .cat-item{
  display: block; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--text); cursor: pointer;
  transition: all .2s ease;
}
.treatment-sidebar .cat-item:hover{ background: var(--cream); color: var(--pink); }
.treatment-sidebar .cat-item.active{ background: var(--pink); color: var(--white); }
.mobile-cat-tabs{ display: none; }

.consult-banner{
  background: var(--soft-pink);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.consult-banner h5{ font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 4px; }
.consult-banner p{ font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ---------- Membership pricing cards ---------- */
.price-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: all .3s ease;
  position: relative;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.price-card.featured{
  background: linear-gradient(160deg, #fff9ec, #fdf3df);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(215,169,74,0.18);
  transform: scale(1.03);
}
.price-card .plan-name{ font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px; }
.price-card.featured .plan-name{ color: var(--gold); }
.price-card .plan-price{ font-family: var(--font-serif); font-size: 2.1rem; margin-bottom: 4px; }
.price-card .plan-period{ font-size: 12px; color: var(--text-secondary); margin-bottom: 22px; display: block; }
.price-card ul{ list-style: none; padding: 0; margin: 0 0 26px; }
.price-card ul li{ display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; margin-bottom: 13px; color: var(--text); }
.price-card ul li i{ color: var(--pink); margin-top: 3px; font-size: 12px; }
.price-card.featured ul li i{ color: var(--gold); }
.price-badge{
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 16px; border-radius: var(--radius-pill);
}

.how-it-works{ display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-top: 20px; }
.hiw-step{ text-align: center; flex: 1; min-width: 160px; }
.hiw-step .hiw-icon{
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--soft-pink); color: var(--dark-pink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 20px;
}
.hiw-step h6{ font-size: 13.5px; font-weight: 600; margin-bottom: 4px; }
.hiw-step p{ font-size: 12px; color: var(--text-secondary); margin: 0; }

/* ---------- Promo cards ---------- */
.promo-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
  height: 100%;
}
.promo-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.promo-card .pc-img{ height: 170px; position: relative; overflow: hidden; }
.promo-card .pc-img img{ width: 100%; height: 100%; object-fit: cover; }
.promo-card .pc-tag{
  position: absolute; top: 14px; left: 14px;
  background: var(--dark-pink); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-pill);
}
.promo-card .pc-body{ padding: 18px 18px 22px; }
.promo-card .pc-title{ font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 4px; }
.promo-card .pc-period{ font-size: 11.5px; color: var(--text-secondary); margin-bottom: 12px; }
.promo-card .pc-price-row{ display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.promo-card .pc-old{ font-size: 12.5px; color: var(--text-secondary); text-decoration: line-through; }
.promo-card .pc-new{ font-size: 1.15rem; color: var(--pink); font-weight: 700; }

.announce-banner{
  background: linear-gradient(120deg, var(--pink), var(--dark-pink));
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--white);
}
.announce-banner h5{ color: var(--white); font-size: 1.05rem; margin: 0; }

/* ---------- About page ---------- */
.about-list{ list-style: none; padding: 0; margin: 22px 0 30px; }
.about-list li{ display: flex; gap: 12px; align-items: center; font-size: 14.5px; margin-bottom: 14px; }
.about-list li i{ color: var(--pink); }
.about-img-wrap{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-img-wrap img{ width: 100%; height: 460px; object-fit: cover; }
.stats-row{ text-align: center; }
.stat-item h3{ font-size: 2.4rem; color: var(--pink); margin-bottom: 4px; }
.stat-item h3 .stat-star{ color: var(--gold); font-size: 1.6rem; }
.stat-item p{ font-size: 12.5px; color: var(--text-secondary); letter-spacing: .3px; }

/* ---------- Booking Modal ---------- */
.modal-mono .modal-content{
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
}
.modal-mono .modal-header{
  background: var(--soft-pink);
  border-bottom: none;
  padding: 24px 28px;
}
.modal-mono .modal-title{ font-family: var(--font-serif); font-size: 1.4rem; }
.modal-mono .modal-body{ padding: 28px; }
.modal-mono .form-label{ font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.modal-mono .form-control, .modal-mono .form-select, .modal-mono textarea.form-control{
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 11px 14px;
  font-size: 13.5px;
  background: var(--bg);
}
.modal-mono .form-control:focus, .modal-mono .form-select:focus{
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,91,134,0.12);
  background: var(--white);
}
.booking-success{
  display: none;
  text-align: center;
  padding: 20px 0 10px;
}
.booking-success .bs-icon{
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--soft-pink); color: var(--dark-pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 18px;
}
.booking-success h4{ margin-bottom: 8px; }
.booking-success p{ color: var(--text-secondary); font-size: 13.5px; }

/* ---------- Toast ---------- */
.mono-toast{
  position: fixed; top: 100px; right: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm);
  padding: 14px 20px; box-shadow: var(--shadow-soft);
  z-index: 2000; font-size: 13.5px; font-weight: 500;
  transform: translateX(120%); transition: transform .35s ease;
}
.mono-toast.show{ transform: translateX(0); }

/* ---------- Misc ---------- */
.divider-soft{ border-color: var(--border); opacity: 1; }
.no-scroll{ overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px){
  .hero h1{ font-size: 2.5rem; }
  .section{ padding: 64px 0; }
  .page-hero{ padding: 130px 0 44px; }
  .page-hero-img{ position: static; width: 100%; margin-top: 26px; }
  .page-hero-img img{ height: 220px; }
  .insta-grid{ grid-template-columns: repeat(2, 1fr); }
  .price-card.featured{ transform: scale(1); }
  .treatment-sidebar{ display: none; }
  .mobile-cat-tabs{
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-cat-tabs::-webkit-scrollbar{ display: none; }
  .mobile-cat-tabs .cat-item{
    white-space: nowrap; padding: 10px 20px; border-radius: var(--radius-pill);
    background: var(--white); border: 1px solid var(--border); font-size: 13px; font-weight: 500;
  }
  .mobile-cat-tabs .cat-item.active{ background: var(--pink); color: var(--white); border-color: var(--pink); }
  .how-it-works{ flex-direction: column; }
}

@media (max-width: 767.98px){
  .hero{ padding: 40px 0 50px; text-align: left; }
  .hero h1{ font-size: 2.1rem; }
  .hero .row{ flex-direction: column-reverse; }
  .hero-image-wrap{ margin-bottom: 26px; }
  .hero-image-wrap img{ height: 300px; }
  .badge-floating{ width: 82px; height: 82px; bottom: -16px; left: -12px; }
  .section-head h2{ font-size: 1.9rem; }
  .section{ padding: 50px 0; }
  .member-banner{ padding: 32px 22px; text-align: center; }
  .member-banner .row{ flex-direction: column-reverse; }
  .member-card-visual{ margin-bottom: 26px; height: 180px; }
  .insta-grid{ grid-template-columns: repeat(2, 1fr); }
  .insta-section{ padding: 30px 20px; }
  .about-img-wrap img{ height: 280px; }
  .stats-row .col-6{ margin-bottom: 24px; }
  .consult-banner{ text-align: center; justify-content: center; }
  .announce-banner{ text-align: center; justify-content: center; }
  .page-hero h1{ font-size: 2.1rem; }
  .footer-accordion .f-col-body{ display: none; padding-top: 6px; }
  .footer-accordion .f-col.open .f-col-body{ display: block; }
  .footer-accordion .f-col-head{
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; padding: 14px 0; border-bottom: 1px solid var(--border);
  }
  .footer-accordion .f-col-head h6{ margin-bottom: 0; }
  .footer-accordion .f-col-head i{ transition: transform .25s ease; color: var(--text-secondary); }
  .footer-accordion .f-col.open .f-col-head i{ transform: rotate(180deg); }
}

@media (max-width: 420px){
  .hero h1{ font-size: 1.85rem; }
  .navbar-mono .navbar-brand{ font-size: 1.4rem; letter-spacing: 4px; }
  .btn{ padding: 12px 22px; font-size: 13px; }
  .section-head h2{ font-size: 1.6rem; }
}
