/* ============================================================
   Bade Beauty — Overrides on top of home-5 base theme CSS
   Theme: home-5 base original  |  Primary: #FB3189 (pink)
   --color-* vars are injected by meta.php from config/theme.php
============================================================ */
/* :root --color-* tokens are set via inline <style> in meta.php — do NOT redeclare here */

html, body { background: #fff; }

/* ---- Disable base heading-wrapper pre-animation states ---- */
/* .text-anime-style-* intentionally NOT suppressed — SplitText + GSAP handle them */
.heading1, .heading2, .heading3, .heading4, .heading5, .heading6,
.heading7, .heading8, .heading9, .heading10
{ transform: none !important; opacity: 1 !important; visibility: visible !important; }
/* .reveal — Theme default is visibility:hidden until GSAP runs; force visible as
   safety net so images always show even if GSAP timing fails. The slide-in
   animation in home.php still wins when it runs. */
.reveal { visibility: visible !important; }
/* AOS animations enabled — suppressor removed */

/* ---- Demo notice bar ---- */
.beauty-demo-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  position: relative;
  z-index: 1002;
}
.beauty-demo-bar a { color: #fff; text-decoration: underline; }

/* ---- Header ---- */
.header-area.header-sticky { top: 0; }
body { padding-top: 0; }
.site-logo img { height: 46px; width: auto; }
.site-logo, .site-logo a { display: inline-flex; align-items: center; flex-shrink: 0; }
/* Brand text next to logo image (logo + "BadeBeauty"/"BadeNursery") */
.site-logo__link { text-decoration: none !important; gap: 8px; }
.site-logo__text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -.01em;
  white-space: nowrap;
  line-height: 1;
}
.site-logo__text strong { color: var(--color-primary); font-weight: 700; }
@media (max-width: 575px) {
  .site-logo__text { font-size: 17px; }
}


/* ---- Main menu: force horizontal, no bullets ---- */
.main-menu ul {
  display: flex !important;
  align-items: center;
  list-style: none !important;
  margin: 0 !important; padding: 0 !important;
  gap: 2px;
}
.main-menu ul li { list-style: none !important; display: inline-flex !important; align-items: center; }
.main-menu ul li a {
  display: inline-block; padding: 8px 12px;
  font-size: 14px; font-weight: 600; color: #333;
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.main-menu ul li.current-menu-item > a,
.main-menu ul li > a:hover { color: var(--color-primary) !important; }

/* ---- Buttons: Theme native vars handle header-btn4/btn5 automatically.
   We only override beauty-specific buttons (btn9, btn10) below. ---- */

/* header-btn9 (solid primary) — kill UA-default <button> border + blue focus ring */
.header-btn9 {
  background: var(--color-primary) !important;
  color: #fff !important;
  white-space: nowrap;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.header-btn9:focus, .header-btn9:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(251,49,137,.25) !important;
}
.header-btn9:hover { background: var(--color-accent) !important; }
.header-btn9::after { background-color: var(--color-accent) !important; }

/* header-btn4 / btn2 — kill blue focus ring on the hero CTA <a> button */
.header-btn4, .header-btn4.btn2, .header-btn5 {
  outline: none !important;
}
.header-btn4:focus, .header-btn4:focus-visible,
.header-btn4.btn2:focus, .header-btn4.btn2:focus-visible,
.header-btn5:focus, .header-btn5:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(251,49,137,.25) !important;
}

/* header-btn10 (outline) */
.header-btn10 {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}
.header-btn10:hover { color: #fff !important; }
.header-btn10::after { background: var(--color-primary) !important; }

/* CTA white button */
.beauty-cta-btn-white {
  display: inline-block;
  background: #fff;
  color: var(--color-primary) !important;
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.beauty-cta-btn-white:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ---- Lang switcher (matches main badestudio site) ---- */
.beauty-lang-toggle {
  background: transparent;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #333;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.beauty-lang-toggle:hover,
.beauty-lang-toggle:focus { border-color: var(--color-primary); color: var(--color-primary); outline: none; }
.beauty-lang-toggle::after { display: none; } /* kill bootstrap caret */

.beauty-lang-menu {
  min-width: 160px;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  margin-top: 6px;
}
.beauty-lang-menu li { list-style: none; }
.beauty-lang-menu .dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  transition: background .15s;
}
.beauty-lang-menu .dropdown-item:hover {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
}
.beauty-lang-menu .dropdown-item.active {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
}

/* ---- Mobile menu ---- */
.beauty-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 99998;
}
.beauty-overlay.open { display: block; }
/* Hide header logo + burger when mobile menu open so they don't show through */
@media (max-width: 991.98px) {
  body.mobile-menu-open .header-area .site-logo,
  body.mobile-menu-open .header-area .mobile-bar-wrap { visibility: hidden; }
}
.beauty-mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: min(320px,88vw); height: 100vh;
  background: #fff; z-index: 99999;
  overflow-y: auto;
  box-shadow: 4px 0 32px rgba(0,0,0,.14);
  transition: left .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 24px 24px 40px;
}
.beauty-mobile-menu.open { left: 0; }
.beauty-mobile-close {
  align-self: flex-end; font-size: 22px; color: #888;
  padding: 4px; margin-bottom: 12px; background: none; border: none; cursor: pointer;
}
.beauty-mobile-logo { margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px; }
.beauty-mobile-logo img { height: 40px; width: auto; }
.beauty-mobile-logo .site-logo__text { font-size: 18px; }
.beauty-mobile-menu nav a {
  display: block; padding: 14px 0;
  font-size: 16px; font-weight: 600; color: #1C1C23;
  border-bottom: 1px solid #f0f0f0; text-decoration: none;
}
.beauty-mobile-menu nav a.active { color: var(--color-primary); }
.beauty-mobile-menu nav a:hover { color: var(--color-primary); }
.beauty-mobile-langs { display: flex; gap: 8px; margin-top: 20px; }
.beauty-mobile-langs a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 10px 6px; border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 13px; font-weight: 700; color: #333; text-decoration: none;
}
.beauty-mobile-langs a.current { border-color: var(--color-primary); color: var(--color-primary); }

