:root{
  --header-h: 86px;
  --container: 1200px;

  --text: #2a2a2a;
  --muted: rgba(0,0,0,.55);
  --white: #fff;
  --font-title: 'Philosopher', serif;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:#fff;
  font-size: 16px;
  line-height: 1.7;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 160px;
}
.brand img{
  height: 52px;            /* logo ngang */
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.main-nav{ display:block; }
.nav-list{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  align-items:center;
  gap: 26px;
}
.nav-list a{
  font-size: 14px;
  letter-spacing: .6px;
  padding: 10px 2px;
  position: relative;
  color: rgba(0,0,0,.68);
}
.nav-list a:hover{ color: rgba(0,0,0,.88); }
.nav-list a.is-active{
  color: rgba(0,0,0,.92);
}
.nav-list a.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:6px;
  height: 3px;
  border-radius: 10px;
  background: rgba(210,60,60,.75);
}

/* Hamburger (hidden on desktop) */
.hamburger{
  display:none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.hamburger span{
  display:block;
  height:2px;
  background: rgba(0,0,0,.75);
  margin: 6px 0;
  border-radius: 2px;
}

/* Mobile menu drawer */
.mobile-menu{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 1200;
}
.mobile-menu.is-open{ display:block; }

.mobile-menu__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
}

.mobile-menu__panel{
  position:absolute;
  top:0; right:0;
  /* height: 100%; */
  width: min(340px, 86vw);
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .25s ease;
  display:flex;
  flex-direction:column;
}
.mobile-menu.is-open .mobile-menu__panel{
  transform: translateX(0);
}

.mobile-menu__head{
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-menu__head span{
  font-weight: 700;
  letter-spacing: .6px;
}
.mobile-menu__close{
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.mobile-menu__list{
  list-style:none;
  margin: 0;
  padding: 12px 0;
}
.mobile-menu__list a{
  display:block;
  padding: 14px 18px;
  border-left: 4px solid transparent;
  color: rgba(0,0,0,.75);
}
.mobile-menu__list a:hover{
  background: rgba(0,0,0,.04);
}
.mobile-menu__list a.is-active{
  border-left-color: rgba(210,60,60,.75);
  color: rgba(0,0,0,.9);
  font-weight: 700;
}

/* =========================
   HERO / SLIDER
========================= */
.hero{
  padding-top: var(--header-h); /* chừa chỗ cho header fixed */
}

.hero-swiper{
  width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 460px;
}

.hero-slide{
  position: relative;
  width:100%;
  height: 100%;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.04);
}



.hero-content{
  position: relative;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  /* max-width: 740px; */
}

.hero-title{
  margin:0 0 18px;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: .2px;
  font-family: 'Philosopher', serif;
}

.hero-list{
  margin:0;
  padding: 0;
  list-style:none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-list li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}
.hero-list li::before{
  content: "✓";
  position:absolute;
  left:0; top:0;
  color: rgba(210,60,60,.85);
  font-weight: 700;
}

/* Slider controls */
.hero-controls{
  position:absolute;
  left:0; right:0; bottom: 18px;
  z-index: 10;
  pointer-events: none;
}
.hero-controls .swiper-pagination{
  pointer-events: auto;
}
.hero-arrows{
  pointer-events: auto;
}

/* Swiper button style tweak */
.swiper-button-prev,
.swiper-button-next{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 14px;
  color: rgba(0,0,0,.75);
}

/* pagination dots */
.swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  opacity: .45;
}
.swiper-pagination-bullet-active{
  opacity: .95;
}

/* =========================
   RESPONSIVE (PC / Tablet / Mobile)
========================= */

/* Tablet */
@media (max-width: 1023px){
  :root{ --header-h: 78px; }

  .nav-list{ gap: 18px; }
  .hero-title{ font-size: 56px; }


}

