/*
=====================================================
  Kim Ngân Spa — Frontend Stylesheet
  Version: 1.1.0 | Bootstrap 5.3.3
=====================================================
  TABLE OF CONTENTS
  01. Settings (Variables)
  02. Base & Typography
  03. Buttons
  04. Header & Navigation
  05. Hero, Sliders & Page Headers
  06. Sections & Cards
  07. Forms
  08. Footer
  09. Floating UI (Support, Scroll Top)
  10. Animations
  11. Responsive
  12. Page Blocks (Blog, Product, Cart, Service…)
  13. Utilities
=====================================================
*/

/* 01. Root Variables -------------------------------- */
:root {
  --lum-sage: #8aa68f;
  --lum-sage-dark: #5f7d65;
  --lum-sage-light: #c9d8cc;
  --lum-cream: #f6f1e7;
  --lum-cream-dark: #ebe3d2;
  --lum-gold: #c9a35b;
  --lum-gold-dark: #a6823f;
  --lum-ink: #2d2a26;
  --lum-muted: #6b6660;
  --lum-white: #ffffff;
  --lum-line: #e7e0d1;
  --lum-shadow: 0 18px 40px -20px rgba(45, 42, 38, .25);
  --lum-shadow-sm: 0 8px 20px -10px rgba(45, 42, 38, .2);
  --lum-radius: 6px;
  --lum-radius-lg: 14px;
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --z-support: 998;
  --z-scroll-top: 999;
}

/* 02. Base & Typography ----------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lum-ink);
  background: var(--lum-cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--lum-ink);
  letter-spacing: .2px;
  margin: 0 0 .6em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: 1.35rem; }
p { margin: 0 0 1rem; color: var(--lum-muted); }
a { color: var(--lum-gold-dark); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--lum-sage-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lum-gold-dark);
  margin-bottom: 14px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { max-width: 620px; margin: 0 auto; }
.bg-cream { background: var(--lum-cream); }
.bg-cream-dark { background: var(--lum-cream-dark); }
.bg-sage { background: var(--lum-sage); color: #fff; }
.bg-sage h2,.bg-sage h3,.bg-sage p { color: #fff; }
.text-gold { color: var(--lum-gold-dark) !important; }

/* 03. Buttons --------------------------------------- */
.btn-lum {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--lum-gold);
  background: var(--lum-gold);
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-lum:hover { background: var(--lum-gold-dark); border-color: var(--lum-gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--lum-shadow-sm); }
.btn-lum-outline { background: transparent; color: var(--lum-ink); border-color: var(--lum-ink); }
.btn-lum-outline:hover { background: var(--lum-ink); color: #fff; }
.btn-lum-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-lum-light:hover { background: #fff; color: var(--lum-ink); border-color: #fff; }

/* 04. Header & Navigation --------------------------- */
.lum-topbar {
  background: var(--lum-ink);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 10px 0;
  letter-spacing: .5px;
}
.lum-topbar a { color: rgba(255,255,255,.75); }
.lum-topbar a:hover { color: var(--lum-gold); }
.lum-topbar .topbar-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.lum-topbar .topbar-info span { margin-right: 22px; }
.lum-topbar .topbar-info i { color: var(--lum-gold); margin-right: 6px; }
.lum-topbar .topbar-social a { margin-left: 14px; }

.lum-header {
  background: var(--lum-cream);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s, background .3s;
}
.lum-header.is-scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.06); background: #fff; }
.lum-brand {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--lum-ink);
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 10px;
}
.lum-brand:hover { color: var(--lum-gold-dark); }
.lum-brand .brand-mark { width: 38px; height: 38px; }
.lum-brand .brand-logo { display: block; max-height: 54px; width: auto; object-fit: contain; }
.lum-brand .brand-text { display: inline-block; }

.lum-nav { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.lum-nav > li { position: relative; }
.lum-nav > li > a {
  display: block;
  padding: 12px 18px;
  color: var(--lum-ink);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lum-nav > li > a:hover, .lum-nav > li.active > a { color: var(--lum-gold-dark); }
.lum-nav .has-sub > a::after { content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: 6px; font-size: .7rem; }
.lum-submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: var(--lum-shadow);
  border-radius: var(--lum-radius);
  padding: 10px 0;
  list-style: none;
  margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 100;
}
.lum-nav > li:hover > .lum-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.lum-submenu li a {
  display: block;
  padding: 9px 22px;
  color: var(--lum-ink);
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lum-submenu li a:hover { background: var(--lum-cream); color: var(--lum-gold-dark); }

.lum-header-actions { display: flex; align-items: center; gap: 18px; }
.lum-header-actions .icon-btn { color: var(--lum-ink); font-size: 1rem; }
.lum-header-actions .icon-btn:hover { color: var(--lum-gold-dark); }

/* Mobile menu toggle */
.lum-burger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--lum-line);
  border-radius: 6px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.lum-burger span {
  width: 20px; height: 2px;
  background: var(--lum-ink);
  position: relative;
  transition: all .3s;
}
.lum-burger span::before, .lum-burger span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--lum-ink);
  transition: all .3s;
}
.lum-burger span::before { top: -7px; }
.lum-burger span::after { top: 7px; }