/* ============================================================
   HERO (hero3-section-area — matches home-5 base exactly)
============================================================ */
/* Badge h5 — replace plain pink text with a proper pill badge */
.hero3-section-area .heading5 h5 {
  background: rgba(251,49,137,.1);
  border: 1px solid rgba(251,49,137,.25);
  color: var(--color-primary) !important;
  border-radius: 100px !important;
  padding: 6px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .3px;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}
.hero3-section-area .heading5 h5::after { display: none; }

/* Floating trust badges over the hero image */
.beauty-hero-badge {
  position: absolute;
  background: #fff; border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  min-width: 100px; z-index: 2;
}
.beauty-hero-badge--tl { bottom: 30px; left: -16px; }
.beauty-hero-badge--tr { top: 24px; right: -16px; }
.beauty-hero-badge__num { font-size: 22px; font-weight: 900; color: var(--color-primary); line-height: 1; }
.beauty-hero-badge__label { font-size: 11px; color: #888; }
@media (max-width: 767px) { .beauty-hero-badge { display: none; } }

/* ============================================================
   STATS STRIP
============================================================ */
.beauty-stats-strip {
  background: #27115a;
  position: relative;
  overflow: hidden;
}
/* subtle centre glow */
.beauty-stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(251,49,137,.18) 0%, transparent 65%);
  pointer-events: none;
}

.beauty-stat-box {
  padding: 44px 24px 40px;
  text-align: center;
  position: relative;
  transition: background .25s;
}
.beauty-stat-box:hover { background: rgba(255,255,255,.03); }

/* right divider (vertical line between boxes) */
.beauty-stat-box--sep::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent);
}

/* icon circle */
.beauty-stat-box__icon-wrap {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(251,49,137,.22);
  border: 1.5px solid rgba(251,49,137,.5);
  box-shadow: 0 0 16px rgba(251,49,137,.2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.beauty-stat-box:hover .beauty-stat-box__icon-wrap {
  transform: translateY(-4px);
  background: rgba(251,49,137,.38);
  box-shadow: 0 0 28px rgba(251,49,137,.35);
}
.beauty-stat-box__icon-wrap i {
  font-size: 20px;
  color: var(--color-primary);
}

/* value */
.beauty-stat-box__val {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

/* label */
.beauty-stat-box__label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 5px;
}

/* sub-label */
.beauty-stat-box__sub {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .beauty-stat-box { padding: 32px 16px; }
  .beauty-stat-box--sep::after { display: none; }
  .beauty-stat-box { border-bottom: 1px solid rgba(255,255,255,.07); }
  .beauty-stat-box:last-child { border-bottom: none; }
}

/* ============================================================
   SERVICE 5
============================================================ */
.service5-section-area .service-author-boxarea {
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.service5-section-area .service-author-boxarea:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.service5-section-area .service-author-boxarea .img1 {
  border-radius: 120px 120px 14px 14px;
  overflow: hidden;
  height: 220px;
}
.service5-section-area .service-author-boxarea .img1 img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 120px 120px 14px 14px;
  transition: transform .4s;
}
.service5-section-area .service-author-boxarea:hover .img1 img {
  transform: scale(1.06) rotate(-2deg);
}
.service5-section-area .service-author-boxarea .content-area a {
  font-size: 20px; font-weight: 700;
  color: var(--color-dark); display: block; margin-bottom: 10px;
  text-decoration: none; transition: color .2s;
}
.service5-section-area .service-author-boxarea .content-area a:hover { color: var(--color-primary); }
.service5-section-area .service-author-boxarea .content-area p {
  font-size: 14.5px; color: #555; line-height: 1.7; margin: 0;
}

/* Equal-height service cards on home page (so ES longer copy doesn't break alignment) */
.service3-section-area .row.g-4 > [class*="col-"] { display: flex; }
.service3-section-area .row.g-4 > [class*="col-"] > .service2-boxarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* Section eyebrow heading */
.beauty-section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 12px;
}
.beauty-section-sub {
  font-size: 17px; color: #666;
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ============================================================
   ABOUT 15
============================================================ */
.about15-section-area .about15-header-area .list-area ul {
  list-style: none; padding: 0; margin: 0;
}
.about15-section-area .about15-header-area .list-area li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: #444; line-height: 1.6;
  margin-bottom: 12px;
}
.about15-section-area .about15-header-area .list-area li i {
  color: var(--color-primary); flex-shrink: 0; margin-top: 2px;
}

/* ============================================================
   PARENT PORTAL SECTION
============================================================ */
.beauty-parent-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
}
.beauty-parent-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/bg/cta-bg1.png') center/cover no-repeat;
  opacity: .05;
}