/* Mobile */
@media (max-width: 767px){
  :root{ --header-h: 72px; }

  .main-nav{ display:none; }
  .hamburger{ display:block; }

  .brand img{ height: 46px; }

  .hero-swiper{
    height: calc(70svh - var(--header-h));
    min-height: 520px;
  }

  .hero-content{
    justify-content: flex-start;
    padding-top: 70px;
    max-width: 100%;
  }

  .hero-title{
    font-size: 42px;
    margin-bottom: 12px;
  }
  .hero-list{
    line-height: 1.6;
  }

  .swiper-button-prev,
  .swiper-button-next{
    display:none;
  }
}
/* =====================================
   SMOOTH / ANIMATION ENHANCEMENTS
===================================== */
html {
  scroll-behavior: smooth;
}

/* Header transition + state when scroll */
.site-header{
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.site-header.is-scrolled{
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-bottom-color: rgba(0,0,0,.08);
}

/* Nav hover underline animation */
.nav-list a{
  transition: color .2s ease;
}
.nav-list a::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:6px;
  height:3px;
  border-radius: 999px;
  background: rgba(210,60,60,.75);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-list a:hover::after{ transform: scaleX(1); }
.nav-list a.is-active::after{ transform: scaleX(1); }

/* Hamburger animation (3 lines -> X) */
.hamburger span{
  transition: transform .22s ease, opacity .18s ease;
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2){
  opacity: 0;
}
.hamburger.is-active span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay fade + panel slide */
.mobile-menu{ 
  opacity: 0;
  transition: opacity .2s ease;
}
.mobile-menu.is-open{ opacity: 1; }

.mobile-menu__overlay{
  opacity: 0;
  transition: opacity .2s ease;
}
.mobile-menu.is-open .mobile-menu__overlay{
  opacity: 1;
}

.mobile-menu__panel{
  transition: transform .25s ease;
}

/* Mobile list item hover */
.mobile-menu__list a{
  transition: background .2s ease, border-color .2s ease, padding-left .2s ease;
}
.mobile-menu__list a:hover{
  padding-left: 22px;
}

/* Hero image "Ken Burns" subtle zoom */
.hero-bg{
  animation: kenburns 10s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns{
  from { transform: scale(1.04); }
  to   { transform: scale(1.11); }
}

/* Text appear animation (controlled by JS class) */
.hero-title,
.hero-list li{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}

.hero-slide.is-active-anim .hero-title{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .08s;
}
.hero-slide.is-active-anim .hero-list li{
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for list */
.hero-slide.is-active-anim .hero-list li:nth-child(1){ transition-delay: .16s; }
.hero-slide.is-active-anim .hero-list li:nth-child(2){ transition-delay: .22s; }
.hero-slide.is-active-anim .hero-list li:nth-child(3){ transition-delay: .28s; }
.hero-slide.is-active-anim .hero-list li:nth-child(4){ transition-delay: .34s; }

/* Swiper buttons hover */
.swiper-button-prev,
.swiper-button-next{
  transition: transform .18s ease, background .18s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.9);
}

/* Pagination hover */
.swiper-pagination-bullet{
  transition: transform .18s ease, opacity .18s ease;
}
.swiper-pagination-bullet:hover{
  transform: scale(1.15);
  opacity: .8;
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; animation: none !important; }
}

/* =========================
   MOBILE MENU - POLISHED
========================= */

/* nền overlay đậm + blur nhẹ để không thấy banner phía sau */
.mobile-menu{
  display: block;            /* giữ block để animate opacity */
  pointer-events: none;      /* chỉ cho click khi open */
  opacity: 0;
  transition: opacity .22s ease;
}
.mobile-menu.is-open{
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__overlay{
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .22s ease;
}
.mobile-menu.is-open .mobile-menu__overlay{
  opacity: 1;
}

/* panel trượt + bo góc + padding đẹp */
.mobile-menu__panel{
  top: 10px;
  right: 10px;
  width: min(360px, 88vw);

  border-radius: 18px;
  overflow: hidden;
  background: #fff;

  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  transform: translateX(110%);
  transition: transform .26s ease;
}
.mobile-menu.is-open .mobile-menu__panel{
  transform: translateX(0);
}

/* header trong panel: cân trái phải, gọn */
.mobile-menu__head{
  height: 64px;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.mobile-menu__head span{
  font-weight: 800;
  letter-spacing: .8px;
  font-size: 13px;
  color: rgba(0,0,0,.75);
}

/* nút close đẹp hơn */
.mobile-menu__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,0,0,.04);
  transition: background .2s ease, transform .2s ease;
}
.mobile-menu__close:hover{
  background: rgba(0,0,0,.07);
  transform: translateY(-1px);
}

/* list: spacing to, dễ bấm */
.mobile-menu__list{
  padding: 10px 10px 14px;
}

/* item: dạng pill + hover/active rõ */
.mobile-menu__list a{
  padding: 14px 14px;
  margin: 6px 0;
  border-radius: 14px;

  border-left: 0;
  background: transparent;

  font-weight: 700;
  letter-spacing: .4px;
  font-size: 13px;

  color: rgba(0,0,0,.78);
  transition: background .2s ease, transform .2s ease;
}

.mobile-menu__list a:hover{
  background: rgba(0,0,0,.05);
  transform: translateY(-1px);
}

/* active: nền hồng nhạt + chấm đỏ (đúng vibe nails/spa) */
.mobile-menu__list a.is-active{
  background: rgba(210,60,60,.10);
  color: rgba(0,0,0,.9);
  position: relative;
}
.mobile-menu__list a.is-active::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(210,60,60,.85);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu__list a.is-active{
  padding-left: 28px; /* chừa chỗ chấm đỏ */
}

/* mobile: đảm bảo hamburger hiện và nav desktop ẩn */
@media (max-width: 767px){
  .main-nav{ display:none; }
  .hamburger{ display:block; }
}

/* =========================
   WELCOME SECTION
========================= */
.welcome{
  padding: 78px 0 45px;
  background: #fff;
}

.welcome-head{
  text-align: center;
  margin-bottom: 44px;
}

.welcome-title{
  margin: 0px;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: .2px;
}

.welcome-accent{
  position: relative;
  display: inline-block;
  font-family: var(--font-title);
}

/* underline chạy nhẹ */
/* .welcome-accent::after{
  content:"";
  position:absolute;
  left: 4px;
  right: 4px;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: rgba(210,60,60,.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
} */
.is-inview .welcome-accent::after{
  transform: scaleX(1);
}

.welcome-sub{
  margin: 0;
  color: rgba(0,0,0,.55);
  font-size: 16px;
  line-height: 1.7;
}

/* Grid 4 cột trên PC */
.welcome-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.welcome-card{
  text-align: center;
}

.welcome-thumb{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.welcome-thumb img{
  width:100%;
  height: 210px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
  will-change: transform;
}

/* Hover: nhấc lên + zoom ảnh nhẹ */
.welcome-card:hover .welcome-thumb{
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}
.welcome-card:hover .welcome-thumb img{
  transform: scale(1.08);
}

.welcome-name{
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: var(--font-title);
}

.welcome-desc{
  margin: 0;
  color: rgba(0,0,0,.55);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   REVEAL ANIMATION (scroll)
========================= */
.js-reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--d, 0ms);
}
.js-reveal.is-inview{
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1023px){
  .welcome{ padding: 64px 0 76px; }
  .welcome-title{ font-size: 36px; }
  .welcome-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .welcome-thumb img{ height: 220px; }
}

/* Mobile */
@media (max-width: 767px){
  .welcome{ padding: 52px 0 66px; }
  .welcome-title{ font-size: 28px; }
  .welcome-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .welcome-thumb img{ height: 220px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .js-reveal{ opacity: 1; transform: none; }
  .welcome-thumb, .welcome-thumb img{ transition: none !important; }
}

/* =========================
   INFO SECTION (IMAGE + DETAILS)
========================= */
.info{
  padding: 45px 0 45px;
  background: #fff;
}

.info-head{
  text-align:center;
  margin-bottom: 44px;
}

.info-title{
  margin:0 0 10px;
  font-size: 52px;
  font-weight: 500;
  font-family: var(--font-title);
}

.info-sub{
  margin:0;
  color: rgba(0,0,0,.55);
  font-size: 16px;
  line-height: 1.7;
}

.info-grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items:center;
}

/* Left image */
.info-media{
  margin:0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.info-media img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
  will-change: transform;
}

.info-caption{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  color: rgba(255,255,255,.95);
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
  font-family: var(--font-title);
}

/* Hover effect */
.info-media:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0,0,0,.16);
}
.info-media:hover img{
  transform: scale(1.08);
}

