/* .inner-banner {
  background-size: cover;
  padding: 80px 0 !important;
  color: #fff; 
} */

.inner-title h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.inner-title ul li {
  font-size: 16px;
}

.inner-title ul li a {
  color: #fff;
  text-decoration: none;
}

body {
  background: url("images/artboard.png") no-repeat center top;
  background-size: cover;
  /* cho ảnh phủ full chiều ngang */
  background-attachment: fixed;
  /* optional: ảnh đứng yên khi cuộn */
  color: #333;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.container-pricing {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}

.menu-section {
  background: transparent;
  border: 1px solid var(--mainColor);
  border-radius: 12px;
  box-shadow: 5px 10px 0px #c8c9cc;
  padding: 20px;
  background-color: #fff;
}

.menu-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--mainColor);
  margin-bottom: 15px;
  border-bottom: 2px solid #575656;
  padding-bottom: 5px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list .sub-title {
  margin: 30px 0 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed #545252;
}

.menu-item:last-child {
  border-bottom: none;
}

.item-info {
  max-width: 80%;
  flex: 1;
}

.item-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.item-desc {
  font-size: 15px;
  color: #666;
  margin: 4px 0 0;
  font-style: italic;
}

.item-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--mainColor);
  white-space: nowrap;
}

.menu-image {
  display: flex;
  justify-content: center;
  /* Căn giữa ngang */
  align-items: center;
  /* Căn giữa dọc nếu cần */
}

