body {
  background: #fff;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 10px 0;
}

h2 {
  color: #b85b6a;
  margin-bottom: 20px;
  font-size: 25px;
  letter-spacing: 1px;
}

.menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
  position: relative;
  padding: 40px;
  overflow: hidden;
}

/* nền mờ mềm mại */
.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, #fdf6f7 0%, #ffffff 100%); */
  opacity: 0.95;
  z-index: 0;
}

/* icon mờ phía sau */
.menu-section::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  /* background: url("https://i.ibb.co/Fn5M5M3/nail-tools.png") no-repeat center; */
  background-image: var(--bg); /* chỉ dùng url thôi */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
}
.menu-section[style*="--bg"] {
  background: none;
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
  position: relative;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
}

.menu-item span {
  font-weight: 700;
  font-size: 18px;
  max-width: 70%;
  display: block;
}

.menu-item small {
  font-size: 16px;
  color: #777;
  display: block;
  margin-top: 2px;
  /* font-style: italic; */
  font-weight: 0;

}

.menu-section img {
  width: 100%;
  border-radius: 0 60px 0 60px; /* bo góc giống ảnh */
  object-fit: cover;
  z-index: 1;
  position: relative;
}

@media (max-width: 900px) {
  .menu-section {
    grid-template-columns: 1fr;
  }
  .menu-section img {
    border-radius: 20px;
  }
  .menu-section {
    padding: 20px;
  }
  .menu-bg {
    padding: 0px;
  }
  .menu-item small {
    margin-top: 0px;
  }
}
.menu-section[style*="--bg"] {
  position: relative;
  z-index: 1;

  background-image: var(--bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Nếu có pseudo-element che thì tắt đi */
.menu-section[style*="--bg"]::before,
.menu-section[style*="--bg"]::after {
  content: none !important;
  background: none !important;
}
/* wrapper full-width có nền */
.menu-bg {
  width: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0; /* khoảng cách trên dưới */
}

/* tắt nền của menu-section khi nằm trong wrapper */
.menu-section.no-bg::before {
  background: none !important;
  box-shadow: none;
  padding: 0;
}
.menu-header {
  display: flex;
  align-items: center; /* canh giữa theo chiều dọc */
  gap: 10px;
  margin-bottom: 30px;
}

.menu-header > div {
  display: flex;
  align-items: center; /* canh svg vào giữa */
}

.menu-header img,
.menu-header svg {
  width: 66px;
  height: 66px;
}

.menu-header h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0; /* bỏ margin mặc định để khỏi lệch */
}


/* Mobile nav wrapper */
.mobile-responsive-nav {
  background: var(--darkColor);
}

/* 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: var(--mainColor);
}

/* Menu list ẩn mặc định */
.mobile-menu {
  display: none;
  background: #252525;
}

.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: #fff;
  text-decoration: none;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background: #f5f5f5;
  color: #8b5e3c;
}

/* Ẩn menu mobile trên desktop */
@media (min-width: 1025px) {
  .mobile-responsive-nav {
    display: none;
  }
}
.header-right .social-links li a img {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
  display: inline-block;
  object-fit: contain;
  transition: var(--transition);
}

.header-right .social-links li a:hover img {
   background-color: #555;
  color: var(--mainColor);
}

.footer-widget .social-link li a img {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
  display: inline-block;
  object-fit: contain;
  transition: var(--transition);
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}

.footer-widget .social-links li a:hover img {
   background-color: #555;
  color: var(--mainColor);
}


.floating-icons {
  position: fixed;
  top: 40%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  background: #2e2e2e;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #555;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}


.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg);
  position: relative;
  z-index: 10;
}

.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: 20px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}