
:root{
  --container: 1200px;
  --header-h: 78px;

  --text: #2b2b2b;
  --white: #fff;

  --border: rgba(0,0,0,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --font-title: "Prata", serif;
  --overlay: rgba(0,0,0,.45);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px; /* yêu cầu */
  color: var(--text);
  background: #fff;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* logo ngang */
.logo img{
  height: 75px;       /* bạn chỉnh theo logo */
  width: auto;
  object-fit: contain;
}

/* nav desktop */
.main-nav{ display: block; }

.nav-list{
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link{
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .78;
  transition: opacity .2s ease;
}
.nav-link:hover{ opacity: 1; }
.nav-link.is-active{ opacity: 1; }

/* hamburger */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span{
  display: block;
  width: 18px;
  height: 2px;
  background: #222;
  border-radius: 2px;
}

/* mobile menu */
.mobile-menu{
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 1200;
}
.mobile-menu.is-open{
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu__overlay{
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.mobile-menu__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open .mobile-menu__panel{
  transform: translateX(0);
}

.mobile-menu__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid var(--border);
}

.logo--mobile img{ height: 36px; }

.mobile-menu__close{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

.mobile-nav{
  list-style: none;
  padding: 10px 0;
  margin: 0;
  background-color: #fff;
}
.mobile-nav li{ border-bottom: 1px solid rgba(0,0,0,.06); }

.mobile-nav__link{
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .85;
}
.mobile-nav__link.is-active{ opacity: 1; }

/* =========================
   HERO / SLIDER
========================= */
main{ padding-top: var(--header-h); } /* để không bị header che */

.hero{
  position: relative;
}

.hero-swiper{
  width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
}

.hero-slide{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ảnh nền */
.hero-slide__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* text */
.hero-content{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}

.hero-title{
  font-family: var(--font-title);
  color: #fff;
  font-size: 72px;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 12px 28px rgba(0,0,0,.35);
  max-width: 520px;
  font-weight: 500;
}

/* dots */
.hero-pagination{
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 18px !important;
  display: flex;
  justify-content: center;
  gap: 5px;
}

/* Swiper default bullets tweak */
.hero .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  opacity: .55;
  background-color: #CECECE;
   border-radius: 10px;
  transition: all .3s ease;
}
.hero .swiper-pagination-bullet-active{
  width: 20px;
  height: 10px;
  background-color: #664134;
  opacity: 1;
  border-radius: 5px;
}


/* =========================
   RESPONSIVE: Tablet / Mobile
========================= */

/* Tablet */
@media (max-width: 991px){
  :root{ --header-h: 72px; }

  .nav-list{ gap: 16px; }
  .nav-link{ font-size: 13px; }

  .hero-title{
    font-size: 56px;
    max-width: 460px;
  }
}

/* Mobile */
@media (max-width: 767px){
  .main-nav{ display: none; }
  .hamburger{ display: inline-flex; flex-direction: column;}

  .container{ width: min(var(--container), calc(100% - 28px)); }

  .hero-swiper{
    height: min(680px, calc(100vh - var(--header-h)));
    min-height: 480px;
  }

  .hero-title{
    font-size: 44px;
    max-width: 320px;
  }

  .hero-fab{
    right: 12px;
  }
}

/* =========================
   HOME ABOUT
========================= */
.home-about{
  padding: 30px 0;
  background: #fff;
}

.home-about__inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

/* media */
.home-about__media{
  position: relative;
  width: 100%;
}

.home-about__img-wrap{
  position: relative;
  width: min(520px, 100%);
}

.home-about__img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}

/* hover ảnh zoom nhẹ + xoay siêu nhẹ cho “sang” */
.home-about__img-wrap:hover img{
  transform: scale(1.08) rotate(-.3deg);
}

/* content */
.home-about__kicker{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

.home-about__title{
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1.08;
  color: #3a2b27;
  font-weight: 500;
}

.home-about__desc{
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .9;
  max-width: 520px;
}

/* button */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  user-select: none;
}

.btn--primary{
  background: #669940;
  color: #fff;
  box-shadow: 0 10px 24px rgba(102,65,52,.25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(102,65,52,.30);
  filter: brightness(1.03);
}

/* shine effect */
.btn--shine{
  position: relative;
  overflow: hidden;
}
.btn--shine::after{
  content:"";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 40%;
  height: 180%;
  background: rgba(255,255,255,.22);
  transform: rotate(20deg) translateX(-220%);
  transition: transform .65s ease;
}
.btn--shine:hover::after{
  transform: rotate(20deg) translateX(520%);
}
.btn--shine span{ position: relative; z-index: 1; }

/* =========================
   REVEAL ANIMATIONS
========================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
.reveal--left{
  transform: translateX(-26px);
}
.reveal--up{
  transform: translateY(22px);
}
.reveal.is-visible{
  opacity: 1;
  transform: translate(0,0);
}

/* delay nhỏ cho đẹp */
.home-about__content .reveal.is-visible{
  transition-delay: .1s;
}

/* =========================
   FLOATING IMAGE
========================= */
.floaty{
  animation: floaty 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){
  .home-about{
    padding: 70px 0;
  }
  .home-about__inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home-about__title{
    font-size: 46px;
  }
  .home-about__img-wrap{
    width: min(560px, 100%);
  }
}

@media (max-width: 767px){
  .home-about{
    padding: 56px 0;
  }
  .home-about__title{
    font-size: 38px;
  }

}

/* =========================
   SERVICE HOME
========================= */
.service-home{
  padding: 30px 0 30px;
  background: #fff;
}

.section-title{
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 36px;
  text-align: center;
  color: #3a2b27;
  font-weight: 500;
}

/* wrapper để đặt arrows 2 bên */
.service-slider-wrap{
  position: relative;
}

/* arrows giống ảnh */
.service-arrow{
  position: absolute;
  top: 170px; /* canh gần giữa ảnh */
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  color: rgba(58,43,39,.75);
  transition: transform .2s ease, color .2s ease, opacity .2s ease;
  opacity: .85;
  z-index: 5;
}
.service-arrow:hover{
  color: rgba(58,43,39,1);
  transform: translateY(-50%) scale(1.06);
  opacity: 1;
}
.service-arrow--prev{ left: -54px; }
.service-arrow--next{ right: -54px; }

/* slider */
.service-swiper{
  width: 100%;
  padding: 0;
}

/* card */
.service-card{
  text-align: center;
  padding: 0 8px;
  display: flex !important;
    flex-direction: column;
    align-items: center;
}

.service-card__img{
  display: block;
  width: 35%;
  aspect-ratio: 1 / 1; /* ảnh vuông */
  /* overflow: hidden;
  background: #eee;
  box-shadow: 0 14px 35px rgba(0,0,0,.10); */
}

.service-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
  margin-top: 8px;
}

.service-card:hover .service-card__img img{
  transform: scale(1.08);
}

.service-card__title{
  font-family: var(--font-title);
  font-size: 26px;
  margin: 22px 0 10px;
  color: #3a2b27;
}

.service-card__desc{
  margin: 0 auto;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.7;
  opacity: .9;
}

/* Responsive */
@media (max-width: 1200px){
  .service-arrow--prev{ left: -34px; }
  .service-arrow--next{ right: -34px; }
}

@media (max-width: 991px){
  .service-home{
    padding: 70px 0 80px;
  }
  .section-title{
    font-size: 46px;
    margin-bottom: 28px;
  }
  .service-arrow{
    top: 155px;
  }
  .service-arrow--prev{ left: -16px; }
  .service-arrow--next{ right: -16px; }
}

@media (max-width: 767px){
  .service-home{
    padding: 56px 0 66px;
  }
  .section-title{
    font-size: 38px;
  }
  .service-arrow{
    top: 148px;
    width: 40px;
    height: 40px;
    font-size: 36px;
  }
  .service-arrow--prev{ left: -8px; }
  .service-arrow--next{ right: -8px; }

  .service-card__title{
    font-size: 24px;
  }
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials{
  padding: 90px 0 80px;
  background: #f6d8d1; /* hồng nhạt như ảnh */
}

.testimonials__head{
  text-align: center;
  margin-bottom: 40px;
}

.testimonials__title{
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1.1;
  color: #669940;
  font-weight: 500;
}

.testimonials__sub{
  margin: 0;
  font-size: 16px;
  opacity: .9;
}

/* slider */
.testi-swiper{
  padding: 18px 0 44px; /* chừa chỗ cho pagination */
}

.testi-card{
  background: #fff;
  border-radius: 16px;
  padding: 34px 28px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  text-align: center;

  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi-avatar{
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: #ddd;
}

.testi-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.testi-name{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #2b2b2b;
}

.testi-text{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  font-style: italic;
  color: rgba(0,0,0,.78);
}

/* pagination như ảnh: active dài ra */
.testi-pagination{
  bottom: 0px !important;
}
.testi-swiper .swiper-slide{
  height: auto;
  display: flex;
}
.testimonials .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 10px;        /* quan trọng để không bị oval “dẹp” */
  opacity: 1;
  background: rgba(0,0,0,.18);
  transition: width .25s ease, background-color .25s ease, transform .25s ease;
  margin: 0 6px !important;
}

.testimonials .swiper-pagination-bullet-active{
  width: 34px;
  background: #664134;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px){
  .testimonials{
    padding: 70px 0 66px;
  }
  .testimonials__title{
    font-size: 46px;
  }
  .testi-card{
    padding: 28px 22px 24px;
  }
}

@media (max-width: 767px){
  .testimonials{
    padding: 56px 0 58px;
  }
  .testimonials__title{
    font-size: 38px;
  }
}

/* =========================
   HOME MENU
========================= */

.home-menu{
  padding: 90px 0 30px;
  background: #fff;
}

.home-menu__inner{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

/* media */

.home-menu__media{
  position: relative;
}

/* background text */

.home-menu__bgtext{
  position: absolute;
  top: -60px;
  left: -20px;

  font-family: var(--font-title);
  font-size: 160px;
  line-height: 1;

  color: rgba(166,120,100,0.12);

  pointer-events: none;
  user-select: none;

  z-index: 0;
  white-space: nowrap;
}

/* image */

.home-menu__img{
  position: relative;
  width: min(520px,100%);
  overflow: hidden;
  z-index: 2;
}

.home-menu__img img{
  width:100%;
  height:100%;
  /* object-fit:cover; */
}

/* content */

.home-menu__kicker{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

.home-menu__title{
  font-family: var(--font-title);
  font-size:56px;
  margin:0 0 16px;
  font-weight: 500;
}

.home-menu__desc{
  margin:0 0 26px;
  font-size:18px;
  line-height:1.7;
}

/* responsive */

@media (max-width:991px){

  .home-menu__inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .home-menu__bgtext{
    font-size:110px;
    top:-60px;
  }

}

@media (max-width:767px){

  .home-menu{
    padding:60px 0;
  }

  .home-menu__title{
    font-size:38px;
  }

  .home-menu__bgtext{
    font-size:70px;
    top:-40px;
  }

}

/* =========================
   FOOTER
========================= */

.site-footer{
  background:#2d2d2d;
  padding:60px 0 30px;
  color:#fff;
}

.footer-inner{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:40px;
  align-items:start;
}

/* logo */

.footer-logo{
  max-width:220px;
  margin-bottom:20px;
}

/* title */

.footer-title{
  font-family:var(--font-title);
  font-size:20px;
  margin-bottom:16px;
  color:#669940;
  font-weight: 500;
}

/* text */

.footer-text{
  font-size:16px;
  line-height:1.7;
  opacity:.9;
  font-weight: 500;
}

/* copyright */

.footer-copy{
  font-size:14px;
  opacity:.8;
}

.footer-copy--mobile{ display:none; }

/* social */

.footer-social{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.footer-social-item{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;

  transition:.25s;
}

.footer-social-item:hover{
 transform: translateY(-2px);
}

.footer-social-item img{
  object-fit:contain;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

  .footer-inner{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }

}

@media (max-width:600px){

  .site-footer{
    padding:50px 0;
  }

  .footer-inner{
    grid-template-columns:1fr;
    gap:28px;
  }

  .footer-logo{
    max-width:200px;
  }

  .footer-copy--desktop{ display:none; }
  .footer-copy--mobile{ display:block; }

}

/* Membership Popup Styles */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* For mobile viewport */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  background-color: rgb(31 29 29 / 50%);
z-index: 9999;
}
.membership-popup .popup-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.membership-popup .popup-slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-popup .popup-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}
.membership-popup .popup-slider .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.membership-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  width: 697px;
  height: 697px;
  /* width: 90vw;
  max-width: 610px;
  height: 90vw; */
  max-height: 90vh;
  aspect-ratio: 1;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
  background: white;
  transform: scale(1.1);
  color: #8B1538;
}
@media (max-width: 768px) {
  .membership-popup .popup-content {
    width: 90vw;
    height: auto;
    max-width: 500px;
    aspect-ratio: 1;
  }
  .membership-popup .popup-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* =========================
   SHARED PAGE HERO (PARALLAX)
========================= */
.page-hero{
  position: relative;
  height: var(--hero-h, 550px);
  overflow: hidden;
}

.page-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* quan trọng: để JS translate mượt */
  transform: translate3d(0,0,0) scale(1.08);
  will-change: transform;
}

/* overlay tối để chữ nổi */
.page-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.page-hero__content{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.page-hero__title{
  margin: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: .2px;
  text-shadow: 0 20px 40px rgba(0,0,0,.35);
  font-family: var(--font-title);
}

/* Responsive */
@media (max-width: 1023px){
  .page-hero__title{ font-size: 48px; }
  .page-hero{ height: 300px; }
}

@media (max-width: 767px){
  .page-hero__title{ font-size: 34px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page-hero__bg{ transform: translate3d(0,0,0) scale(1.03) !important; }
}



.salon{
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), transparent 46%),
    linear-gradient(135deg, #ffffff, #f3f1f1);
}

.salon__wrap{
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
}

/* Heading with lines */
.salon__heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 46px;
}

.salon__title{
  margin: 0;
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #A68230;
  white-space: nowrap;
}

.salon__line{
  height: 1px;
  width: min(280px, 22vw);
  background: rgba(166,130,48,.55);
}

/* Grid images */
.salon__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 530 / 682;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  text-decoration: none;
  transform: translateZ(0);
}

.salon__item img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease, filter .45s ease;
  /* filter: brightness(.88); */
}

/* Overlay tối nhẹ */
/* .salon__item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  opacity: 1;
  transition: opacity .35s ease;
} */

/* icon + (tùy chọn) */
.salon__item::before{
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-size: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

/* Hover */
.salon__item:hover img{
  transform: scale(1.08);
  filter: brightness(1);
}
.salon__item:hover::after{ opacity: 0; }
.salon__item:hover::before{
  opacity: 1;
  transform: translateY(0);
}

/* ===== iPad ===== */
@media (max-width: 1024px){
  .salon{ padding: 64px 18px; }
  .salon__grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .salon__title{ font-size: 26px; }
  .salon__heading{ margin-bottom: 34px; gap: 18px; }
  .salon__line{ width: min(220px, 20vw); }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .salon{ padding: 52px 16px; }
  .salon__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .salon__title{
    font-size: 20px;
    letter-spacing: .22em;
  }

  .salon__line{ width: 18vw; }
}

@media (max-width: 420px){
  .salon__grid{ grid-template-columns: 1fr; }
  .salon__line{ display: none; }
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page{
  padding:30px 0;
  background:#fff;
}

.contact-page__inner{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:60px;
  align-items:start;
}

/* title */

.contact-title{
  font-family: var(--font-title);
  font-size:56px;
  margin-bottom:40px;
  font-weight: 500;
}

/* blocks */

.contact-block{
  margin-bottom:28px;
}

.contact-block h3{
  font-size:22px;
  margin-bottom:8px;
  font-weight:500;
}

.contact-block p{
  font-size:16px;
  line-height:1.7;
  opacity:.9;
}

/* map */

.contact-map{
  width:100%;
  height:460px;
  border:1px solid #cfd6df;
}

.contact-map iframe{
  width:100%;
  height:100%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

  .contact-page__inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-map{
    height:380px;
  }

}

@media (max-width:767px){

  .contact-page{
    padding:60px 0;
  }

  .contact-title{
    font-size:38px;
  }

}
/* POLICY SECTION */

.policy-section{
  padding:60px 20px;
  background:#fff;
}

.policy-container{
  max-width:900px;
  margin:auto;
  /* text-align:center; */
  line-height:1.9;
  font-size:16px;
  color:#6f6f6f;
}

.policy-container p{
  margin-bottom:18px;
}

.policy-intro{
  margin-top:10px;
}

/* LIST */

.policy-list{
  list-style:none;
  padding:0;
  margin:10px auto 20px;
  max-width:850px;
}

.policy-list li{
  margin:10px 0;
}

.policy-list li::before{
  content:"○";
  margin-right:10px;
  color:#777;
}

/* NOTE */

.policy-note{
  color:#8a8a8a;
  margin:18px 0;
}

/* FOOTER TEXT */

.policy-thank{
  margin-top:10px;
}

.policy-end{
  margin-top:5px;
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--bg);
  position: relative;
  /* z-index: 10; */
  margin-top: 20PX;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Chiều cao bằng 90% chiều cao màn hình */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 40px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}



/* ====== SERVICES PAGE LIST ====== */
.svc{
  background:#ffffff;
  /* background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .06), transparent 45%), linear-gradient(135deg, #0b0b0b, #1a1a1a); */
  padding: 20px;
}

.svc-group{
  max-width: var(--page-max);
  margin: 0 auto 15px;
}

.svc-title{
  font-family: var(--font-title);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 42px);
  text-align: center;
  margin: 0 0 22px;
  color: #669940;
}
.svc-sub-title{
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
  margin: 0 0 16px;
  color: #669940;
}
/* 2-column grid */
.svc-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 70px;
}
.svc-col{ display: grid; gap: 22px;align-content: start; }

/* Item with dotted leader */
.svc-item .row{
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.svc-item .title{
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  /* white-space: nowrap; */
  font-weight: 500;
}
.svc-note{
  text-align:center;
  font-size:15px;
  color:#6f5b4f;
  margin-top:-10px;
  margin-bottom:40px;
  letter-spacing:.5px;
}
.svc-item .leader{
  flex: 1 1 auto;
  height: 0;
  border-bottom: 2px dotted #2b2b2b;
  transform: translateY(-4px);
}
.svc-item .price{
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.svc-item .desc{
  margin: 8px 0 0;
  line-height: 1.75;
  font-size: 16px;

}

/* subtle hover lift */
.svc-item{ transition: transform .18s ease; }
.svc-item:hover{ transform: translateY(-3px); }

/* spacing between groups */
.svc-group + .svc-group{ margin-top: 36px; }

/* Responsive */
@media (max-width: 980px){
  .svc-grid{ grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px){
  .svc{ padding: 56px 16px 76px; }
}


/* floating-icons */
.floating-icons {
  position: fixed;
  top: 30%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  background: #669940;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #93bd73;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}


/* =========================
   BLOG LIST PAGE
========================= */
.blog-list-page{
  padding: 72px 0 92px;
  background: #fff;
}

.blog-list-head{
  text-align: center;
  margin-bottom: 44px;
}

.blog-list-title{
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 500;
  font-family: var(--font-title);
}

.blog-list-sub{
  margin: 0;
  font-size: 16px;
  color: rgba(0,0,0,.55);
  line-height: 1.8;
}

/* Grid 3 cột */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.blog-card{
  display:flex;
  flex-direction: column;
}

.blog-thumb{
  display:block;
  overflow:hidden;
  border-radius: 0; /* giống mẫu: ảnh vuông */
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-thumb img{
  width:100%;
  height: 360px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
  will-change: transform;
}

.blog-card:hover .blog-thumb{
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0,0,0,.14);
}
.blog-card:hover .blog-thumb img{
  transform: scale(1.08);
}

.blog-body{
  padding-top: 18px;
}

.blog-title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.blog-title a{
  color: rgba(0,0,0,.85);
  text-decoration: none;
  transition: color .2s ease;
}
.blog-title a:hover{
  color: rgba(0,0,0,1);
}

.blog-excerpt{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(0,0,0,.55);
}

.blog-meta{
  font-size: 14px;
  line-height: 1.6;
  display:flex;
  gap: 6px;
  align-items:center;
  flex-wrap: wrap;
}
.blog-date{
  color: rgba(231,76,60,.95);
}
.blog-dot{
  color: rgba(0,0,0,.35);
}
.blog-comment{
  color: rgba(0,0,0,.45);
  text-decoration:none;
}
.blog-comment:hover{
  color: rgba(0,0,0,.75);
}

/* Pagination */
.blog-pagination{
  margin-top: 54px;
  display:flex;
  justify-content:center;
  gap: 10px;
  align-items:center;
}

.pg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.75);
  text-decoration:none;
  transition: transform .2s ease, background .2s ease;
}
.pg-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.07);
}
.pg-btn.is-active{
  background: rgba(231,76,60,.95);
  color:#fff;
}
.pg-ellipsis{
  color: rgba(0,0,0,.45);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1023px){
  .blog-list-page{ padding: 60px 0 76px; }
  .blog-list-title{ font-size: 34px; }

  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .blog-thumb img{ height: 320px; }
}

@media (max-width: 767px){
  .blog-list-page{ padding: 52px 0 64px; }
  .blog-list-title{ font-size: 28px; }

  .blog-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-thumb img{ height: 260px; }
}

/* =========================
   BLOG DETAIL - layout with left order
========================= */
.post{
  padding: 72px 0 92px;
  background: #fff;
}

.post-layout{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

/* LEFT: blogs order */
.post-left{
  position: sticky;
  top: calc(var(--header-h) + 18px);
  align-self: start;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
}

.post-left__title{
  margin: 6px 0 14px;
  font-size: 16px;
  letter-spacing: .6px;
  color: rgba(0,0,0,.80);
}


.post-order{
  list-style: none;
  padding: 0;
  counter-reset: postorder;
}

.post-order li{
  counter-increment: postorder;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.post-order li::before{
  content: counter(postorder) ".";
  position: absolute;
  left: 0;
  top: 0;              /* luôn nằm cùng dòng đầu */
  font-weight: 700;
  color: rgba(0,0,0,.75);
}
.post-order a{
  color: rgba(0,0,0,.62);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.post-order a:hover{
  color: rgba(0,0,0,.85);
  transform: translateX(2px);
}

/* RIGHT: content width */
.post-article{
  width: 100%;
}

/* Featured image */
.post-cover{
  margin: 0 0 18px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
.post-cover img{
  width: 100%;
  /* height: 360px; */
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}
.post-cover:hover img{
  transform: scale(1.06);
}

/* Keep your existing post typography (from before) */
.post-head{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  margin-bottom: 22px;
}

.post-date{
  min-width: 64px;
  text-align:center;
  color: rgba(0,0,0,.35);
}
.post-day{ display:block; font-size: 34px; line-height: 1; }
.post-mon{ display:block; font-size: 18px; margin-top: 4px; }

.post-title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(0,0,0,.85);
  font-family: var(--font-title);
}

.post-meta{
  font-size: 14px;
  color: rgba(0,0,0,.35);
  line-height: 1.7;
}

.post-content{
  font-size: 16px;
  color: rgba(0,0,0,.58);
  line-height: 1.95;
}
.post-content p{ margin: 0 0 16px; }

.post-content h2{
  margin: 30px 0 12px;
  font-size: 34px;
  line-height: 1.25;
  color: rgba(0,0,0,.85);
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}
.post-content h3{
  margin: 18px 0 6px;
  font-size: 18px;
  color: rgba(0,0,0,.80);
  font-weight: 700;
}
.post-content ul{
  margin: 10px 0 18px 18px;
  padding: 0;
}
.post-content ul li{ margin: 6px 0; }

.post-ol{
  margin: 10px 0 18px 18px;
  padding: 0;
}
.post-ol > li{ margin: 10px 0 14px; }

/* ===== POST CTA FIX ===== */

.post-cta{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.post-cta__rows{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.post-cta__row{
  display: flex;              
  align-items: center;        
  gap: 10px;                  
  flex-wrap: nowrap;          
}

.post-cta__icon{
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;             
}

.post-cta__label{
  font-size: 16px;            
  line-height: 1.6;
}

.post-cta__label a{
  color: inherit;
  text-decoration: none;
}

.post-cta__label a:hover{
  text-decoration: underline;
}

.post-cta__note{
  margin-top: 20px;
  font-size: 16px;
  opacity: .75;
}

/* =========================
   Responsive (3 devices)
========================= */
@media (max-width: 1023px){
  .post{ padding: 60px 0 76px; }

  .post-layout{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .post-left{
    position: relative;
    top: auto;
    order: -1;
  }

  .post-title{ font-size: 30px; }
  .post-content h2{ font-size: 30px; }
}

@media (max-width: 767px){
  .post{ padding: 52px 0 64px; }


  .post-head{
    flex-direction: column;
    gap: 10px;
  }

  .post-date{
    display:flex;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
  }
  .post-day{ font-size: 28px; }
  .post-mon{ font-size: 16px; margin:0; }

  .post-title{ font-size: 26px; }
  .post-content h2{ font-size: 26px; }
}