/* Mobile drawer */
.lum-mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  padding: 30px 24px;
  overflow-y: auto;
  transition: right .35s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,.08);
}
.lum-mobile-drawer.is-open { right: 0; }
.lum-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1090;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.lum-drawer-overlay.is-open { opacity: 1; visibility: visible; }
.lum-drawer-close {
  background: transparent; border: 0;
  font-size: 1.4rem; color: var(--lum-ink);
  position: absolute; top: 18px; right: 18px;
  cursor: pointer;
}
.lum-mobile-nav { list-style: none; padding: 0; margin: 50px 0 0; }
.lum-mobile-nav li { border-bottom: 1px solid var(--lum-line); }
.lum-mobile-nav a {
  display: block;
  padding: 14px 4px;
  color: var(--lum-ink);
  font-size: .9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.lum-mobile-nav a:hover, .lum-mobile-nav a.active { color: var(--lum-gold-dark); }
.lum-mobile-nav .sub-toggle {
  float: right; background: transparent; border: 0;
  color: var(--lum-muted); cursor: pointer; padding: 14px 4px;
}
.lum-mobile-nav .lum-submenu-mobile {
  list-style: none; padding: 0 0 10px 16px; margin: 0;
  display: none;
}
.lum-mobile-nav .lum-submenu-mobile.is-open { display: block; }
.lum-mobile-nav .lum-submenu-mobile li { border-bottom: 0; }
.lum-mobile-nav .lum-submenu-mobile a { padding: 8px 4px; font-size: .8rem; text-transform: none; letter-spacing: .5px; }

/* 05. Hero & Sliders -------------------------------- */
.lum-hero {
  position: relative;
  overflow: hidden;
}
.lum-slider {
  position: relative;
  height: 88vh;
  min-height: 600px;
  max-height: 820px;
}
.lum-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
}
.lum-slide.is-active { opacity: 1; }
.lum-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(45,42,38,.65) 0%, rgba(45,42,38,.55) 60%);
}
.lum-slide-content {
  position: relative;
  color: #fff;
  max-width: 640px;
  padding: 0px;
}
.lum-slide-content .eyebrow {
  display: inline-block;
  font-size: .8rem; letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lum-gold);
  margin-bottom: 18px;
  opacity: 0; transform: translateY(20px);
  transition: all .8s ease .3s;
}
.lum-slide-content h1 {
  color: #fff;
  margin-bottom: 22px;
  opacity: 0; transform: translateY(20px);
  transition: all .8s ease .5s;
}
.lum-slide-content p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0; transform: translateY(20px);
  transition: all .8s ease .7s;
}
.lum-slide-content .btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: all .8s ease .9s;
}
.lum-slide.is-active .lum-slide-content > * { opacity: 1; transform: translateY(0); }

.lum-slider-nav {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px;
  z-index: 5;
}
.lum-slider-nav button {
  width: 40px; height: 4px;
  background: rgba(255,255,255,.4);
  border: 0; cursor: pointer;
  transition: background .3s;
}
.lum-slider-nav button.is-active { background: var(--lum-gold); }
.lum-slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: all .3s;
}
.lum-slider-arrow:hover { background: var(--lum-gold); border-color: var(--lum-gold); }
.lum-slider-arrow.prev { left: 30px; }
.lum-slider-arrow.next { right: 30px; }

/* Page header for inner pages */
.lum-page-header {
  position: relative;
  padding: 130px 0 90px;
  background-color: #2d2a26;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
.lum-page-header h1 { color: #fff; margin-bottom: 10px; }
.lum-page-header .breadcrumb-lum {
  display: inline-flex; gap: 10px;
  font-size: .85rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.lum-page-header .breadcrumb-lum a { color: var(--lum-gold); }

/* Hero backgrounds for cart/checkout pages (replaces inline style) */
.lum-page-header.cart-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/hero-spa-2.jpg');
}
.lum-page-header.checkout-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/hero-spa-1.jpg');
}
.lum-page-header.thankyou-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/about-1.jpg');
}

.lum-page-header.product-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/hero-spa-2.jpg');
}
.lum-page-header.service-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/hero-spa-1.jpg');
}
.lum-page-header.blog-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/hero-spa-1.jpg');
}
.lum-page-header.booking-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/hero-spa-2.jpg');
}
.lum-page-header.contact-hero {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), url('/themes/site/assets/images/about-1.jpg');
}
.lum-page-header--dynamic {
  background-image: linear-gradient(rgba(45,42,38,.55), rgba(45,42,38,.55)), var(--page-header-image);
}