.menu-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  /* bo góc cho đẹp */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tablet */
@media (max-width: 1024px) {
  .container-pricing {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .menu-title {
    font-size: 25px;
  }

  .item-name {
    font-size: 18px;
  }

  .item-desc {
    font-size: 18px;
  }

  .item-price {
    font-size: 18px;
  }

  .header-right {
    display: none;
  }
}

/* Services background fix */
.bg-fixed.division {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-attachment: scroll !important;
}

/* Mobile responsive - sắp xếp lại thứ tự menu services */
@media (max-width: 768px) {
  .container-pricing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .menu-col {
    display: contents;
  }

  .container-pricing {
    display: flex;
    flex-direction: column;
  }

  .menu-col {
    display: contents;
    /* hợp nhất 2 cột thành 1 dòng chảy */
  }

  .menu-section,
  .menu-image {
    order: 0;
    width: 100%;
  }


  /* Styling cho menu sections */
  .menu-section {
    padding: 15px;
  }

  .menu-title {
    font-size: 25px;
    text-align: center;
  }

  .menu-item {
    flex-direction: row;
  }

  .item-info {
    max-width: 70%;
  }

  .item-name {
    font-size: 18px;
  }

  .item-desc {
    font-size: 18px;
  }

  .item-price {
    font-size: 18px;
  }

  .menu-image {
    justify-content: center;
    margin: 15px 0;
  }

  .menu-image img {
    width: 90%;
    max-width: 350px;
  }

  /* Fix background image cho services section trên mobile */
  .bg-fixed.division {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    min-height: auto !important;
  }
}

/* Mobile nav wrapper */
.mobile-responsive-nav {
  background: #252525;
}

.mobile-responsive-nav .container {
  background-color: var(--whiteColor);
}

/* Header trong mobile nav */
.mobile-responsive-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.mobile-responsive-menu .logo img {
  max-height: 50px;
  width: auto;
  vertical-align: middle;
}

/* Toggle button */
.mobile-menu-toggle {
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  display: block;
  color: #000;
}

/* Menu list ẩn mặc định */
.mobile-menu {
  display: none;
  /* background: #EFCEC9; */
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li {
  border-top: 1px solid #eee;
}

.mobile-menu ul li a {
  display: block;
  padding: 12px 15px;
  color: #000000;
  text-decoration: none;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background: #f5f5f5;
  color: #8b5e3c;
}

/* Submenu */
.mobile-menu .has-submenu>a {
  position: relative;
  padding-right: 40px;
  /* chừa chỗ cho dấu + */
}

.mobile-menu .submenu-indicator {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.mobile-menu .submenu {
  display: none;
  background: #fff;
  /* tối hơn 1 chút để phân tầng */
}

.mobile-menu .submenu li a {
  padding: 10px 15px 10px 30px;
  /* thụt vào */
  font-size: 0.95em;
  opacity: 0.95;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Trạng thái mở */
.mobile-menu .has-submenu.open>.submenu {
  display: block;
}

/* Ẩn menu mobile trên desktop */
@media (min-width: 1025px) {
  .mobile-responsive-nav {
    display: none;
  }
}

.features-item .img img {
  width: 150px;
}

@media (max-width: 1024px) {
  .navbar-area {
    border-bottom: 1px solid #fff;
  }

  .navbar-area.is-sticky.naon-area {
    border-bottom: none;
  }
}

/* .navbar-area.is-sticky {
  background-color: #EFCEC9 !important;
} */
.inner-banner .inner-title h3,
.inner-banner .inner-title ul li a {
  color: #fff !important;
}

.membership-section {
  text-align: center;
  padding: 20px 20px;
  background-color: var(--bg-bodyColor);
  color: #532d09;
}

.membership-section h2 {
  font-size: 70px;
  margin-bottom: 10px;
  color: var(--mainColor);
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.membership-desc {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 22px;
  line-height: 1.4;
  color: #151515;
}

.membership-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.membership-box {
  width: 600px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.membership-box h3 {
  font-size: 40px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.membership-box .membership-price {
  font-size: 2rem;
  color: #7418d0;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}

.membership-box .membership-price span {
  font-size: 1rem;
  font-weight: normal;
}

.membership-box .save {
  font-weight: bold;
  margin-bottom: 15px;
  color: #4a2c1d;
  font-size: 18px;
}

.membership-box .desc {
  font-size: 18px;
  line-height: 1.4;
  color: #4a2c1d;
  font-style: italic;
}

/* Hiệu ứng hover */
.membership-box:hover {
  background-color: #656871;
  color: #fff;
  transform: translateY(-5px);
}

.membership-box:hover .membership-price,
.membership-box:hover .desc,
.membership-box:hover .save,
.membership-box:hover h3 {
  color: #fff;
}

@media (max-width: 900px) {

  .membership-section h2,
  .membership-box h3 {
    font-size: 35px;
    margin-top: 10px;
  }

  .membership-section {
    padding: 20px 20px;
  }

  .membership-box {
    padding-top: 0px;
  }
}

.promotion-section {
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  display: flex;
}

.promotion-left {
  flex: 1;
}

.promotion-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  /* border: 1px solid #a09f9f; */
}

.promotion-right {
  flex: 1;
  color: #333;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 50px;
}

.promotion-right a {
  font-size: 22px;
  color: #000;
}

.promotion-right h3 {
  font-size: 40px;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.promotion-right p {
  margin: 6px 0;
  line-height: 1.4;
  font-size: 22px;
}

.promotion-right a {
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .promotion-right h3 {
    font-size: 35px;
  }

  .promotion-section {
    flex-direction: column;
  }

  .promotion-left,
  .promotion-left img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .promotion-right {
    min-height: auto;
  }
}

/* Responsive dưới 600px */
@media (max-width: 600px) {
  .promotion-right {
    padding: 20px;
    font-size: 14px;
  }

  .promotion-left {
    padding: 20px;
  }
}

/* Features Mobile Slider */
.features-mobile-slider {
  position: relative;
  padding: 0;
}

.features-slider.owl-carousel {
  padding: 0;
}

.features-slider.owl-carousel .owl-stage-outer {
  padding: 0;
  overflow: hidden;
}

.features-slider.owl-carousel .owl-stage {
  padding-left: 0;
  display: flex;
  align-items: center;
}

.features-slider.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ẩn navigation arrows */
.features-slider.owl-carousel .owl-nav {
  display: none !important;
}

.features-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.features-slider.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  /* margin: 0 5px; */
}

.features-slider.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.features-slider.owl-carousel .owl-dots .owl-dot.active span,
.features-slider.owl-carousel .owl-dots .owl-dot:hover span {
  background: #e4a853;
  transform: scale(1.2);
}

/* Mobile Features Items Adjustments */
@media only screen and (max-width: 767px) {
  .features-mobile-slider {
    margin: 0;
    padding: 0;
  }

  .features-mobile-slider .features-item {
    text-align: center;
    padding: 20px 15px;
    margin: 0 auto;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .features-mobile-slider .features-item .img {
    margin-bottom: 15px;
  }

  .features-mobile-slider .features-item .img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0px;
  }

  .features-mobile-slider .features-item .content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
  }

  .features-mobile-slider .features-item .content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
    color: #666;
  }

  .features-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 200px;
  }

  .top-header {
    display: none;
  }
}

/* Tablet adjustments */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features-mobile-slider .features-item {
    max-width: 350px;
    padding: 25px 20px;
  }

  .features-mobile-slider .features-item .img img {
    width: 100px;
    height: 100px;
  }

  .features-mobile-slider .features-item .content h3 {
    font-size: 20px;
  }

  .features-mobile-slider .features-item .content p {
    font-size: 15px;
  }
}

.mobile-bottom-icons {
  position: fixed;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0 4px;
  z-index: 10000;
  display: none;
  margin-top: 10px;
}

.mobile-bottom-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 12px;
}

.mobile-bottom-icons a img {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
  filter: grayscale(100%) brightness(0);
  transition: 0.3s ease;
}

.mobile-bottom-icons a.active img,
.mobile-bottom-icons a:hover img {
  filter: none;
}

.mobile-bottom-icons a.active span,
.mobile-bottom-icons a:hover span {
  color: var(--mainColor);
}

/* Chừa chỗ cho thanh icon để nội dung không bị che */
body {
  /* padding-bottom: 65px; */
}

@media (max-width: 900px) {
  .floating-icons {
    display: none;
  }

  .mobile-bottom-icons {
    display: flex !important;
  }

  .banner-area-two,
  .inner-banner {
    padding-top: 80px !important;
  }
}

/* ===== Policy (light version) ===== */
.policy--light {
  background: #ffffff;
  /* subtle warm light background */
  color: #1a1a1a;
}

.policy__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 18px;
  line-height: 1.75;
}

.policy__title {
  font-size: 22px;
  letter-spacing: 0.5px;
  margin: 0 0 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.policy__heading {
  margin: 36px 0 10px;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.policy__subheading {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.policy__text {
  margin: 0 0 14px;
  font-size: 18px;
}

.policy__text--muted {
  opacity: 0.85;
  margin-top: 6px;
}

.policy__text--tight {
  margin-top: 6px;
}

.policy__list {
  margin: 0 0 16px 18px;
  padding: 0;
}

.policy__list li {
  margin: 6px 0;
}

.policy__list--dash {
  list-style: none;
  margin-left: 0;
}

.policy__list--dash li::before {
  content: "– ";
}

.sms-li {
  color: var(--bodyColor);
  font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .policy__container {
    padding: 56px 16px;
  }

  .policy__title {
    font-size: 28px;
  }

  .policy__heading {
    font-size: 22px;
  }

  .policy__subheading {
    font-size: 18px;
  }

  .policy__text {
    font-size: 15px;
  }
}

/* Hero */
.join {
  background: #ffffff;
  padding: 48px 20px 24px;
  text-align: center;
}

.join__title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 10px;
}

.join__desc {
  max-width: 800px;
  margin: 8px auto;
  color: #5c5f66;
  line-height: 1.75;
}

/* Why Choose */
.why-choose {
  background: #f2f3f6;
  /* xám nhạt như hình */
  padding: 56px 0 36px;
}

.wc__title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: 800;
}

/* Grid */
.wc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto 28px;
}

/* Card base */
.wc-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.02);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.wc-card h4 {
  font-size: 18px;
  margin: 0 0 8px;
}