/* Right list */
.info-list{
  display:flex;
  flex-direction:column;
  gap: 22px;
}

.info-item{
  display:flex;
  gap: 16px;
  align-items:flex-start;
}

.info-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(210,60,60,.12);
  color: rgba(210,60,60,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 44px;
  position: relative;
}

/* subtle pulse */
.info-icon::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: 999px;
  border: 1px solid rgba(210,60,60,.22);
  opacity: 0;
  transform: scale(.9);
}
.info-item:hover .info-icon::after{
  animation: iconPulse .9s ease;
}
@keyframes iconPulse{
  0%{ opacity:0; transform: scale(.9); }
  40%{ opacity:1; }
  100%{ opacity:0; transform: scale(1.15); }
}

.info-text h3{
  margin: 2px 0 6px;
  font-size: 18px;
  letter-spacing: .6px;
}

.info-text p{
  margin:0;
  color: rgba(0,0,0,.58);
  line-height: 1.8;
  font-size: 16px;
}
.info-text p span{
  display:inline-block;
  margin-left: 6px;
}

.info-link{
  color: rgba(0,0,0,.75);
  text-decoration: none;
  position: relative;
}
.info-link::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-3px;
  height:2px;
  background: rgba(210,60,60,.45);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
}
.info-link:hover::after{ transform: scaleX(1); }