/* Checkout validation overrides (replaces inline <style>) */
.checkout-card .is-invalid { border: 1px solid red !important; }
.checkout-card .required,
.checkout-card .text-danger { color: red; }
.blog-card h2{
  font-size: 1.5rem;
}
.blog-details h2{
  font-size: 1.8rem;
}
.booking-card h2{
  font-size: 2rem;
}

/* 06. Sections -------------------------------------- */
.about-img-wrap { position: relative; }
.about-img-wrap .img-main { border-radius: var(--lum-radius-lg); box-shadow: var(--lum-shadow); }
.about-img-wrap .img-accent {
  position: absolute;
  bottom: -40px; right: -20px;
  width: 55%;
  border: 8px solid var(--lum-cream);
  border-radius: var(--lum-radius-lg);
  box-shadow: var(--lum-shadow);
}
.about-features { list-style: none; padding: 0; margin: 24px 0; }
.about-features li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--lum-ink);
}
.about-features li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px;
  background: var(--lum-sage-light);
  color: var(--lum-sage-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
}

/* Service card */
.service-card {
  background: #fff;
  border-radius: var(--lum-radius-lg);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--lum-shadow); }
.service-card .img { aspect-ratio: 4/3; overflow: hidden; }
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .img img { transform: scale(1.06); }
.service-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card .icon-circ {
  width: 50px; height: 50px;
  background: var(--lum-cream);
  color: var(--lum-gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.7rem; }
.service-card .price { color: var(--lum-gold-dark); font-weight: 600; margin-top: auto; padding-top: 14px; }
.service-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--lum-ink); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.service-card .more:hover { color: var(--lum-gold-dark); }

/* Team card */
.team-card { text-align: center; }
.team-card .img {
  border-radius: var(--lum-radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 3/4;
  position: relative;
}
.team-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.team-card:hover .img img { transform: scale(1.05); }
.team-card .social {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,42,38,.85));
  padding: 30px 16px 16px;
  display: flex; gap: 12px; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.team-card:hover .social { opacity: 1; }
.team-card .social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.team-card .social a:hover { background: var(--lum-gold); }
.team-card h3 { margin-bottom: 4px; font-size: 1.5rem; }
.team-card .role { font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; color: var(--lum-gold-dark); }

/* Pricing */
.price-card {
  background: #fff;
  border: 1px solid var(--lum-line);
  border-radius: var(--lum-radius-lg);
  padding: 42px 30px;
  text-align: center;
  transition: all .35s;
  height: 100%;
}
.price-card:hover, .price-card.is-featured { border-color: var(--lum-gold); box-shadow: var(--lum-shadow); transform: translateY(-6px); }
.price-card .plan-name { font-size: .85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--lum-gold-dark); margin-bottom: 14px; }
.price-card .amount { font-family: var(--font-display); font-size: 3.5rem; color: var(--lum-ink); line-height: 1; }
.price-card .amount sup { font-size: 1.2rem; top: -1.4rem; color: var(--lum-gold-dark); }
.price-card .amount small { font-size: .9rem; color: var(--lum-muted); font-family: var(--font-body); }
.price-card ul { list-style: none; padding: 0; margin: 28px 0; text-align: left; }
.price-card ul li { padding: 8px 0 8px 28px; position: relative; color: var(--lum-muted); border-bottom: 1px dashed var(--lum-line); }
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; color: var(--lum-sage-dark); top: 10px; font-size: .8rem;
}
.price-card.is-featured{
  height: auto;
}

/* Testimonials */
.testimonial {
  background: #fff;
  padding: 36px;
  border-radius: var(--lum-radius-lg);
  position: relative;
  height: 100%;
}
.testimonial .stars { color: var(--lum-gold); margin-bottom: 14px; }
.testimonial p { font-style: italic; color: var(--lum-ink); font-size: 1.05rem; }
.testimonial .author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testimonial .author img { width: 50px; height: 50px; border-radius: 50%; }
.testimonial .author strong { display: block; font-family: var(--font-display); font-size: 1.15rem; }
.testimonial .author span { font-size: .8rem; color: var(--lum-muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* Stats / Counter */
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: 3rem; color: var(--lum-gold); display: block; line-height: 1; }
.stat-item .label { font-size: .82rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.85); margin-top: 8px; display: block; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--lum-radius);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item::after {
  content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0;
  background: rgba(45,42,38,.5);
  color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }

/* Blog card */
.blog-card { background: #fff; border-radius: var(--lum-radius-lg); overflow: hidden; height: 100%; transition: all .35s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--lum-shadow); }
.blog-card .img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .img img { transform: scale(1.06); }
.blog-card .body { padding: 26px; }
.blog-card .meta { font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lum-gold-dark); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--lum-ink); }
.blog-card h3 a:hover { color: var(--lum-gold-dark); }