.wc-card p {
  margin: 0;
  color: #61636b;
  line-height: 1.7;
}

/* Card có ảnh */
.wc-card--image {
  padding: 0;
  overflow: hidden;
}

.wc-card--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hiệu ứng nổi khi hover */
.wc-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 28px rgba(20, 20, 20, 0.08),
    0 6px 10px rgba(20, 20, 20, 0.06);
}

/* Footer/CTA */
.wc__footer {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  color: #5c5f66;
}

.wc__footer p {
  margin: 8px 0;
}

.wc__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  border: none;
}

.wc__actions a {
  background: var(--mainColor);
  color: #fff;
  border: none;
}

.wc__actions a:hover {
  background: #444;
  color: white;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.16);
}

.btn-outline {
  border: 1.5px solid #e0e0e0;
  color: #1a1a1a;
  background: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .wc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .join__title {
    font-size: 28px;
  }

  .wc__grid {
    grid-template-columns: 1fr;
  }
}

/* TEAM SECTION */
.team-area.section-bg {
  background: #f6f7fb;
  /* giống tone bạn gửi */
}

.team-slider .team-item {
  text-align: center;
  padding: 10px 5px 0;
}

/* Avatar tròn + viền trắng + bóng */
.team-slider .team-item img {
  width: 130px;
  /* bạn chỉnh theo ý */
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #fff;
  /* vòng trắng */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  margin: 0 auto 14px;
  display: block;
}