/* =========================
   Responsive
========================= */
@media (max-width: 1023px){
  .info{ padding: 66px 0 78px; }
  .info-title{ font-size: 40px; }
  .info-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .info-media img{ height: 320px; }
  .info-caption{ font-size: 38px; }
}

@media (max-width: 767px){
  .info{ padding: 52px 0 64px; }
  .info-title{ font-size: 32px; }
  .info-media img{ height: 240px; }
  .info-caption{
    font-size: 30px;
  }
  .info-item{ gap: 12px; }
  .info-icon{ width: 42px; height: 42px; flex-basis: 42px; }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial{
  position: relative;
  width: 100%;
  /* height: 560px; */
  overflow: hidden;
}

.testimonial-slide{
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.testimonial-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.testimonial-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
   padding-bottom: 30px;
}

.testimonial-title{
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: var(--font-title);
}

.testimonial-avatar{
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
}

.testimonial-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text{
  font-size: 16px;  /* theo yêu cầu */
  line-height: 1.9;
  margin-bottom: 20px;
}

.testimonial-name{
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 18px;
}

/* nav button style */
.testimonial-nav .swiper-button-prev,
.testimonial-nav .swiper-button-next{
  width: 40px;
  height: 40px;
  background: #e74c3c;
  border-radius: 6px;
  color: #fff;
}

.testimonial-nav .swiper-button-prev::after,
.testimonial-nav .swiper-button-next::after{
  font-size: 14px;
  font-weight: bold;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1023px){
  .testimonial,
  .testimonial-slide{
    height: 500px;
  }

  .testimonial-title{
    font-size: 34px;
  }
}

@media (max-width: 767px){
  .testimonial,
  .testimonial-slide{
    height: 460px;
  }

  .testimonial-title{
    font-size: 26px;
  }

  .testimonial-text{
    font-size: 16px;
    padding: 0 10px;
  }
}

/* =========================
   GALLERY SECTION
========================= */

.gallery{
  margin-top: 5px; 
  position: relative;
  overflow: hidden;
}

.gallery-swiper{
  width: 100%;
}

.gallery-item{
  overflow: hidden;
}

.gallery-item img{
  width: 100%;
  /* height: 260px; */
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img{
  transform: scale(1.08);
}

/* Arrow style */
.gallery-prev,
.gallery-next{
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  background: #e74c3c;
}

.gallery-prev::after,
.gallery-next::after{
  font-size: 16px !important;
  font-weight: bold !important;
  color: #fff !important;

}

/* vị trí arrow */
.gallery-prev{
  left: 15px;
}
.gallery-next{
  right: 15px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1023px){
  .gallery-item img{
    height: 220px;
  }
}

@media (max-width: 767px){
  .gallery-item img{
    height: 180px;
  }
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background: #0f0f10;
  color: rgba(255,255,255,.82);
  padding-top: 64px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 52px;
}

.footer-brand img{
  height: 80px;
  width:auto;
  object-fit: contain;
  filter: brightness(1.2);
}

.footer-desc{
  margin: 14px 0 18px;
  font-size: 16px;     /* theo yêu cầu */
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.footer-title{
  margin: 6px 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .6px;
  color: #fff;
  position: relative;
}
.footer-title::after{
  content:"";
  display:block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  margin-top: 10px;
  background: rgba(231,76,60,.85);
}

/* Links */
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 10px;
}
.footer-links a{
  color: rgba(255,255,255,.72);
  transition: color .2s ease, transform .2s ease;
  display:inline-block;
}
.footer-links a:hover{
  color:#fff;
  transform: translateX(3px);
}

/* Hours */
.footer-hours{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 12px;
}
.footer-hours li{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.footer-hours span:first-child{
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

/* Contact */
.footer-contact{
  display:grid;
  gap: 12px;
}
.footer-contact__row{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.footer-contact__row p{
  margin:0;
}
.footer-contact__row a{
  color: rgba(255,255,255,.72);
}
.footer-contact__row a:hover{
  color:#fff;
}
.footer-contact__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(231,76,60,.14);
  color: rgba(231,76,60,.95);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 28px;
  margin-top: 1px;
}

/* Social */
.footer-social{
  display:flex;
  gap: 10px;
}
.footer-social__btn{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .2s ease, background .2s ease;
}
.footer-social__btn:hover{
  background: rgba(231,76,60,.22);
  transform: translateY(-2px);
}

/* Bottom */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.footer-bottom__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.footer-bottom p{
  margin:0;
  color: rgba(255,255,255,.62);
  font-size: 16px;
}

/* Back to top */
.back-top{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  cursor:pointer;
  background: rgba(231,76,60,.95);
  color:#fff;
  font-size: 18px;
  line-height: 42px;
  transition: transform .2s ease, filter .2s ease;
}
.back-top:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 1023px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 767px){
  .site-footer{ padding-top: 52px; }
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-bottom__inner{
    flex-direction: column;
    align-items:flex-start;
  }

}
/* =========================
   FOOTER SUBSCRIBE
========================= */

.footer-subscribe{
  margin-top: 22px;
}

.footer-subscribe__label{
  margin: 0 0 8px;
  font-size: 16px;
  color: rgba(255,255,255,.75);
}

.footer-form{
  display:flex;
  gap: 8px;
}

.footer-form input{
  flex:1;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
  transition: border .2s ease, background .2s ease;
}

.footer-form input::placeholder{
  color: rgba(255,255,255,.45);
}

.footer-form input:focus{
  border-color: rgba(231,76,60,.7);
  background: rgba(255,255,255,.09);
}

.footer-form button{
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 0;
  cursor:pointer;
  background: rgba(231,76,60,.95);
  color:#fff;
  font-size: 16px;
  font-weight: 600;
  transition: transform .2s ease, filter .2s ease;
}

.footer-form button:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Mobile: xuống dòng cho đẹp */
@media (max-width: 767px){


  .footer-form button{
    width: 100%;
  }
}

/* =========================
   SHARED PAGE HERO (PARALLAX)
========================= */
.page-hero{
  position: relative;
  height: var(--hero-h, 550px);
  overflow: hidden;
  margin-top: var(--header-h) -10px;
  background: #000;
}

.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: var(--hero-h, 360px); }
}

@media (max-width: 767px){
  .page-hero__title{ font-size: 34px; }
  .page-hero{ height: 300px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page-hero__bg{ transform: translate3d(0,0,0) scale(1.03) !important; }
}

/* =========================
   ABOUT SECTION (Image + Text)
========================= */
.about-section{
  padding: 72px 0 92px;
  background: #fff;
}

.about-wrap{
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 56px;
  align-items: start;
}

/* Left image box - NO red border */
.about-media{
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-media img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hover subtle */
.about-media:hover{
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0,0,0,.12);
}

/* Right content */
.about-title{
  margin: 6px 0 18px;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: .2px;
  font-family: var(--font-title);
}

.about-content p{
  margin: 0 0 16px;
  font-size: 16px; /* theo yêu cầu default 16 */
  line-height: 1.9;
  color: rgba(0,0,0,.60);
}

.about-content em{
  color: rgba(0,0,0,.72);
  font-style: italic;
}

.about-content strong{
  color: rgba(0,0,0,.75);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1023px){
  .about-section{ padding: 60px 0 76px; }
  .about-wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-title{ font-size: 36px; }
}

@media (max-width: 767px){
  .about-section{ padding: 52px 0 64px; }
  .about-title{ font-size: 28px; }
}


/* ================= MENU HERO (PEDICURES) ================= */

.menu-hero{
  background:#fff;
  padding: 50px 0;
  color:#222;
  position: relative;
  z-index: 2;
}

.menu-hero__inner{
  display:grid;
  grid-template-columns: 0.9fr 1fr;  /* trái text/menu - phải ảnh */
  gap: 40px;
  align-items:start;
}

/* LEFT */
.menu-hero__left{ position:relative; }

/* ghost heading */
.menu-hero__ghost{
  margin:0;
  font-size:80px;
  line-height:1;
  color:rgba(210,60,60,.15);
  font-family: var(--font-display);
  font-weight:500;
}

/* phần nội dung thụt vào so với ghost */
.menu-hero__copy{
  margin-top: 10px;
  padding-left: 70px; /* thụt như design */
}

.menu-hero__title{
  margin: 0 0 18px 0;
  font-size: 44px;
  font-family: var(--font-title);
  font-weight:500;
  color:#3b2f2a;
}


.menu-hero__right{
  position: relative;
}

.menu-hero__media{
  width: 100%;
  /* max-width: 520px; */
}

.menu-hero__photo{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px; /* nếu bạn muốn bo nhẹ */
}


/* ================= MENU LIST ================= */

.menu-list{
  margin-top: 10px;
}

.menu-item{
  padding: 5px 0 10px;
}
.menu-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding-bottom:8px;
  border-bottom: 1px dashed rgba(0,0,0,.35); /* nét đứt như thiết kế */
}

.menu-name{
  margin:0;
  font-size:18px;
  letter-spacing:.06em;
  font-weight:700;
  color:#4B3C3B;
  /* text-transform:uppercase; */
}

.menu-price{
  font-size:18px;
  font-weight:700;
  color:#4B3C3B;
  white-space:nowrap;
}

/* mô tả italic như ảnh */
.menu-desc{
  margin: 10px 0 0 0;
  font-size: 16px;
  line-height: 1.7;
  color:#191919;
  font-style: italic;
  max-width: 640px;
}

.menu-note{
  display:inline-block;
  margin-top: 6px;
  font-style: normal;
  letter-spacing:.06em;
  font-size: 16px;
  color:#191919;
  text-transform: uppercase;
}

.menu-group-title{
  margin: 35px 0 15px 0;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 500;
  color:#3b2f2a;
}

.menu-group-title:first-of-type{
  margin-top: 10px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .menu-hero__inner{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .menu-hero__inner.image-on-left > .menu-hero__left {
    order: 2;
  }
  
  .menu-hero__inner.image-on-left > .menu-hero__right {
    order: 1;
  }

  .menu-hero__copy{
    padding-left: 0;
  }

  .menu-hero__ghost{
    font-size: 64px;
  }

  .menu-hero__media{
    max-width: 560px;
    margin: 0;
  }

  .menu-name{
    white-space: normal;
  }
}

.image-promotion {
  display: flex;
  justify-content: center;
  padding: 20px;
}


.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;
  }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section{
  padding: 76px 0 0;
  background: #fff;
}

.contact-wrap{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
}

/* Left card */
.contact-card{
  background: #fbf2f4; /* hồng nhạt giống mẫu */
  border-radius: 8px;
  padding: 44px 42px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.contact-title{
  margin: 0 0 22px;
  font-size: 44px;
  font-weight: 500;
  text-align: center;
  font-family: var(--font-title);
}

.contact-form{
  display: grid;
  gap: 14px;
}

.contact-field input,
.contact-field textarea{
  width: 100%;
  border: 1px solid rgba(231,76,60,.65);
  background: #fff;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 16px; /* theo yêu cầu */
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-field textarea{
  resize: vertical;
  min-height: 160px;
}

.contact-field input:focus,
.contact-field textarea:focus{
  border-color: rgba(231,76,60,.9);
  box-shadow: 0 0 0 4px rgba(231,76,60,.12);
}

/* Button */
.contact-btn{
  margin-top: 6px;
  height: 56px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  background: rgba(231,76,60,.95);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .6px;
  transition: transform .2s ease, filter .2s ease;
}

.contact-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Right info */
.contact-info{
  display: grid;
  gap: 26px;
  padding-top: 0px;
}

.contact-info__item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: rgba(231,76,60,.14);
  color: rgba(231,76,60,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  position: relative;
}

.contact-info__text h3{
  margin: 4px 0 6px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .7px;
  color: rgba(0,0,0,.82);
}

.contact-info__text p{
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(0,0,0,.58);
}

.contact-info__text a{
  color: rgba(0,0,0,.65);
  text-decoration: none;
}
.contact-info__text a:hover{
  color: rgba(0,0,0,.85);
}

/* subtle icon pulse on hover */
.contact-info__icon::after{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius: 999px;
  border: 1px solid rgba(231,76,60,.25);
  opacity: 0;
  transform: scale(.9);
}
.contact-info__item:hover .contact-info__icon::after{
  animation: contactPulse .9s ease;
}
@keyframes contactPulse{
  0%{ opacity:0; transform: scale(.9); }
  40%{ opacity:1; }
  100%{ opacity:0; transform: scale(1.18); }
}

/* Full width map */
.contact-map{
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.contact-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}


/* Tablet */
@media (max-width: 1023px){
  .contact-section{ padding-top: 64px; }
  .contact-wrap{
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 44px;
  }
  .contact-card{ padding: 36px 30px; }
  .contact-title{ font-size: 36px; }
  .contact-map{ height: 380px; }
}

/* Mobile */
@media (max-width: 767px){
  .contact-section{ padding-top: 52px; }
  .contact-card{
    padding: 28px 18px;
    border-radius: 10px;
  }
  .contact-title{ font-size: 28px; }
  .contact-info__icon{ width: 46px; height: 46px; flex-basis: 46px; }
  .contact-map{ height: 320px; }
}

/* =========================
   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; }
}


.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: #d23c3cbf;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #d01e1f;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}


.salon{
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), transparent 46%),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.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: 1 / 1; /* vuông */
  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; }
}

/* 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: 500px;
  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: 500px;
    max-width: 500px;
    aspect-ratio: 1;
  }
  .membership-popup .popup-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.sms-terms {
  padding: 60px 20px;
  background: #f5f5f5;
}

.sms-terms__container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sms-terms__content {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.sms-terms__content p {
  margin-bottom: 16px;
}

.sms-terms__content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.sms-terms__content li {
  margin-bottom: 8px;
}