/* 07. Forms ----------------------------------------- */
.booking-card {
  background: #fff;
  padding: 50px;
  border-radius: var(--lum-radius-lg);
  box-shadow: var(--lum-shadow);
}
.form-control-lum {
  width: 100%;
  padding: 14px 18px;
  background: var(--lum-cream);
  border: 1px solid transparent;
  border-radius: var(--lum-radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--lum-ink);
  margin-bottom: 18px;
  transition: all .25s;
}
.form-control-lum:focus { outline: none; border-color: var(--lum-gold); background: #fff; }
.form-label-lum { font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lum-muted); margin-bottom: 8px; display: block; }

/* Product card */
.product-card { background: #fff; border-radius: var(--lum-radius-lg); overflow: hidden; text-align: center; padding-bottom: 24px; transition: all .35s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--lum-shadow); }
.product-card .img { aspect-ratio: 1/1; overflow: hidden; background: var(--lum-cream); }
.product-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-card:hover .img img { transform: scale(1.05); }
.product-card .name { font-family: var(--font-display); font-size: 1.25rem; padding: 18px 16px 4px; }
.product-card .price { color: var(--lum-gold-dark); font-weight: 600; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(rgba(45,42,38,.7), rgba(45,42,38,.7)), url('../images/hero-spa-2.jpg') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 30px; }

/* 08. Footer ---------------------------------------- */
.lum-footer {
  background: #1f1d1a;
  color: rgba(255,255,255,.7);
  padding: 90px 0 0;
}
.lum-footer h3 { color: #fff; font-size: 1.3rem; margin-bottom: 22px; }
.lum-footer p, .lum-footer a, .lum-footer li { color: rgba(255,255,255,.7); }
.lum-footer a:hover { color: var(--lum-gold); }
.lum-footer ul { list-style: none; padding: 0; margin: 0; }
.lum-footer ul li { padding: 6px 0; }
.lum-footer .footer-brand { font-family: var(--font-display); color: #fff; font-size: 1.9rem; margin-bottom: 18px; display: inline-block; }
.lum-footer .footer-logo { display: block; max-height: 70px; width: auto; object-fit: contain; }
.lum-footer .footer-brand-text { display: inline-block; }
.lum-footer .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%; margin-right: 8px;
  color: #fff;
}
.lum-footer .social a:hover { background: var(--lum-gold); }
.lum-footer .contact-row { display: flex; gap: 12px; padding: 8px 0; align-items: flex-start; }
.lum-footer .contact-row i { color: var(--lum-gold); margin-top: 6px; }
.lum-footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  text-align: center;
}
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  color: #fff;
  font-family: var(--font-body);
}
.newsletter-form input:focus { outline: none; border-color: var(--lum-gold); }
.newsletter-form button {
  background: var(--lum-gold); border: 0; color: #fff;
  padding: 0 10px; border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
}

/* Scroll up */
.scroll-up {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: var(--z-scroll-top);
  width: 44px;
  height: 44px;
  background: var(--lum-gold);
  color: #fff;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.scroll-up.is-visible { opacity: 1; visibility: visible; }
.scroll-up:hover { background: var(--lum-gold-dark); }

/* 09. Floating UI ----------------------------------- */
.lum-support-float {
  position: fixed;
  left: 20px;
  bottom: 110px;
  z-index: var(--z-support);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lum-support-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: var(--lum-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.lum-support-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--lum-shadow);
}

.lum-support-btn svg {
  display: block;
}

.lum-support-btn--phone {
  background: var(--lum-gold);
  color: #fff;
}

.lum-support-btn--phone svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lum-support-btn--messenger svg,
.lum-support-btn--zalo svg {
  width: 50px;
  height: 50px;
}

/* 10. Animations ------------------------------------ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* 11. Responsive ------------------------------------ */
@media (max-width: 991.98px) {
  .lum-nav, .lum-header-actions .d-none-mobile { display: none !important; }
  .lum-burger { display: inline-flex; }
  .section { padding: 80px 0; }
  .lum-slider { height: 75vh; min-height: 520px; }
  .about-img-wrap .img-accent { position: static; width: 100%; margin-top: 16px; border: 0; }
  .booking-card { padding: 30px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 1/1; }
  .btn-lum{
    padding-left: 20px;
    padding-right: 20px;
  }
  .lum-mobile-nav li{
    position: relative;
  }
  .lum-mobile-nav .sub-toggle {
      position: absolute;
      top: 0;
      right: 0;
  }
  .container {
      padding-left: 24px;
      padding-right: 24px;
  }
}
@media (max-width: 575.98px) {
  .section { padding: 60px 0; }
  .lum-page-header { padding: 90px 0 60px; }
  .lum-slide-content p { font-size: 1rem; }
  .lum-slider-arrow { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 24px; }
  .lum-topbar .topbar-info {
    display: flex;
    gap: 6px 14px;
  }
  .lum-topbar .topbar-info .topbar-email { display: none; }
  .lum-topbar .topbar-info .topbar-hours { margin-right: 0; }
  .lum-slide-content{
    padding: 0;
  }
  .lum-support-float {
    left: 12px;
    bottom: 90px;
    gap: 10px;
  }
  .lum-support-btn {
    width: 44px;
    height: 44px;
  }
  .lum-support-btn--messenger svg,
  .lum-support-btn--zalo svg {
    width: 44px;
    height: 44px;
  }
}

/* Honeypot — hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Sidebar widget (Blog) */
.sidebar-widget-lum {
  background: #fff;
  border-radius: var(--lum-radius-lg);
  padding: 28px;
}
.sidebar-widget-lum h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lum-gold);
  display: inline-block;
}
.sidebar-widget-lum ul li a:hover { color: var(--lum-gold-dark) !important; }

