/* .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-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%;
  }

  /* 👉 Thứ tự mong muốn:
     1. service-5.png
     2. MANICURE  
     3. service-4.png
     4. PEDICURE
     5. service-6.png
     6. WAXING
  */
  .menu-image.image-5 { order: 1; }
  .menu-col:nth-child(1) .menu-section { order: 2; } /* MANICURE từ cột 1 */
  .menu-image.image-4 { order: 3; }
  .menu-col:nth-child(2) .menu-section:nth-child(1) { order: 4; } /* PEDICURE từ cột 2 */
  .menu-image.image-6 { order: 5; }
  .menu-col:nth-child(2) .menu-section:nth-child(3) { order: 6; } /* WAXING từ cột 2 */
  
  /* 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,.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: #faf9f7; /* 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: 34px;
  text-align: center;
  letter-spacing: .5px;
  margin: 0 0 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy__heading {
  margin: 36px 0 10px;
  font-size: 26px;
  font-weight: 800;
  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: 16px;
}

.policy__text--muted {
  opacity: .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: "– ";
}

/* ===== 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 .25s ease, box-shadow .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,.08), 0 6px 10px rgba(20,20,20,.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: .2px;
}
.btn-primary {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(26,26,26,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26,26,26,.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; }
}