.team-slider .team-item h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
  color: #111;
}

/* khoảng cách giữa các item */
.team-slider .owl-stage {
  display: flex;
  align-items: center;
}

.team-slider .owl-item {
  display: flex;
  justify-content: center;
}

/* dots (tuỳ chọn) */
.team-slider .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.team-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  display: block;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.team-slider .owl-dot.active span {
  background: rgba(0, 0, 0, 0.6);
}

/* responsive avatar nhỏ hơn */
@media (max-width: 991px) {
  .team-slider .team-item img {
    width: 120px;
    height: 120px;
    border-width: 9px;
  }
}

@media (max-width: 575px) {
  .team-slider .team-item img {
    width: 110px;
    height: 110px;
    border-width: 8px;
  }

  .team-slider .team-item h3 {
    font-size: 16px;
  }
}

/* ===== FORCE MANICURE ONLY ===== */
.menu-section.manicure-menu .menu-header {
  display: grid !important;
  grid-template-columns: 1fr 50px 140px !important;
  column-gap: 18px !important;
  align-items: end !important;

  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #575656;
}

.menu-section.manicure-menu .menu-title {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: none !important;
  /* bỏ border của menu-title cũ */
}

.menu-section.manicure-menu .col-title {
  text-align: right !important;
  font-weight: 600 !important;
  color: #000 !important;
  white-space: nowrap !important;
}

/* QUAN TRỌNG: ép li từ flex -> grid */
.menu-section.manicure-menu ul.menu-list>li.menu-item {
  display: grid !important;
  grid-template-columns: 1fr 50px 140px !important;
  column-gap: 18px !important;
  align-items: start !important;

  /* kill flex behavior */
  justify-content: unset !important;
}

.menu-section.manicure-menu ul.menu-list>li.menu-item>.item-info {
  max-width: none !important;
  width: 100% !important;
}

/* style giá giống item-price cũ */
.menu-section.manicure-menu .price-col {
  font-size: 18px !important;
  font-weight: bold !important;
  color: var(--mainColor) !important;
  white-space: nowrap !important;
  text-align: right !important;
}