/* Contact info card */
.contact-info-card {
  background: #fff;
  border-radius: var(--lum-radius-lg);
  padding: 32px 28px;
  text-align: center;
  height: 100%;
  transition: all .35s;
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--lum-shadow); }
.contact-info-card .contact-info-icon {
  width: 56px; height: 56px;
  background: var(--lum-cream);
  color: var(--lum-gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.contact-info-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-info-card p { margin: 0; color: var(--lum-muted); }
.contact-info-card a { color: var(--lum-muted); }
.contact-info-card a:hover { color: var(--lum-gold-dark); }

/* Blog detail content typography */
.blog-details h2 { font-size: 1.7rem; margin-top: 32px; }
.blog-details h3 { font-size: 1.4rem; margin-top: 24px; }
.blog-details blockquote {
  border-left: 4px solid var(--lum-gold);
  padding: 18px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--lum-ink);
  background: var(--lum-cream);
  border-radius: var(--lum-radius);
}

/* Service card "more" link */
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lum-gold-dark);
  transition: gap .2s;
}
.service-card .more:hover { gap: 10px; color: var(--lum-sage-dark); }

/* Accordion button focus / active reset */
.accordion-button:not(.collapsed) {
  color: var(--lum-gold-dark);
  background: var(--lum-cream);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; outline: none; }

.lum-faq-accordion .accordion-item {
  border: 1px solid var(--lum-line);
  border-radius: var(--lum-radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.lum-faq-accordion .accordion-item:last-child { margin-bottom: 0; }
.lum-faq-accordion .accordion-button {
  background: var(--lum-cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lum-ink);
  box-shadow: none;
}
.lum-faq-accordion .accordion-body {
  background: #fff;
  color: var(--lum-muted);
  line-height: 1.8;
}

/* ==========================================================
   12. Page Blocks — view-specific components
   Blog · Product · Cart · Service · Contact · Home
   ========================================================== */

/* ── Icon spacing (replaces style="margin-right:5px") ───── */
.icon-mr { margin-right: 5px; }
.icon-mr-sm { margin-right: 4px; }

/* ── Page header subtitle ─────────────────────────────────
   Booking/Index subtitle under h1 */
.lum-page-header .page-subtitle {
  color: rgba(255,255,255,.85);
  margin: 10px 0 0;
}

/* ── Blog / Article "more" link ───────────────────────────
   Replaces inline style on blog card read-more anchors */
.blog-card .more,
.blog-card-more {
  color: var(--lum-gold-dark);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.blog-card .more:hover,
.blog-card-more:hover { gap: 10px; color: var(--lum-sage-dark); }

/* ── CTA banner eyebrow ───────────────────────────────────
   .cta-banner already has text-center; eyebrow inside it
   just needs the standard eyebrow treatment */
.cta-banner .eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Pagination buttons (compact size) ───────────────────
   Replaces style="padding:10px 18px" on btn-lum pagination */
.btn-lum-page {
  padding: 10px 18px;
}

/* ── Product count text ───────────────────────────────────
   Replaces style="font-size:.85rem;color:var(...);letter-spacing:1px" */
.product-count-text {
  font-size: .85rem;
  color: var(--lum-muted);
  letter-spacing: 1px;
}

.lum-card {
  background: #fff;
  border-radius: var(--lum-radius-lg);
  box-shadow: var(--lum-shadow);
  padding: 32px;
}

.cart-card-header,
.cart-item-main,
.cart-item-footer,
.summary-line,
.checkout-summary-item,
.ordered-product-item,
.ordered-product-main,
.thank-you-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-card-header {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--lum-line);
}

.cart-count {
  font-size: .9rem;
  color: var(--lum-muted);
  white-space: nowrap;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lum-line);
}

.cart-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cart-item-image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--lum-radius);
  background: var(--lum-cream);
}

.cart-item-image img,
.ordered-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item-title,
.order-info-card h3,
.ordered-products-card h3,
.checkout-sidebar h3 {
  margin-bottom: 8px;
}