.beauty-parent-perks {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px;
}
.beauty-parent-perk {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px; font-weight: 600; color: #fff;
}
.beauty-parent-perk i { color: rgba(255,255,255,.9); }

.beauty-parent-form-card {
  background: #fff; border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.beauty-parent-form-card h4 {
  font-size: 20px; font-weight: 800; color: var(--color-dark); margin-bottom: 24px;
}

/* ============================================================
   INPUTS (shared)
============================================================ */
.beauty-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 15px; outline: none; background: #fafafa;
  color: #333; font-family: inherit;
  transition: border-color .2s;
}
.beauty-input:focus { border-color: var(--color-primary); background: #fff; box-shadow: 0 0 0 3px rgba(255,140,66,.1); }
.beauty-parent-form-card label,
.beauty-contact-form-card label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--color-dark); margin-bottom: 6px;
}

/* ============================================================
   TESTIMONIALS 5
============================================================ */
.beauty-review-card5 {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 28px 24px; height: 100%;
  transition: background .3s;
}
.beauty-review-card5:hover { background: rgba(255,255,255,.1); }
.beauty-review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.beauty-review-stars i { color: #FFD700; font-size: 14px; }
.beauty-review-card5 .single-testimonial h5 {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.9);
  font-weight: 400; font-style: italic;
}
.beauty-review-card5 .author {
  margin-top: 24px; display: flex; align-items: center; gap: 14px;
}
.beauty-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; flex-shrink: 0;
}
.beauty-review-card5 .author a {
  display: block; font-size: 15px; font-weight: 700;
  color: #fff; text-decoration: none;
}
.beauty-review-card5 .author p {
  font-size: 13px; color: rgba(255,255,255,.55); margin: 4px 0 0;
}

/* ============================================================
   BLOG 3 (homepage + blog index) — uniform card image height
   Without this, small source images render small and break the row alignment.
============================================================ */
.blog2-author-boxarea .img1 {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}
.blog2-author-boxarea .img1 a,
.blog2-author-boxarea .img1 img {
  width: 100%;
  height: 100%;
  display: block;
}
.blog2-author-boxarea .img1 img {
  object-fit: cover;
  object-position: center;
}
@supports not (aspect-ratio: 16 / 10) {
  .blog2-author-boxarea .img1 { height: 260px; }
}