.menu-section.manicure-menu .price-col .item-desc {
  font-weight: normal !important;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-section.manicure-menu .menu-header {
    grid-template-columns: 1fr 50px 120px !important;
    column-gap: 12px !important;
  }

  .menu-section.manicure-menu ul.menu-list>li.menu-item {
    grid-template-columns: 1fr 50px 100px !important;
    column-gap: 12px !important;
  }

  .menu-section.manicure-menu .col-title {
    font-size: 15px !important;
  }
}

/* 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%);
}

.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;
  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;
}

/* Slider Styles */
.popup-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    width: 90vw;
    height: auto;
    max-width: 500px;
    aspect-ratio: 1/1;
    margin: 20px;
  }

  .popup-slider {
    height: 100%;
  }

  .popup-close {
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .slide-dots {
    bottom: 80px;
  }

  .popup-actions {
    bottom: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .btn-popup-booking,
  .btn-popup-call {
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 95vw;
    height: auto;
    margin: 10px;
    aspect-ratio: 1/1;
  }

  .popup-close {
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* iOS Safe Area Support */
@supports (padding: env(safe-area-inset-top)) {
  @media (max-width: 768px) {
    .popup-close {
      top: calc(env(safe-area-inset-top, 0px) + 10px);
      right: calc(env(safe-area-inset-right, 0px) + 15px);
    }
  }

  @media (max-width: 480px) {
    .popup-close {
      top: calc(env(safe-area-inset-top, 0px) + 8px);
      right: calc(env(safe-area-inset-right, 0px) + 12px);
    }
  }
}

/* .contact-information-max .col-lg-4 {
  width: 40% !important;
} */

.gallery-all-img .img a,
.gallery-all-img .img2 a,
.gallery-all-img .img3 a,
.gallery-all-img-two .img a,
.gallery-all-img-two .img2 a,
.gallery-all-img-two .img3 a {
  position: relative;
  z-index: 2;
}

/* .gallery-all-img .vector-img,
.gallery-all-img-two .vector-img {
  z-index: 1;
} */

.gallery-all-img .img::before,
.gallery-all-img-two .img::before {
  content: none;
}

@media (max-width: 900px) {
  .page-booking .mobile-bottom-icons {
    display: none !important;
  }

  .booking-section {
    padding: 0px 10px;
  }

  .iframe-wrapper {
    height: 92vh;
    /* Chiều cao bằng 92% chiều cao màn hình */
  }
}


/* =========================
   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;
  }
}

/* Equal height testimonial cards in owl carousel */
.testimonial-slider-two .owl-stage {
  display: flex;
}
.testimonial-slider-two .owl-item {
  display: flex;
}
.testimonial-slider-two .testimonial-card {
  display: flex;
  flex-direction: column;
}
.testimonial-slider-two .testimonial-card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonial-slider-two .testimonial-card .content p {
  flex: 1;
  font-size: 15px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .menu-col:nth-child(1) .menu-section:nth-child(1) {
    order: 1;
  } /* MANICURE từ cột 1 - là child 1 */
  .menu-image.image-1 {
    order: 2;
  }
    .menu-col:nth-child(2) .menu-section:nth-child(1) {
    order: 3;
  } /* PEDICURE từ cột 2 - là child 1 */
  .menu-image.image-4 {
    order: 4;
  }
   
  .menu-col:nth-child(1) .menu-section:nth-child(3) {
    order: 5;
  }
  .menu-image.image-2 {
    order: 6;
  }
    .menu-col:nth-child(2) .menu-section:nth-child(3) {
    order: 7;
  } 
 .menu-image.image-5 {
    order: 8;
  }
  .menu-col:nth-child(1) .menu-section:nth-child(5) {
    order: 9;
  }
  .menu-image.image-3 {
    order: 10;
  }
    .menu-col:nth-child(2) .menu-section:nth-child(5) {
    order: 11;
  } 
 .menu-image.image-6 {
    order: 12;
  }
}