.cart-item-title a,
.ordered-product-content h4 a {
  color: var(--lum-ink);
}

.cart-item-price,
.price-highlight {
  color: var(--lum-gold-dark);
  font-weight: 700;
}

.cart-remove-btn {
  border: 0;
  background: transparent;
  color: #c16352;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.cart-qty button {
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--lum-cream);
  color: var(--lum-ink);
}

.cart-qty .quantity {
  width: 56px;
  height: 42px;
  border: 0;
  text-align: center;
  font-weight: 600;
  background: #fff;
}

.cart-item-total {
  text-align: right;
}

.cart-item-total span,
.info-item span,
.ordered-product-total span {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lum-muted);
  margin-bottom: 6px;
}

.cart-actions {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--lum-line);
}

.cart-summary-card,
.checkout-sidebar {
  position: sticky;
  top: 110px;
}

.cart-summary-card h3,
.checkout-sidebar h3,
.thank-you-hero h2 {
  margin-bottom: 22px;
}

.summary-line {
  padding: 14px 0;
  border-bottom: 1px solid var(--lum-line);
}

.summary-line.total {
  padding-top: 20px;
  margin-top: 6px;
  border-bottom: 0;
  font-size: 1.05rem;
}

.summary-line.total strong {
  color: var(--lum-gold-dark);
}

.cart-empty-state i,
.thank-you-icon i {
  font-size: 3.2rem;
  color: var(--lum-gold-dark);
  margin-bottom: 18px;
}

.checkout-intro {
  margin-bottom: 28px;
  color: var(--lum-muted);
}

.checkout-alert {
  margin-bottom: 24px;
}

.checkout-note {
  min-height: 130px;
  resize: vertical;
}

.checkout-summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.checkout-summary-item {
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lum-line);
}

.checkout-summary-item span {
  display: block;
  color: var(--lum-muted);
  font-size: .9rem;
  margin-top: 4px;
}

.checkout-payment {
  padding-top: 8px;
}

.checkout-payment h4 {
  margin-bottom: 16px;
}

.payment-option {
  background: var(--lum-cream);
  border: 1px solid var(--lum-line);
  border-radius: var(--lum-radius);
  padding: 16px 18px;
}

.payment-option + .payment-option {
  margin-top: 14px;
}

.payment-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
}

.payment-option p {
  margin: 10px 0 0 28px;
  color: var(--lum-muted);
  font-size: .92rem;
}

.thank-you-hero {
  margin-bottom: 28px;
}

.thank-you-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--lum-muted);
}

.thank-you-actions {
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-item {
  background: var(--lum-cream);
  border-radius: var(--lum-radius);
  padding: 18px;
}

.info-item.full {
  grid-column: 1 / -1;
}

.ordered-product-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ordered-product-item {
  padding: 18px 0;
  border-top: 1px solid var(--lum-line);
}

.ordered-product-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ordered-product-image {
  width: 92px;
  min-width: 92px;
  height: 92px;
  overflow: hidden;
  border-radius: var(--lum-radius);
  background: var(--lum-cream);
}

.ordered-product-content h4 {
  margin-bottom: 8px;
}

.ordered-product-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--lum-muted);
  font-size: .92rem;
}

.ordered-product-total {
  text-align: right;
  min-width: 180px;
}