/* ============================================================
   BLOG 5
============================================================ */
.blog5-section-area .blog-all-section .imges1 img {
  width: 100%; border-radius: 16px;
  object-fit: cover; display: block;
}
.blog5-section-area .blog-all-section .content-area {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 0 8px;
}
.blog5-section-area .blog-all-section .main-content { flex: 1; }
.blog5-section-area .blog-all-section .main-content h5 {
  font-size: 13px; font-weight: 600; color: #888;
  background: rgba(28,28,35,.06); border-radius: 4px;
  padding: 5px 10px; display: inline-block; margin-bottom: 16px;
}
.blog5-section-area .blog-all-section .main-content a {
  font-size: 20px; line-height: 1.4; font-weight: 700;
  color: var(--color-dark); display: block; margin-bottom: 14px;
  text-decoration: none; transition: color .2s;
}
.blog5-section-area .blog-all-section .main-content a:hover { color: var(--color-primary); }
.blog5-section-area .blog-all-section .main-content a.text {
  font-size: 14px; font-weight: 600; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.blog5-section-area .blog-all-section .arrow a {
  width: 52px; height: 52px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-primary); border-radius: 50%;
  color: var(--color-primary); font-size: 18px;
  transform: rotate(-45deg); transition: background .2s, color .2s;
  text-decoration: none;
}
.blog5-section-area .blog-all-section .arrow a:hover {
  background: var(--color-primary); color: #fff;
}
.blog5-divider { border-top: 1px solid #eee; padding-top: 50px; }

/* ============================================================
   CONTACT SECTION (homepage)
============================================================ */
.beauty-contact-info-rows { margin-top: 28px; }
.beauty-contact-info-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 14px; color: #555;
}
.beauty-contact-info-row i { color: var(--color-primary); width: 18px; flex-shrink: 0; margin-top: 2px; }
.beauty-contact-info-row a { color: #555; text-decoration: none; }
.beauty-contact-info-row a:hover { color: var(--color-primary); }

.beauty-contact-form-card {
  background: #fff; border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
@media (max-width: 767px) {
  .beauty-contact-form-card, .beauty-parent-form-card { padding: 24px 20px; }
}

/* ============================================================
   FOOTER 5 — white background
============================================================ */
.beauty-footer5 { background: #fff; color: #555; padding: 72px 0 0; border-top: 1px solid #eee; }
.beauty-footer5 img { filter: none !important; } /* logo: show dark version, no brightness hack */
.beauty-footer5 h6 { color: var(--color-dark); font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.beauty-footer5 ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.beauty-footer5 ul li { font-size: 14px; }
.beauty-footer5 ul li a { color: #555; text-decoration: none; transition: color .2s; }
.beauty-footer5 ul li:not(:has(a)) { color: #555; }
.beauty-footer5 ul li a:hover { color: var(--color-primary); }

.beauty-footer5-contact > div {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #555; margin-bottom: 10px;
}
.beauty-footer5-contact i { color: var(--color-primary); width: 16px; flex-shrink: 0; margin-top: 2px; }
.beauty-footer5-contact a { color: #555; text-decoration: none; transition: color .2s; }
.beauty-footer5-contact a:hover { color: var(--color-primary); }

/* Override inline colour on tagline and subscribe-note paragraphs */
.beauty-footer5 p[style*="color:#aaa"] { color: #666 !important; }
/* Override the almost-invisible white hr */
.beauty-footer5 hr { border-color: #eee !important; }

.beauty-footer5-subscribe {
  display: flex; gap: 0; border-radius: 8px; overflow: hidden;
  border: 1.5px solid #ddd;
}
.beauty-footer5-subscribe input {
  flex: 1; padding: 12px 16px;
  background: #f8f8f8; border: none; outline: none;
  color: #333; font-size: 14px; font-family: inherit;
}
.beauty-footer5-subscribe input::placeholder { color: #aaa; }
.beauty-footer5-subscribe button {
  padding: 12px 18px; background: var(--color-primary);
  border: none; color: #fff; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
.beauty-footer5-subscribe button:hover { background: var(--color-accent); }

.beauty-footer5-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: #888;
  padding: 24px 0;
  border-top: 1px solid #eee;
  margin-top: 40px;
}
.beauty-footer5-bottom a { color: var(--color-primary); text-decoration: none; }

/* ============================================================
   STICKY SUBSCRIBE BAR
============================================================ */
.beauty-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  z-index: 1500;
  flex-wrap: wrap;
}
.beauty-sticky-bar__inner {
  display: flex; align-items: center; gap: 14px; flex: 1; flex-wrap: wrap;
  max-width: 800px;
}
.beauty-sticky-bar__text {
  font-size: 15px; font-weight: 600; color: var(--color-dark);
  flex-shrink: 0;
}
.beauty-sticky-bar__form {
  display: flex; gap: 0; flex: 1; min-width: 260px;
  border-radius: 8px; overflow: hidden;
  border: 1.5px solid #ddd;
}
.beauty-sticky-bar__form input {
  flex: 1; padding: 10px 14px;
  border: none; outline: none; font-size: 14px;
  background: #fff; color: #333; font-family: inherit;
}
.beauty-sticky-bar__form button {
  padding: 10px 18px; background: var(--color-primary);
  border: none; color: #fff; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
.beauty-sticky-bar__form button:hover { background: var(--color-accent); }
.beauty-sticky-bar__close {
  background: none; border: none; cursor: pointer;
  color: #888; font-size: 18px; padding: 4px 8px;
  flex-shrink: 0; transition: color .2s;
}
.beauty-sticky-bar__close:hover { color: var(--color-dark); }
@media (max-width: 575px) {
  .beauty-sticky-bar__text { font-size: 13px; }
  .beauty-sticky-bar { padding: 12px 16px; }
}
/* Mobile/tablet: keep the sticky subscribe bar but compress it so it doesn't
   eat the screen. Hide the long descriptive text — just show the form +
   close button. The FAB lifts above it (handled in the FAB media block). */
@media (max-width: 991.98px) {
  .beauty-sticky-bar { padding: 8px 12px; gap: 8px; }
  .beauty-sticky-bar__text { display: none; }
  .beauty-sticky-bar__inner { gap: 8px; max-width: 100%; }
  .beauty-sticky-bar__form { min-width: 0; flex: 1; }
  .beauty-sticky-bar__form input { padding: 9px 12px; font-size: 13px; }
  .beauty-sticky-bar__form button { padding: 9px 14px; font-size: 12px; }
  .beauty-sticky-bar__close { padding: 4px 6px; font-size: 16px; }
}

/* ============================================================
   INNER PAGE COMPONENTS (reused from other pages)
============================================================ */
.section-padding { padding: 88px 0; }
/* Header is position:absolute (z-index:9999) so it overlaps page content.
   Inner-hero needs ~header-height extra top padding so the title isn't tucked under it. */
.inner-hero { background: var(--color-secondary); padding: 140px 0 72px; text-align: center; }
@media (max-width: 991.98px) {
  .inner-hero { padding: 110px 0 56px; }
}
.inner-hero h1 { font-size: clamp(28px,4vw,48px); font-weight: 900; color: var(--color-dark); margin-bottom: 12px; }
.inner-hero p { font-size: 17px; color: #666; max-width: 600px; margin: 0 auto; }

.beauty-eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 12px;
}

/* Old hero styles (kept for other pages that may use them) */
.beauty-hero { background: var(--color-secondary); padding: 72px 0 56px; overflow: hidden; }
.beauty-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px; min-height: 480px;
}
.beauty-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid #FFD5B0; border-radius: 100px;
  padding: 6px 16px; font-size: 13px; font-weight: 700; color: #1C1C23; margin-bottom: 22px;
}
.beauty-hero__headline { font-size: clamp(36px,4.5vw,56px); font-weight: 900; line-height: 1.1; letter-spacing: -.03em; color: var(--color-dark); margin-bottom: 18px; }
.beauty-hero__sub { font-size: 18px; color: #666; line-height: 1.75; margin-bottom: 32px; }
.beauty-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.beauty-hero__trust { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: #666; font-weight: 500; }
.beauty-hero__trust span { display: flex; align-items: center; gap: 6px; }
.beauty-hero__trust i { color: var(--color-primary); }
.beauty-hero__visual { position: relative; }
.beauty-hero__img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 24px; }
.hero-bubble {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 8px 28px rgba(0,0,0,.12);
  display: flex; flex-direction: column; align-items: center; min-width: 110px; gap: 2px;
}
.hero-bubble--1 { bottom: 28px; left: -20px; }
.hero-bubble--2 { top: 24px; right: -20px; }
.hero-bubble__num { font-size: 24px; font-weight: 900; color: var(--color-primary); line-height: 1; }
.hero-bubble__label { font-size: 11px; color: #888; }

/* Age cards */
.age-card { background: #fff; border: 1.5px solid #eee; border-radius: 20px; padding: 32px 28px; height: 100%; transition: box-shadow .25s, transform .25s, border-color .25s; }
.age-card:hover { box-shadow: 0 12px 32px rgba(255,140,66,.15); transform: translateY(-4px); border-color: #FFD5B0; }
.age-card__icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 16px; }
.age-card__badge { display: inline-block; background: var(--color-secondary); color: var(--color-primary); font-size: 12px; font-weight: 700; border-radius: 100px; padding: 4px 12px; margin-bottom: 10px; }
.age-card__title { font-size: 22px; font-weight: 700; color: var(--color-dark); margin-bottom: 10px; }
.age-card__desc { font-size: 14.5px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.age-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-primary); font-weight: 700; font-size: 14px; transition: gap .2s; text-decoration: none; }
.age-card__link:hover { gap: 10px; }

/* About stats */
.stat-box { background: #f7f7f8; border: 1px solid #eee; border-radius: 14px; padding: 20px 16px; text-align: center; height: 100%; }
.stat-box__val { font-size: 28px; font-weight: 900; color: var(--color-primary); line-height: 1; margin-bottom: 4px; }
.stat-box__label { font-size: 12.5px; color: #888; font-weight: 500; }

/* Why section */
.why-section { background: var(--color-dark); }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: 18px; padding: 32px 24px; height: 100%; transition: background .25s; }
.why-card:hover { background: rgba(255,255,255,.08); }
.why-card__icon { width: 54px; height: 54px; background: var(--color-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin-bottom: 18px; }
.why-card__title { font-size: 18px; color: #fff; margin-bottom: 10px; font-weight: 700; }
.why-card__text { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.7; margin: 0; }

/* Review cards (old style, kept for reviews page) */
.review-card { background: #fff; border: 1.5px solid #eee; border-radius: 18px; padding: 28px 24px; height: 100%; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.review-card__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card__stars i { color: #FFD700; font-size: 14px; }
.review-card__text { font-size: 15px; color: #444; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; flex-shrink: 0; }
.review-card__name { font-size: 14px; font-weight: 700; color: var(--color-dark); display: block; }
.review-card__role { font-size: 12px; color: #888; display: block; }

/* Blog cards (for /blog page) */
.blog-card { background: #fff; border: 1.5px solid #eee; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: box-shadow .25s, transform .25s; }
.blog-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.blog-card__img-wrap { overflow: hidden; }
.blog-card__img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: #888; margin-bottom: 12px; }
.blog-card__meta i { color: var(--color-primary); margin-right: 3px; }
.blog-card__title { font-size: 18px; font-weight: 700; color: var(--color-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--color-primary); }
.blog-card__excerpt { font-size: 14px; color: #666; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-primary); font-weight: 700; font-size: 14px; text-decoration: none; transition: gap .2s; }
.blog-card__link:hover { gap: 10px; }

/* Subscribe strip (kept for other pages) */
.subscribe-section { background: var(--color-secondary); padding: 64px 0; }
.subscribe-section h3 { font-size: 28px; font-weight: 800; color: var(--color-dark); margin-bottom: 8px; }
.subscribe-input { flex: 1; min-width: 200px; padding: 14px 18px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 15px; outline: none; background: #fff; color: #333; transition: border-color .2s; }
.subscribe-input:focus { border-color: var(--color-primary); }

/* Outline btn variant */
.btn-beauty-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; background: transparent !important; color: var(--color-primary) !important; border: 2px solid var(--color-primary) !important; text-decoration: none; cursor: pointer; transition: background .2s, color .2s; }
.btn-beauty-outline:hover { background: var(--color-primary) !important; color: #fff !important; }

/* CTA strip (old) */
.cta-strip { background: var(--color-primary); padding: 72px 0; text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: 14px; font-size: clamp(26px,4vw,40px); }
.cta-strip p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Footer (old, for pages still using it) */
.beauty-footer { background: var(--color-dark); color: #aaa; padding: 72px 0 32px; }
.beauty-footer h6 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.beauty-footer a { color: #aaa; text-decoration: none; transition: color .2s; }
.beauty-footer a:hover { color: var(--color-primary); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.footer-contact-row i { color: var(--color-primary); width: 16px; flex-shrink: 0; margin-top: 2px; }
.beauty-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.beauty-footer ul li a { color: #aaa; text-decoration: none; transition: color .2s; font-size: 14px; }
.beauty-footer ul li a:hover { color: var(--color-primary); }
.beauty-footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 48px 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* Forms (inner pages) */
.form-card { background: #fff; border: 1.5px solid #eee; border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--color-dark); margin-bottom: 6px; }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 15px; outline: none; background: #fafafa; color: #333; font-family: inherit; transition: border-color .2s; }
.form-control:focus { border-color: var(--color-primary); background: #fff; }
textarea.form-control { resize: vertical; }
.form-sidebar { background: #f8f8f9; border: 1.5px solid #eee; border-radius: 18px; padding: 28px; height: fit-content; }
.form-sidebar h4 { font-size: 18px; font-weight: 700; color: var(--color-dark); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-item i { color: var(--color-primary); font-size: 17px; width: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--color-dark); margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 14px; color: #666; text-decoration: none; }
.contact-item a:hover { color: var(--color-primary); }
.success-box { text-align: center; padding: 56px 40px; background: var(--color-secondary); border-radius: 18px; }
.success-box i { font-size: 52px; color: var(--color-primary); margin-bottom: 16px; display: block; }
.success-box h3 { font-size: 22px; color: var(--color-dark); font-weight: 700; }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1.5px solid #eee; margin-top: 24px; }

/* FAQ */
.faq-item { border: 1.5px solid #eee; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 20px; font-size: 15.5px; font-weight: 600; color: var(--color-dark); background: #fff; display: flex; justify-content: space-between; align-items: center; gap: 10px; cursor: pointer; border: none; transition: background .2s; }
.faq-q:hover { background: var(--color-secondary); }
.faq-q i { color: var(--color-primary); flex-shrink: 0; transition: transform .2s; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14.5px; color: #555; line-height: 1.8; }
.faq-a.open { display: block; }

/* Blog body */
.node p { margin-bottom: 1.2em; }
.node h2, .node h3 { margin: 1.5em 0 .6em; color: var(--color-dark); }
.node ul { list-style: disc; padding-left: 20px; margin-bottom: 1em; }
.node ol { list-style: decimal; padding-left: 20px; margin-bottom: 1em; }
.node li { margin-bottom: .5em; line-height: 1.75; }
.node strong { font-weight: 700; }

/* ============================================================
   FLOATING BOOK BUTTON
============================================================ */
.beauty-float-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1600; /* above sticky-bar (1500) so the FAB is never hidden */
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-primary);
  color: #fff;
  border: none; border-radius: 100px;
  padding: 14px 22px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(255,140,66,.45);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .2s, bottom .25s ease;
  white-space: nowrap;
}
/* When the sticky subscribe bar is visible, lift the FAB above it.
   Bar height = input (~40px) + padding (8+8) + safe-area-inset-bottom on iPhone.
   We add env(safe-area-inset-bottom) to the lift so the FAB always clears
   the bar regardless of device home-indicator height. */
body.beauty-sticky-bar-visible .beauty-float-btn {
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 992px) {
  body.beauty-sticky-bar-visible .beauty-float-btn {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}
.beauty-float-btn:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,140,66,.55);
}
.beauty-float-btn i { font-size: 16px; }
/* Below the desktop nav breakpoint (where the burger appears), shrink the
   floating Book a Visit into a circular icon-only FAB. */
@media (max-width: 991.98px) {
  .beauty-float-btn span { display: none; }
  .beauty-float-btn {
    width: 56px; height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .beauty-float-btn i { font-size: 20px; }
}

/* ============================================================
   BOOK A VISIT MODAL
============================================================ */
.beauty-modal {
  position: fixed; inset: 0;
  z-index: 100000; /* must beat .header-area.homepage1 (z-index:9999) */
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.beauty-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(28,28,35,.7);
  backdrop-filter: blur(4px);
}
.beauty-modal__box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%; max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: beautyModalIn .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes beautyModalIn {
  from { opacity: 0; transform: scale(.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.beauty-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #f5f5f5; border: none; border-radius: 50%;
  color: #888; font-size: 16px; cursor: pointer;
  transition: background .2s, color .2s;
}
.beauty-modal__close:hover { background: var(--color-secondary); color: var(--color-primary); }
.beauty-modal__header { text-align: center; margin-bottom: 28px; }
.beauty-modal__header h3 { font-size: 22px; font-weight: 800; color: var(--color-dark); margin-bottom: 8px; }
.beauty-modal__header p { font-size: 14.5px; color: #666; margin: 0; }
.beauty-modal__form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--color-dark); margin-bottom: 6px;
}
@media (max-width: 575px) { .beauty-modal__box { padding: 28px 20px; } }

/* ============================================================
   GALLERY PAGE
============================================================ */
.beauty-gallery-tabs {
  display: flex; gap: 12px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.beauty-gallery-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 2px solid #e0e0e0; border-radius: 100px;
  font-size: 14px; font-weight: 700; color: #555;
  background: #fff; cursor: pointer;
  transition: all .2s;
}
.beauty-gallery-tab:hover,
.beauty-gallery-tab.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-secondary);
}
.beauty-gallery-panel { display: none; }
.beauty-gallery-panel.active { display: block; }

/* Photo grid */
.beauty-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) { .beauty-photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px)  { .beauty-photo-grid { grid-template-columns: repeat(2, 1fr); } }

.beauty-photo-item {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
  background: #f0f0f0;
}
.beauty-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.beauty-photo-item:hover img { transform: scale(1.07); }

.beauty-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,35,.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity .3s;
}
.beauty-photo-item:hover .beauty-photo-overlay { opacity: 1; }
.beauty-photo-overlay i { color: #fff; font-size: 24px; }
.beauty-photo-overlay span { color: #fff; font-size: 13px; font-weight: 600; text-align: center; padding: 0 8px; }

/* Video cards */
.beauty-video-card {
  border-radius: 18px; overflow: hidden;
  background: #fff; border: 1.5px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.beauty-video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }

.beauty-video-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; cursor: pointer;
  background: #111;
}
.beauty-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s, opacity .4s;
}
.beauty-video-thumb:hover img { transform: scale(1.04); opacity: .85; }

.beauty-video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
}
.beauty-video-play i {
  font-size: 56px; color: #FF0000;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
  transition: transform .2s;
}
.beauty-video-thumb:hover .beauty-video-play i { transform: scale(1.15); }

.beauty-video-info { padding: 20px; }
.beauty-video-info h4 { font-size: 17px; font-weight: 700; color: var(--color-dark); margin-bottom: 8px; }
.beauty-video-info p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }

/* ============================================================
   LIGHTBOX (photo)
============================================================ */
.beauty-lightbox {
  position: fixed; inset: 0;
  /* Bug 2 fix: must beat .header-area (z-index:9999) AND .beauty-modal (100000) */
  z-index: 100001;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.92);
}
.beauty-lightbox__backdrop {
  position: absolute; inset: 0;
}
.beauty-lightbox__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%;
  color: #fff; font-size: 18px; cursor: pointer; z-index: 1;
  transition: background .2s;
}
.beauty-lightbox__close:hover { background: rgba(255,255,255,.2); }

/* Bug 1 fix: arrows sized to 44px minimum tap target, positioned at screen edges */
.beauty-lightbox__prev,
.beauty-lightbox__next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15); border: none; border-radius: 50%;
  color: #fff; font-size: 20px; cursor: pointer; z-index: 2;
  transition: background .2s;
  /* Larger hit area via padding so small fingers can tap easily */
  -webkit-tap-highlight-color: transparent;
}
.beauty-lightbox__prev:hover,
.beauty-lightbox__next:hover { background: rgba(255,255,255,.3); }
.beauty-lightbox__prev { left: 12px; }
.beauty-lightbox__next { right: 12px; }

@media (max-width: 767px) {
  .beauty-lightbox__prev,
  .beauty-lightbox__next {
    /* On mobile anchor to viewport sides so close button (top:16px right:16px)
       is never overlapped; arrows sit at vertical centre away from corners */
    top: 50%;
    width: 44px; height: 44px;
    font-size: 18px;
  }
  .beauty-lightbox__prev { left: 8px; }
  .beauty-lightbox__next { right: 8px; }
}

.beauty-lightbox__inner {
  position: relative; z-index: 1;
  max-width: min(90vw, 1000px);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.beauty-lightbox__inner img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; border-radius: 8px;
  display: block;
}
.beauty-lightbox__caption {
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  text-align: center; margin: 0;
}

/* Video lightbox variant */
.beauty-lightbox__inner--video {
  width: min(90vw, 960px);
}
.beauty-video-embed {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 8px; overflow: hidden;
}
.beauty-video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   MOBILE CAROUSEL (Services + Team) — pink dots + circular arrows
   Matches the testimonial carousel look. Mobile-only via JS.
============================================================ */
.beauty-mobile-owl { position: relative; padding: 0 8px 56px; }

/* Nav arrows on the sides */
.beauty-mobile-owl .owl-nav { display: block !important; }
.beauty-mobile-owl .owl-nav button.owl-prev,
.beauty-mobile-owl .owl-nav button.owl-next {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: #fff !important;
  border: 1.5px solid var(--color-primary) !important;
  border-radius: 50% !important;
  color: var(--color-primary) !important;
  font-size: 14px !important;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(251,49,137,.18);
  transition: background .2s, color .2s, transform .2s;
  z-index: 5;
}
.beauty-mobile-owl .owl-nav button.owl-prev { left: -6px; }
.beauty-mobile-owl .owl-nav button.owl-next { right: -6px; }
.beauty-mobile-owl .owl-nav button.owl-prev:hover,
.beauty-mobile-owl .owl-nav button.owl-next:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.05);
}
.beauty-mobile-owl .owl-nav button.disabled { opacity: .35; cursor: default; }
.beauty-mobile-owl .owl-nav button.disabled:hover {
  background: #fff !important; color: var(--color-primary) !important;
  transform: translateY(-50%);
}

/* Pink dot indicators below */
.beauty-mobile-owl .owl-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
}
.beauty-mobile-owl .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 4px;
}
.beauty-mobile-owl .owl-dots .owl-dot span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(251,49,137,.25);
  transition: width .25s, background .25s;
}
.beauty-mobile-owl .owl-dots .owl-dot.active span {
  background: var(--color-primary);
  width: 24px;
  border-radius: 100px;
}

/* Make sure cards inside mobile carousel use full item width (override col-* widths) */
.beauty-mobile-owl.owl-carousel .owl-item > [class*="col-"] {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

/* ============================================================
   CTA SECTION — extra breathing room
============================================================ */
.cta3-section-area { padding: 100px 0; }

/* ============================================================
   TESTIMONIALS — equal height cards, pink only on hover
============================================================ */
/* Reset base theme's "always pink on active item" behaviour */
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item.active {
  background: transparent !important;
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item.active .testimonial-author-box {
  background: #fff;
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item.active .testimonial-author-box ul li {
  background: transparent;
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item.active .testimonial-author-box .pera {
  color: #444;
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item.active .testimonial-author-box .content-area .images-content .content a {
  color: var(--color-dark);
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item.active .testimonial-author-box .content-area .images-content .content p {
  color: #888; opacity: 1;
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item.active .testimonial-author-box .quito1 {
  filter: none;
}

/* Base card — white with subtle shadow */
.testimonial3-section-area .testimonial2-owl-carousel-area .testimonial-author-box {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.testimonial3-section-area .testimonial2-owl-carousel-area .testimonial-author-box .pera {
  color: #444;
}

/* Equal height via flexbox on owl items */
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-stage {
  display: flex;
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item {
  display: flex;
  flex-direction: column;
}
.testimonial3-section-area .testimonial2-owl-carousel-area.owl-carousel .owl-item .testimonial-author-box {
  flex: 1;
}

/* Hover state — turn pink */
.testimonial3-section-area .testimonial2-owl-carousel-area .testimonial-author-box:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary);
}
.testimonial3-section-area .testimonial2-owl-carousel-area .testimonial-author-box:hover .pera,
.testimonial3-section-area .testimonial2-owl-carousel-area .testimonial-author-box:hover .content-area .images-content .content a,
.testimonial3-section-area .testimonial2-owl-carousel-area .testimonial-author-box:hover .content-area .images-content .content p {
  color: #fff;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .hero5-section-area { padding: 100px 0 0; }
  .section-padding { padding: 64px 0; }
  .form-card { padding: 28px 20px; }
  .beauty-parent-section > .container > .row { --bs-gutter-y: 2rem; }
}
@media (max-width: 767px) {
  .blog5-section-area .blog-all-section .content-area { flex-direction: column; margin-top: 20px; }
  .blog5-section-area .blog-all-section .arrow { display: none; }
  .beauty-sticky-bar { flex-wrap: wrap; padding: 12px 16px; }
  .beauty-sticky-bar__text { font-size: 13px; }
}
@media (max-width: 575px) {
  .hero5-section-area h1 { font-size: 32px; }
  .form-card { padding: 20px 16px; }
}

/* ============================================================
   Brand logo image (header + footer + mobile menu)
   The wide SVG bakes in: B-mark + brand name + "Demo website by BadeStudio"
   so we never have to position text alongside an image again.
   ============================================================ */
.brand-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 220px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  filter: none !important;
  margin: 0 !important;
}
@media (max-width: 600px) {
  .brand-logo { height: 40px; }
}

/* Footer social icons (visual only, click does nothing) */
.beauty-footer5-socials {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.beauty-footer5-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  cursor: default;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.beauty-footer5-socials a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Override: socials block sits under email in brand col, give it spacing */
.beauty-footer5-socials { margin-top: 18px; }
.beauty-footer5-socials a { color: var(--color-primary); background: rgba(251,49,137,.08); border-color: rgba(251,49,137,.18); }
.beauty-footer5-socials a i { line-height: 1; }

/* ============================================================
   HERO VIDEO FRAME — replaces stock illustration on right side
   ============================================================ */
.beauty-video-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}
.beauty-video-mock {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #fde9f1 0%, #e8efe6 100%);
  box-shadow: 0 30px 60px -20px rgba(251,49,137,.25), 0 18px 36px -18px rgba(0,0,0,.18);
}
.beauty-video-mock video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
  opacity: .92;
}
.beauty-hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(251,49,137,.35);
  cursor: pointer;
}
.beauty-hero-play svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}
.beauty-video-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 14px 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #2b1a23;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.beauty-video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: beauty-pulse 1.6s ease-in-out infinite;
}
@keyframes beauty-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: .55; }
}
.beauty-hero-card {
  position: absolute;
  bottom: 22px;
  right: -14px;
  z-index: 3;
  background: #fff;
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 36px -10px rgba(251,49,137,.28), 0 6px 18px rgba(0,0,0,.06);
  border: 1px solid rgba(251,49,137,.12);
}
.beauty-hero-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fde9f1, #f6ddea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}
.beauty-hero-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #2b1a23;
  line-height: 1.1;
}
.beauty-hero-card__meta {
  font-size: 11px;
  color: #6f5360;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .beauty-video-frame { margin-top: 40px; max-width: 460px; }
  .beauty-hero-card   { right: 6px; }
}

/* ============================================================
   GALLERY VIDEOS — bespoke salon clips replacing YouTube embeds
   ============================================================ */
.beauty-video-tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #f5e8ee;
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 40px -16px rgba(251,49,137,.25);
}
.beauty-video-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.beauty-video-tile__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}
.beauty-video-tile__caption strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.beauty-video-tile__caption span {
  font-size: 13px;
  opacity: .92;
}
.beauty-video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  z-index: 1;
  pointer-events: none;
}


/* ============================================================
   iOS Safari URL bar transition fix
   Force GPU compositing on fixed-bottom elements so the browser repaints
   them when the address bar slides away. Bottom-anchor (safe-area) only
   applies to full-width sticky bars; floating buttons keep their own
   offsets so they don't get pushed into the bar.
============================================================ */
.beauty-sticky-bar,
.nursery-sticky-bar,
.resto-sticky-bar,
.fitness-sticky-bar,
.business-sticky-bar,
.bs-sticky-bar,
.bm-fab,
.beauty-float-btn,
.nursery-float-btn,
.resto-float-btn,
.fitness-float-btn,
.business-float-btn {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
}
/* Sticky bars only: respect safe-area at bottom */
.beauty-sticky-bar,
.nursery-sticky-bar,
.resto-sticky-bar,
.fitness-sticky-bar,
.business-sticky-bar,
.bs-sticky-bar {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
}