.product-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product-filter-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.product-filter-bar-right {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

/* ── Product filter select min-widths ────────────────────
   Replaces style="min-width:190px" / "min-width:200px" */
.filter-select-cat { min-width: 190px; }
.filter-select-sort { min-width: 200px; }
.product-filter-bar .form-control-lum {
  margin-bottom: 0;
  border: 1px solid var(--lum-line);
  background: #fff;
}
.product-filter-bar .form-control-lum:focus {
  border-color: var(--lum-gold);
  background: #fff;
}

@media (max-width: 767.98px) {
  .product-filter-bar {
    align-items: stretch;
  }

  .product-filter-bar-left {
    width: 100%;
    flex-wrap: wrap;
  }

  .product-filter-bar-right {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .filter-select-cat,
  .filter-select-sort {
    min-width: 100%;
  }

  .lum-card {
    padding: 24px;
  }

  .cart-card-header,
  .cart-item-main,
  .cart-item-footer,
  .checkout-summary-item,
  .ordered-product-item,
  .ordered-product-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-image {
    max-width: 180px;
  }

  .cart-item-total,
  .ordered-product-total {
    text-align: left;
    min-width: 0;
  }

  .cart-summary-card,
  .checkout-sidebar {
    position: static;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Empty state block ───────────────────────────────────
   Blog/Product "no results" fallback */
.empty-state {
  text-align: center;
  padding: 60px 0;
  color: var(--lum-muted);
}
.empty-state i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  color: var(--lum-line);
}

/* ── Sidebar search form ─────────────────────────────────
   Replaces all the inline flex/border/border-radius on search boxes */
.sidebar-search-form {
  display: flex;
  border: 1px solid var(--lum-line);
  border-radius: 50px;
  overflow: hidden;
}
.sidebar-search-form input {
  flex: 1;
  border: 0;
  padding: 12px 18px;
  background: var(--lum-cream);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  color: var(--lum-ink);
}
.sidebar-search-form button {
  border: 0;
  background: var(--lum-gold);
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  font-size: .9rem;
  transition: background .25s;
}
.sidebar-search-form button:hover { background: var(--lum-gold-dark); }

/* ── Sidebar category list ───────────────────────────────
   Replaces ul/li/a inline styles in blog sidebar */
.sidebar-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-cat-list li {
  border-bottom: 1px solid var(--lum-line);
}
.sidebar-cat-list li:last-child { border-bottom: 0; }
.sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--lum-muted);
  font-size: .9rem;
  transition: color .2s;
}
.sidebar-cat-list a:hover,
.sidebar-cat-list a.active { color: var(--lum-gold-dark); }

/* ── Sidebar recent post item ────────────────────────────
   Replaces inline flex/gap/text-decoration on recent post links */
.sidebar-post-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
}
.sidebar-post-item:hover .sidebar-post-title { color: var(--lum-gold-dark); }
.sidebar-post-thumb {
  width: 72px;
  height: 60px;
  border-radius: var(--lum-radius);
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-post-date {
  font-size: .75rem;
  color: var(--lum-gold-dark);
  letter-spacing: 1px;
  display: block;
}
.sidebar-post-title {
  margin: 4px 0 0;
  font-size: .88rem;
  color: var(--lum-ink);
  line-height: 1.4;
  font-family: var(--font-display);
  transition: color .2s;
}

/* ── Opening hours list ──────────────────────────────────
   Replaces inline styles in Booking sidebar hours */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--lum-line);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--lum-muted); }

/* ── Contact info row ────────────────────────────────────
   Replaces inline d-flex gap-3 + strong/span styles on Contact page */
.contact-detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-row .icon {
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail-row .label {
  display: block;
  font-weight: 600;
  color: var(--lum-ink);
  margin-bottom: 2px;
  font-size: .9rem;
}
.contact-detail-row .value,
.contact-detail-row a {
  color: var(--lum-muted);
  font-size: .9rem;
}
.contact-detail-row a:hover { color: var(--lum-gold-dark); }

/* ── Map section ───────────────────────────────────────── */
.contact-map {
  line-height: 0;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* ── Service detail featured image ───────────────────────
   Replaces inline border-radius/overflow/margin on service image wrapper */
.service-detail-img {
  border-radius: var(--lum-radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.service-detail-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

/* ── Service detail description lead ─────────────────────
   Replaces style="font-size:1.15rem;..." on service Description */
.service-lead {
  font-size: 1.15rem;
  color: var(--lum-ink);
  font-family: var(--font-display);
  margin-bottom: 28px;
}

/* ── Service detail content body ─────────────────────────
   Replaces style="color:var(--lum-muted);line-height:1.85" */
.content-body {
  color: var(--lum-muted);
  line-height: 1.85;
}

/* ── Price card amount override for service ──────────────
   Replaces style="font-size:2.8rem" on .amount in service detail */
.price-card .amount-lg { font-size: 2.8rem; line-height: 1; }
.price-card .amount-unit {
  font-size: .9rem;
  font-family: var(--font-body);
}
.price-card .amount-contact { font-size: 1.6rem; }

/* ── Price card list icon ─────────────────────────────────
   Replaces style="color:var(--lum-gold-dark);margin-right:8px" on <i> in ul */
.price-card ul li i { color: var(--lum-gold-dark); margin-right: 8px; }

/* ── Sidebar related service item ────────────────────────
   Replaces inline flex styles on related service links */
.sidebar-service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
}
.sidebar-service-item:hover .sidebar-service-title { color: var(--lum-gold-dark); }
.sidebar-service-thumb {
  width: 64px;
  height: 56px;
  border-radius: var(--lum-radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--lum-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lum-gold-dark);
}
.sidebar-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-service-title {
  margin: 0 0 3px;
  font-size: .9rem;
  color: var(--lum-ink);
  font-family: var(--font-display);
  line-height: 1.3;
  transition: color .2s;
}
.sidebar-service-price {
  font-size: .8rem;
  color: var(--lum-gold-dark);
  font-weight: 500;
}
.sidebar-service-duration {
  font-size: .78rem;
  color: var(--lum-muted);
  margin-left: 8px;
}

/* ── Product detail gallery ──────────────────────────────
   Replaces inline styles on product main image + thumbnails */
.product-gallery-main {
  border-radius: var(--lum-radius-lg);
  overflow: hidden;
  background: var(--lum-cream);
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--lum-radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--lum-line);
  flex-shrink: 0;
  transition: border-color .2s;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumb.active-thumb,
.product-thumb:hover { border-color: var(--lum-gold); }

/* ── Product detail stars row ────────────────────────────
   Replaces style="color:var(--lum-gold)" on star wrapper */
.product-stars { color: var(--lum-gold); }
.product-rating-text {
  font-size: .85rem;
  color: var(--lum-muted);
}

/* ── Product detail price ────────────────────────────────
   Replaces inline style="font-family:...;font-size:2.2rem..." */
.product-price-display {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--lum-gold-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.product-price-display del {
  font-size: 1.2rem;
  color: var(--lum-muted);
  margin-left: 10px;
}

/* ── Product quantity control ────────────────────────────
   Replaces fully inline quantity stepper */
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--lum-line);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}
.qty-control button {
  border: 0;
  background: transparent;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--lum-ink);
  transition: background .2s;
}
.qty-control button:hover { background: var(--lum-cream); }
.qty-control input {
  width: 40px;
  text-align: center;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lum-ink);
}

/* ── Product tab content body ────────────────────────────
   Replaces style="color:var(--lum-muted);line-height:1.8" */
.tab-body {
  color: var(--lum-muted);
  line-height: 1.8;
}

/* ── Review avatar ───────────────────────────────────────
   Replaces inline width/height/border-radius on review avatars */
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lum-sage-light);
  color: var(--lum-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name {
  display: block;
  color: var(--lum-ink);
  font-weight: 600;
}
.review-date { font-size: .8rem; color: var(--lum-muted); }
.review-verified {
  font-size: .78rem;
  color: var(--lum-sage-dark);
  margin-left: 8px;
}
.review-stars { color: var(--lum-gold); }
.review-text { margin: 0; }
.review-empty {
  color: var(--lum-muted);
  text-align: center;
  padding: 40px 0;
}

/* ── Blog article heading override ──────────────────────
   Replaces style="font-size:clamp(1.6rem,...)" on article h1 */
.lum-page-header h1.article-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* ── Blog detail meta bar ────────────────────────────────
   Replaces the big inline style block on article meta */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lum-gold-dark);
}
.article-meta a { color: var(--lum-gold-dark); }
.article-meta .meta-date { color: var(--lum-muted); }

/* ── Blog detail featured image ──────────────────────────
   Replaces inline border-radius/overflow/margin-bottom wrapper */
.article-featured-img {
  border-radius: var(--lum-radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.article-featured-img img { width: 100%; display: block; }

/* ── Blog article body ───────────────────────────────────
   Replaces style="color:var(--lum-muted);line-height:1.85;font-size:1rem" */
.article-body {
  color: var(--lum-muted);
  line-height: 1.85;
  font-size: 1rem;
}

/* ── Blog article footer ─────────────────────────────────
   Replaces inline flex/border-top/gap on post entry footer */
.article-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--lum-line);
}
.article-footer-label {
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lum-muted);
}
.article-footer-cat { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.article-footer-share { display: flex; align-items: center; gap: 10px; }

/* ── Article share button ────────────────────────────────
   Replaces inline style on social share circles */
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lum-cream-dark);
  color: var(--lum-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
}
.share-btn:hover { background: var(--lum-gold); color: #fff; }

/* ── Article category tag (compact btn) ──────────────────
   Replaces style="padding:6px 16px;font-size:.75rem" */
.btn-lum-tag {
  padding: 6px 16px;
  font-size: .75rem;
}

/* ── Contact / Booking card title ────────────────────────
   Replaces style="font-size:1.8rem;margin-bottom:6px" on contact card h3 */
.booking-card h3 { font-size: 1.8rem; margin-bottom: 6px; }
.booking-card > p  { margin-bottom: 28px; }

/* ── Home about stats numbers ────────────────────────────
   Replaces inline font-family/size/color/line-height on stat numbers */
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--lum-gold);
  line-height: 1;
}
.about-stat-num sup { font-size: 1.5rem; }
.about-stat-label {
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lum-muted);
}

/* ── Product card old price ──────────────────────────────
   Replaces style="font-size:.85rem;font-weight:400" on ProductItem del */
.product-card .price del {
  font-size: .85rem;
  font-weight: 400;
  color: var(--lum-muted);
}

/* ── Product card add-to-cart button ─────────────────────
   Replaces style="font-size:.78rem" on ProductItem btn */
.product-card .btn-add-cart { font-size: .78rem; }

/* ── Select appearance reset ─────────────────────────────
   Replaces style="appearance:auto;-webkit-appearance:auto" on booking select */
.form-control-lum.native-select {
  -webkit-appearance: auto;
  appearance: auto;
}

/* 13. Utilities ------------------------------------- */
.border-top-lum { border-top: 1px solid var(--lum-line); }
.service-duration { font-size: .8rem; color: var(--lum-muted); }
