@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #405325;
  --secondary-color: #fff3da;
  --heading-font: "Playfair Display", serif;
  --body-font: "Inter", sans-serif;
}

.amp-font {
  font-family: var(--body-font) !important;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 0px;
}

.font_icon
{
  font-family: var(--body-font) !important;
}

body {
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background-color: var(--primary-color);
  /* overflow-x: hidden; */
}

.blog-item {
  box-shadow: unset;
}

.text-right {
  text-align: right;
}

.navbar-toggler {
  border: unset !important;
}

.swal2-title {
  font-family: var(--heading-font) !important;
}

.recomment_product_body,
.booking-infomation {
  height: 100%;
}

.line-camp-1 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  height: 40px;
}

.calendar-days {
  display: flex;
  overflow-x: auto;
  max-width: 1100px;
  /* hoặc width: 100% */
  gap: 13px;
  padding: 5px;
  scroll-snap-type: x mandatory;
}

.day-cell {
  flex: 0 0 auto;
}

/* Ẩn spinner ở webkit browsers */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  /* in đậm */
  line-height: 1.3;
}

#header {
  background-color: transparent;
  width: 100%;
  height: 160px;
  margin-bottom: 0 !important;
  border-bottom: 1px solid var(--secondary-color);
}

#header nav {
  height: 100%;
}

.navbar>.container {
  gap: 40px;
}

.nav-link {
  color: var(--secondary-color) !important;
}

.menu.icon {
  padding: 0 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 14px;
  padding-right: 14px;
  font-size: 16px;
  line-height: 25px;
  display: flex;
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-item:first-child .nav-link {
  padding-left: 0;
}

.dropdown-toggle.menu::after {
  display: none !important;
}

/* ===== Base button ===== */
.btn {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* ===== Size variants ===== */
.btn--sm {
  width: 120px;
  height: 40px;
  font-size: 15px;
}

.btn--lg {
  width: 220px;
  height: 60px;
  font-size: 20px;
}

/* ===== Color variants ===== */
.btn--primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn--primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn--secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn--secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn--outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
}

.btn--outline:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.btn--hero {
  background-color: var(--secondary-color);
  color: var(--primary-color) !important;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn--hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(30deg);
  transition: none;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(500%) rotate(30deg); }
}

.btn--hero:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary-color) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 243, 218, 0.5);
}

/* ===== Special cases (có thể thêm tuỳ thiết kế) ===== */
.btn--uppercase {
  text-transform: uppercase;
}

.btn--block {
  width: 100%;
}

.btn--bold {
  font-weight: 600;
}

#hero-banner {
  position: relative;
  width: 100%;
  height: 720px;
  /* hoặc 100vh cho full màn hình */
  overflow: hidden;
}

.hero-banner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/hero-banner.jpg") no-repeat center center/cover;
}

/* Overlay */
.hero-banner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* chỉnh độ mờ tại đây */
  z-index: 1;
}

/* Nội dung */
.hero-banner-content {
  position: relative;
  z-index: 2;
  /* nằm trên overlay */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.w-100 {
  width: 100%;
}

.hero-banner-wrap .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.hero-banner-content h1 {
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 55px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
  }
}

.custom-section {
  padding: 60px 0;
}
#our_service,
#about-us,
#blogs_section,
#pricing-menu,
#testimonial_section
{
  padding: 120px 0;
}

#about-us {
  color: #f5f5f5;
}

.about-wrap {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.about-images {
  position: relative;
  flex: 1;
  min-height: 500px;
  /* để chứa ảnh */
}

.about-images img {
  position: absolute;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.about-content {
  flex: 1;
  padding-top: 30px;
}

.about-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.about-content p {
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--secondary-color);
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-family: var(--heading-font) !important;
  margin-top: 15px;
  position: relative;
}

.stat-item p {
  font-size: 15px;
  color: #ccc;
}

.btn.btn-light {
  background: #f5f5f5;
  color: #2e482a;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn.btn-light:hover {
  background: #d8b192;
  color: #fff;
}

.stat-item img {
  width: 60px;
  object-fit: contain;
  height: 60px;
}

.stat-item h3::after {
  content: "+";
  font-size: 30px;
  font-weight: 400;
  color: var(--secondary-color);
  position: absolute;
  top: -10px;
  transform: translateX(10px);
}

#our_service {
  background-color: var(--secondary-color);
}

.our_service-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  align-items: stretch;
}

.our_service-heading-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.subtitle {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  line-height: 30px;
  margin-bottom: 26px;
}

.subtitle--primary {
  color: var(--primary-color);
}

.subtitle--secondary {
  color: var(--secondary-color);
}

.subtitle--primary::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 5px;
}

.our_story-content .subtitle--secondary,
.our_story_title {
  font-size: 36px;
}

.our_story_title {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 400;
}

.subtitle--secondary::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
  margin-top: 5px;
}

.our_service-title {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-color);
}

.our_service-heading-left {
  flex: 0 0 555px;
}

.our_service-heading-description {
  font-size: 15px;
  line-height: 32px;
  color: var(--primary-color);
}

.our_service-body {
  margin-top: 55px;
}

.our_service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.our_service-img {
  position: relative;
  overflow: hidden;
}

.our_service-img img {
  transition: all 0.5s ease;
  width: 100%;
  object-fit: cover;
  height: 438px;
}

.our_service-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* chỉnh độ mờ tại đây */
  z-index: 1;
}

.our_service-item:hover img {
  transform: scale(1.1);
}

.our_service-item {
  position: relative;
}

.our_service-content {
  position: absolute;
  top: 50%;
  padding: 20px;
  width: 100%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--secondary-color);
  text-align: center;

}

.our_service-content h3 {
  font-weight: 500;
  color: #fff3da;
  font-size: 24px;
  margin-bottom: 14px;
}

.our_service-content .btn--primary {
  border: 1px solid transparent !important;
  display: flex;
  gap: 10px;
  font-family: var(--body-font) !important;
}

.our_story-description {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 24px;
}

#our_story .container {
  display: flex;
  gap: 5%;
  justify-content: space-between;
  align-items: center;
}

.our_story-left {
  flex: 0 0 60%;
}

.our_story-right {
  flex: 0 0 40%;
}

.our_story-right img {
  height: 450px;
  object-fit: cover;
}


#header .logo a img
{
  width: 100px;
}

.footer-logo img
{
  width: 200px;
}

#testimonial_section {
  background-color: var(--secondary-color);
}

.testimonial_heading {
  text-align: center;
}

#testimonial_section .subtitle {
  width: fit-content;
  margin-left: auto;
  font-size: 16px !important;
  font-family: var(--heading-font);
  margin-right: auto;
}

#testimonial_section .subtitle--primary::after {
  margin-left: auto;
  margin-right: auto;
}

.testimonial_title {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-color);
}

.testimonial_body {
  margin-top: 24px;
}

.testimonial-swiper img {
  height: 300px !important;
  aspect-ratio: 40/27;
  object-fit: cover;
  width: 100%;
}

.blog-item .blog-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.testimonial-swiper .swiper-slide p {
  margin-top: 24px;
  width: 100%;
  max-width: 70%;
  /* text-align: center; */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-style: italic;
}

.testimonial-swiper .swiper-slide {
  text-align: center;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.custom-swiper-button-prev {
  left: -100px;
  /* đẩy nút ra ngoài bên trái */
}

.custom-swiper-button-next {
  right: -100px;
  /* đẩy nút ra ngoài bên phải */
}

.custom-swiper-button-prev img,
.custom-swiper-button-next img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.testimonial_body {
  position: relative;
}

#booking_time-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
}

#booking_time-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* chỉnh độ mờ tại đây */
  z-index: 1;
}

#booking_time-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.booking_time-content {
  color: var(--secondary-color);
}

.opening-hours {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--secondary-color);
  /* text màu be giống hình */
}

.opening-hours__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.opening-hours__item .day {
  white-space: nowrap;
}

.opening-hours__item .time {
  white-space: nowrap;
}

.opening-hours__item .line {
  flex: 1;
  border-bottom: 1px solid var(--secondary-color);
  margin: 0 12px;
}

.booking_time-wrapper {
  flex: 0 0 550px;
}

.booking_time-content .subtitle--secondary {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--heading-font);
}

.booking_time-content .subtitle--secondary::after {
  margin-left: auto;
  margin-right: auto;
}

.booking_time-title {
  font-size: 36px;
  font-weight: 400;
  color: #FFF3DA;
  text-align: center;
  margin: 16px 0 24px 0;
}

.booking_time-content .btn--primary {
  border: 1px solid transparent !important;
  display: flex;
  gap: 10px;
}

.blogs_heading .subtitle {
  width: fit-content;
  margin-left: auto;
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin-right: auto;
}

.blogs_heading .subtitle--secondary::after {
  margin-left: auto;
  margin-right: auto;
  width: 110px;
}

.blogs_heading .blogs_description {

  font-size: 36px;
  font-weight: 400;
  text-align: center;
  color: var(--secondary-color);
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.blog-thumbnail img {
  height: 300px;
  object-position: center;
  object-fit: cover;
  transition: all 0.5s ease;
  width: 100%;
}

.blog-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-item:hover img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 15px;
  padding: 10px;
  font-weight: 500;
}

.blog-title {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0;

  color: var(--secondary-color) !important;
  text-decoration: none;
  display: block;
}

.blog-content p span,
.blog-content p {
  font-size: 14px !important;
  line-height: 24px !important;
  color: var(--secondary-color) !important;
  margin-bottom: 20px !important;
  font-weight: 400 !important;
  font-family: unset !important;
}

.blogs_body {
  margin-top: 40px;
}

.body-color-filter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 cột đều nhau */
  gap: 20px 30px;
  margin: 0 auto;
  padding: 25px 90px;
  padding-right: 0;
}

.body-color-filter label {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* căn giữa nội dung trong từng ô */
  gap: 6px;
  cursor: pointer;
}

.body-color-filter input[type="checkbox"] {
  accent-color: var(--primary-color);
  /* màu xanh primary của bạn */
  width: 16px;
  height: 16px;
}

#color_section {
  background-color: var(--secondary-color);
}

.color-heading .subtitle {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.color-heading .subtitle--primary::after {
  margin-left: auto;
  margin-right: auto;
}

.color-title {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-color);
  margin-top: 16px;
}

.color-filters {
  background-color: #fff;
}

.top-color-filter {
  display: block;
  height: 45px;
  border-bottom: 1px solid var(--secondary-color);
}

.color-list {
  padding: 30px;
  margin-top: 24px;
}

.color-list-wrap {
  background-color: #fff;
  padding-bottom: 24px;
}

.color-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 6 cột đều nhau */
  gap: 30px;
}

.color-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.color-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.color-list-wrap a {
  text-transform: none;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  font-weight: 700;
  margin: 0 auto;
}

.color-list-wrap a:hover {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
}

#news_latter-section {
  height: 680px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#news_latter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* chỉnh độ mờ tại đây */
  z-index: 1;
}

#news_latter-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.news_latter-wrapper {
  flex: 0 0 600px;
  background: #fff;
  padding: 24px 40px;
}

#news_latter-section .subtitle--primary {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

#news_latter-section .subtitle--primary::after {
  margin-left: auto;
  margin-right: auto;
}

.news_latter-title {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin: 16px 0 10px 0;
  color: var(--primary-color);
}

.news_latter-wrapper p {
  font-size: 15px;
  line-height: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 24px;
}

.news_latter-wrapper form {
  display: flex;
}

.news_latter-wrapper form input {
  flex: 1;
  height: 50px;
  padding-left: 30px;
  padding-right: 10px;
  border: 1px solid var(--primary-color);
  outline: none !important;
}

.news_latter-wrapper form button {
  flex: 0 0 150px;
  border: 1px solid transparent !important;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

#footer {
  background-color: var(--secondary-color);
  padding-top: 70px;
}

.copyright p {
  margin-bottom: 0;
}

.menu_footer-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: "Montserrat", serif !important;
}

.menu_footer ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.menu_footer ul li a {
  color: var(--primary-color);
  text-decoration: none;
  display: block;
  font-size: 15px;
}

.menu_footer ul li {
  margin-bottom: 16px;
}

.social-list li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  background-color: var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-list {
  display: flex;
  gap: 10px;
}

.copyright {
  margin-top: 24px;
  padding-top: 24px;
  padding-bottom: 15px;
  border-top: 1px solid var(--primary-color);
  font-size: 15px;
  text-align: center;
  color: var(--primary-color);
}

.single_page #hero-banner .hero-banner-wrap h1 {
  position: relative;
}

.single_page #hero-banner .hero-banner-wrap h1::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 2px;
  background-color: var(--secondary-color);
}

.single_page-description {
  width: 100%;
  max-width: 800px;
  font-size: 16px;
  line-height: 28px;

}

.services_heading-left h3 {
  font-family: "Montserrat", serif !important;
}

.sort-form {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  color: #000;
}

.sort-form label {
  font-size: 15px;
  color: var(--secondary-color);
}

.sort-form select {
  background-color: transparent;
  /* trong suốt để lộ nền */
  border: 1px solid #9db189;
  /* viền mảnh */
  border-radius: 2px;
  padding: 10px 12px;
  color: var(--secondary-color);
  font-size: 15px;
  outline: none;
  cursor: pointer;
  appearance: none;
  /* bỏ style mặc định của browser */
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 160px;
}

/* icon mũi tên cho select */
.sort-form select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23d9e5c9' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 32px;
}

.sort-form select option {
  color: #000;
}

.services_heading {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.services_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 6 cột đều nhau */
  gap: 50px;
}

.services_body {
  max-width: 1156px;
  margin: 60px auto;
}

.service-item {
  display: flex;
  flex-direction: column;
}

.service-item-wrap {
  background-color: #b6c59f;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 4px;
}

.service-title {
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin: 10px 0;
  display: -webkit-box;
  font-family: var(--heading-font);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* Số dòng muốn giữ */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.service-bottom {
  background-color: #fff;
  padding: 15px;
  text-align: center;
  min-height: 250px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.service-price span {
  font-size: 15px;
}

.service-price span strong {
  margin-right: 10px;
}

.service-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* khoảng cách giữa các item */
  font-size: 15px;
  justify-content: center;
  margin-top: 16px;
}

.service-steps span {
  position: relative;
  padding-right: 12px;
  /* cách chữ với dấu | */
}

/* chỉ thêm gạch cho thằng chưa phải cuối */
.service-steps span:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
  color: #333;
}

/* xoá dấu | cho bội số của 3 */
.service-steps span:nth-child(3n)::after {
  content: none;
}

.service-item .btn {
  margin: 0 auto;
  margin-top: 24px;
}

.shop_heading {
  padding: 8px 20px;
  color: var(--secondary-color);
  font-size: 13px;
}

.shop_heading .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
}

.breadcrumb {
  font-size: 15px;
}

.breadcrumb span {
  color: var(--secondary-color);
  font-weight: 500;
}

.cart-link a {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  text-decoration: none;
  position: relative;
  font-size: 20px;
  gap: 10px;
}

.cart-link .cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
}

.cart-link .cart-count {
  position: absolute;
  top: -14px;
  right: -11px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  padding: 7px 9px;
  border-radius: 50%;
  line-height: 1;
}

.cart-icon i {
  display: flex;
  background: #f1f5fb;
  color: #000;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* .shop-col-left {
  padding: 0;
} */

.category-box {
  background: var(--secondary-color);
  /* nền vàng nhạt */
}

.category-title {
  background: var(--secondary-color);
  font-weight: 500;
  border-bottom: 1px solid var(--primary-color);
  padding: 12px;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--primary-color);
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-item {
  border-bottom: 1px solid var(--primary-color);
}

.category-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
}

.category-toggle .arrow {
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.category-item.open .category-toggle .arrow {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.subcategory-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #444;
}

.subcategory-list li {
  padding: 12px;
  padding-left: 50px;
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
  position: relative;
}

.subcategory-list li:first-child {
  border-top: 1px solid var(--primary-color);
}

.subcategory-list li:last-child {
  border: unset;
}

.subcategory-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: #b6c59f;
  transform: translateY(-50%);
}

.product-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.product-item {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hiệu ứng card nhảy lên */
.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.produc.btn--hero:hover::after {
  transform: translateX(5px);
}

/* About Features List */
.about-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.about-features li {
  font-size: 15px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-features li::before {
  content: "\2727"; /* Icon ngôi sao/hoa nhỏ thanh lịch */
  color: var(--secondary-color);
  font-size: 15px;
}

/* Footer Social & Location Icons */
.social-list {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.social-list li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-list li a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 243, 218, 0.3);
}

#page-nail-colors .color-title
{
  color: #fff3da;
}

#page-nail-colors .filter-body
{
  border-top: 1px solid #ccc;
}

#page-nail-colors .filter-body,
#page-nail-colors .filter-header-bg
{
  background-color: #fff3da;
}

.social-list li a i.fa-star {
  color: #fbbc05;
}

.social-list li a:hover i.fa-star {
  color: var(--primary-color);
}

.footer-map-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
}

.footer-map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.product-thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-gallery .main-swiper .swiper-button-next,
.product-gallery .main-swiper .swiper-button-prev {
  top: 50% !important;
}

/* hiệu ứng zoom ảnh */
.product-item:hover .product-thumbnail img {
  transform: scale(1.08);
}

.product-info {
  background: var(--secondary-color);
  padding: 24px;
}

.product-info .product-name {
  font-size: 15px;
  height: 58px;
  color: var(--primary-color);
  text-align: center;
}

.product-info span {
  text-align: center;
  color: #de4a30;
  text-transform: uppercase;
  display: block;
  font-size: 15px;
  margin-top: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  font-family: inherit;
}

.pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination .page:hover {
  background: #fff;
  color: var(--primary-color);
  /* màu xanh nền */
}

.pagination .page.active {
  background: #f6f0dc;
  /* vàng nhạt */
  border: none;
  color: var(--primary-color);
  font-weight: bold;
}

.pagination .page.prev,
.pagination .page.next {
  font-size: 15px;
  line-height: 1;
}

.pagination .page:not(.active):not(.prev):not(.next) {
  border: none;
  background: transparent;
  color: #9da4ae;
}

.shop_body {
  margin-top: 25px;
}

.product-gallery {
  display: flex;
  gap: 20px;
  height: 100%;
}

.thumbs-swiper {
  width: 100px;
  height: 500px;
}

.thumbs-swiper .swiper-slide {
  width: 90px !important;
  height: 90px !important;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 2px solid transparent;
}

.thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #f6f0dc;
}

.thumbs-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-swiper {
  width: 500px;
  height: auto;
}

.main-swiper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}

.product-variation {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.variation-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  /* chữ vàng nhạt */
  padding: 6px 12px;
  border-radius: 2px;
}

.variation-options {
  display: flex;
  gap: 8px;
}

.variation-options .option {
  padding: 6px 14px;
  font-size: 15px;
  border: 1px solid var(--primary-color);
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variation-options .option.active {
  background: var(--secondary-color);
  /* vàng nhạt */
  color: #333;
  border-color: #f6f0dc;
}

.product-quantity-add-cart {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}

/* quantity */
.quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #364f2b;
  background: #f6f0dc;
}

.qty-btn {
  border: none;
  background: transparent;
  font-size: 20px;
  padding: 6px 12px;
  cursor: pointer;
  color: #364f2b;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #364f2b;
  outline: none;
}

/* add to cart */
.add-to-cart {
  flex: 0 0 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f6f0dc;
  border: none;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #364f2b;
  cursor: pointer;
  transition: 0.3s;
}

.add-to-cart:hover {
  background: #e0d7b9;
}

.diver {
  margin: 28px 0;
  width: 100%;
  height: 1px;
  background-color: #e4e4e4;
}

h1.product-name {
  font-size: 40px;
  font-weight: 600;
  color: var(--secondary-color);
}

.product_body-section .product-price {
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  color: var(--secondary-color);
}

.product-variation {
  margin: 28px 0;
}

.product-description ul {
  display: grid;
  gap: 24px 12px;
  grid-template-columns: repeat(2, 1fr);
}

.product-description ul li {
  font-size: 15px;
  color: var(--secondary-color);
}

.share-social-list li a {
  display: flex;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
}

.share-social-list li a img {
  object-fit: contain;
}

.share-social-list li {
  list-style-type: none;
}

.share-social-list {
  display: flex;
  gap: 10px;
  padding-left: 0;
}

.product_body-section {
  margin-top: 80px;
  margin-bottom: 120px;
}

.recent_products-list .product-info {
  min-height: auto;
}

.product_bottom-section .subtitle--secondary {
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 55px;
}

.product_bottom-section .subtitle--secondary::after {
  margin-left: auto;
  margin-right: auto;
  width: 80px;
}

.recent_products-list {
  margin-top: 50px;
}

#modal_popup-cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: none;
  /* ẩn mặc định */
  opacity: 0;
  transition: opacity 0.3s ease;
}

#modal_popup-cart.active {
  display: block;
  opacity: 1;
}

.modal_popup-wrapper {
  display: flex;
  justify-content: flex-end;
}

.modal_popup-content {
  background: #fff;
  max-width: 500px;
  height: 100vh;
  overflow-y: auto;
  transform: translateX(100%);
  /* trượt ra ngoài */
  transition: transform 0.3s ease;
}

#modal_popup-cart.active .modal_popup-content {
  transform: translateX(0);
  /* trượt vào trong */
}

.modal_popup-heading {
  padding: 35px 0;
  text-align: center;
  font-size: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #c0c0c0;
}

.product_cart-item {
  border-bottom: 1px solid #c0c0c0;
  padding: 20px;
}

.product_cart-item .product_cart-name {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product_cart-body {
  display: flex;
  justify-content: space-between;
}

.product_cart-image {
  flex: 0 0 90px;
}

.product_cart-image img {
  height: 90px;
  width: 100%;
  object-fit: cover;
}

.product_cart-left {
  display: flex;
  gap: 24px;
}

.product_cart-price-qty {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product_cart-price {
  color: #de4a30;
  font-size: 15px;
  font-weight: 500;
}

.product_cart-qty .quantity-box {
  background: transparent !important;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
}

.product_cart-qty .qty-btn {
  padding: 4px 10px;
  color: #0a2540;
  font-weight: 600;
}

.qty-input {
  font-weight: 600;
  color: #0a2540;
  width: 30px;
}

.product_cart-list {
  max-height: 337px;
  overflow-y: auto;
}

.product_cart-right {
  color: #979797;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  height: fit-content;
}

.product_cart-right:hover {
  color: #425466;
}

.product_cart-list::-webkit-scrollbar {
  width: 4px;
}

.product_cart-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.product_cart-list::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 6px;
}

.product_cart-list::-webkit-scrollbar-button {
  display: none;
  height: 0;
}

.product_cart-note {
  padding: 30px 20px;
}

.product_cart-note textarea {
  height: 130px;
  width: 100%;
  border: 1px solid #c0c0c0;
  outline: none;
}

.product_cart-note p {
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
}

.modal_popup-bottom-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #242424;
  font-weight: 500;
  margin-bottom: 20px;
}

.modal_popup-bottom-text .total-price {
  color: #de4a30;
}

.modal_popup-bottom p {
  text-align: center;
}

.modal_popup-bottom {
  padding: 0 20px;
}

.modal_popup-bottom a {
  width: 100%;
}

.btn-continue {
  margin-top: 40px;
  display: block;
  text-align: center;
  font-size: 15px;
  color: #242424;
}

.btn-continue:hover {
  color: var(--primary-color);
}

.payment-method_item {
  display: block;
  border-top: 1px solid #eee;
  padding: 24px;
  cursor: pointer;
}

.payment-method_item:first-of-type {
  border-top: none;
}

.payment-method_item input {
  margin-right: 8px;
}

.payment-method_content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.payment-method_detail {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.payment-qr {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.bank-info {
  font-size: 15px;
}

.bank-logo {
  max-width: 100px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-body {
  margin: 70px 0;
}

.checkout-body h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 600;
}

.form-group .col label {
  display: block;
  font-size: 15px;
  position: relative;
  width: fit-content;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.required::after {
  content: "*";
  position: absolute;
  color: #ff0000;
  font-weight: 400;
  top: -11px;
  right: -11px;
  font-size: 22px;
}

.form-group .col input,
select {
  width: 100%;
  border: 1px solid #000;
  border-radius: 4px;
  outline: none !important;
  height: 45px;
  padding: 10px;
  font-size: 15px;
  color: #7b7b7b;
}

.form-group {
  margin-bottom: 20px;
}

.form-group .col textarea {
  width: 100%;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  padding: 10px;
  height: 120px;
  font-size: 15px;
  outline: none !important;
  color: #7b7b7b;
}

.payment-method_wrapper {
  margin-top: 50px;
}

.payment-method_list {
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
}

.checkout_product-infor {
  width: 100%;
}

.payment-method_item {
  display: flex;
  align-items: center;
}

.payment-method_item i {
  font-size: 26px;
  color: var(--primary-color);
  margin: 0 10px;
}

.payment-method_item-heading {
  display: flex;
  align-items: center;
}

.payment-method_item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  background: #fff;
}

/* hiệu ứng hover */
.payment-method_item input[type="radio"]:hover {
  border-color: var(--primary-color);
}

/* khi checked */
.payment-method_item input[type="radio"]:checked {
  border-color: var(--primary-color);
  /* màu viền */
  background: var(--primary-color);
  /* nền */
}

/* chấm nhỏ bên trong */
.payment-method_item input[type="radio"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  /* chấm trắng bên trong */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.payment-terms {
  margin: 24px 0;
}

.payment-terms label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
}

.payment-terms input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 21px;
  height: 21px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex: 0 0 20px;
}

.payment-terms input[type="checkbox"]:checked {
  background-color: #93a777;
  border-color: #93a777;
}

/* dấu tick */
.payment-terms input[type="checkbox"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.payment-terms span {
  font-size: 15px;
}

.payment-terms span a {
  color: var(--secondary-color) !important;
  text-decoration: none;
}

.checkout-body form .btn {
  width: 100%;
}

.checkout_cart {
  background-color: var(--secondary-color);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
}

.checkout_cart-heading {
  color: var(--primary-color) !important;
  margin-bottom: 0 !important;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-color);
}

.checkout_product-item {
  display: flex;
  gap: 30px;
}

.checkout_product-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
}

.checkout_product-thumbnail {
  flex: 0 0 100px;
}

.checkout_product-thumbnail img {
  height: 100px;
  width: 100%;
  object-fit: cover;
}

.checkout_product-infor {
  display: flex;

  justify-content: space-between;
}

.checkout-body .col-5 {
  flex: 0 0 auto;
  width: 45.666667%;
}

.checkout_product-infor .product_cart-qty .quantity-box {
  width: fit-content;
}

.checkout_product-infor-left,
.checkout_product-infor-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-delelte {
  color: #7b7b7b;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.product-delelte:hover {
  color: #242424;
}

.checkout_product-price {
  color: #de4a30;
  font-size: 15px;
  font-weight: 500;
}

.coupon-wrapper {
  margin: 50px 0;
  display: flex;
  gap: 15px;
}

.coupon-wrapper input {
  flex: 1;
  height: 45px;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  outline: unset !important;
}

.coupon-wrapper button {
  flex: 0 0 90px;
  font-size: 15px;
  color: var(--primary-color);
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background-color: #fbfff6;
  transition: all 0.5s;
}

.coupon-wrapper button:hover {
  color: #fbfff6;
  background-color: var(--primary-color);
  border: 1px solid #fbfff6;
}

.checkout_total-wrapper {
  background-color: var(--secondary-color);
  padding: 16px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
}

.checkout_total-row {
  display: flex;
  justify-content: space-between;
  color: #242424;
}

.checkout_total-row span:last-child {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.checkout_total-bottom {
  padding-top: 24px;
  border-top: 1px solid #c0c0c0;
  display: flex;
  justify-content: space-between;
}

.checkout_total-bottom span:last-child {
  font-size: 24px;
  font-weight: 600;
  color: #de4a30;
}

.about_us-text .subtitle {
  font-size: 36px;
  line-height: 70px;
  font-weight: 400;
}

.about_us-text .subtitle--secondary::after {
  width: 70px;
}

.about_us-text-description {
  margin-top: 30px;
  color: var(--secondary-color);
}

.about_us-img img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

.testimonial-section {
  background: var(--secondary-color);
  /* màu nền vàng kem nhạt */
  text-align: center;
}

.testimonial-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0px;
  color: var(--primary-color);
}

.testimonial-quote {
  font-style: italic;
  font-size: 20px;
  color: var(--primary-color);
  max-width: 1200px;
  margin: 50px auto 50px;
  font-weight: 300;
}

.testimonial-author {
  font-weight: 400;
  color: var(--primary-color);
  font-size: 28px;
  text-transform: uppercase;
  position: relative;
}

.testimonial-author::after {
  content: "";
  width: 35px;
  height: 35px;
  background-image: url("../images/quote.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
}

.video-play i {
  font-size: 60px;
}

#video_wrapper {
  background-image: url(../../front/images/video-bg.png);
  height: 622px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.video-overlay {
  position: absolute;
  top: 50%;
  z-index: 99;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-play {
  display: flex;
  flex-direction: column;
  max-width: 692px;
  width: 100%;
  height: 336px;
  color: #fff;
  align-items: center;
  justify-content: center;
  background-color: #40532575;
  border-radius: 24px;
  border: unset;
  outline: unset;
}

.video-play span {
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.lounge_menu-wrapper .subtitle {
  text-align: center;
  font-size: 36px;
  line-height: 70px;
}

.lounge_menu-wrapper .subtitle--secondary::after {
  margin-left: auto;
  margin-right: auto;
}

.lounge_menu-wrapper {
  margin-bottom: 60px;
}

.lounge_menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.lounge-item {
  border: 1px solid #e4e6e8;
}

.lounge-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.lounge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lounge-item:hover .lounge-img img {
  transform: scale(1.08);
}

.lounge-infor {
  background-color: var(--secondary-color);
  padding: 12px 24px;
}

.lounge-infor span {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #7b7b7b;
}

.lounge-name {
  margin: 10px 0;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 500;
}

.lounge-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lounge-action span {
  color: #242424;
  font-size: 24px;
}

.lounge-action input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #242424;
  outline: none;
  font-weight: 500;
}

.lounge-qty {
  display: flex;
}

.lounge-qty-btn {
  background-color: #b6c59f;
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 600;
}

.pricing_heading .subtitle--secondary {
  text-align: center;
}

.pricing_heading .subtitle--secondary::after {
  margin-left: auto;
  margin-right: auto;
}

.pricing-description {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 22px 0 50px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 45px;
}

.pricing-item .pricing-top {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}

.pricing-item .service-name {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 500;
}

.dots {
  flex: 1;
  border-bottom: 2px dotted var(--secondary-color);
  margin: 0 24px;
  height: 1px;
}

.price {
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 28px;
}

.pricing-item .service-desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary-color);
}

.why_chic_chat-img img {
  max-height: 450px;
  width: 100%;
  object-fit: cover;
}

.why_chic_chat-description {
  color: var(--secondary-color);
  max-width: 80%;
}

.why_chic_chat-text .subtitle {
  font-size: 36px;
  line-height: 70px;
  font-weight: 400;
}

#role_chic_and_chat {
  background-color: var(--secondary-color);
}

#role_chic_and_chat .subtitle {
  font-size: 36px;
  line-height: 70px;
  font-weight: 400;
  margin-bottom: 30px;
}

#role_chic_and_chat .subtitle--primary::after {
  width: 100px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.member-img {
  margin: 24px 0;
}

.member-img img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
}

.member-position {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary-color);
}

#proud_moments .subtitle,
#hear_from_team .subtitle {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 400;
}

#proud_moments .subtitle::after,
#hear_from_team .subtitle::after {
  display: none;
}

.proud_moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.proud_moments-grid .moment-img {
  margin: 24px 0;
}

.proud_moments-grid .moment-img img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
}

.moment-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.proud_moments-item p {
  color: var(--secondary-color);
}

.readmore_btn {
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  color: var(--secondary-color) !important;
  text-decoration: none;
}

.hearing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.hearing-description {
  color: var(--secondary-color);
  margin-top: 24px;
}

.hearing-icon img {
  margin: 0 auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.career_detail-body {
  margin-top: 40px;
}

.career_detail-body h1 {
  font-size: 36px;
  font-weight: 400;
  color: var(--secondary-color);
}

.career_detail-content {
  color: var(--secondary-color);
  margin: 30px 0;
  text-align: justify;
}

.radio-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ccc;
  padding: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  color: #fff;
  /* chữ trắng */
}

/* reset radio mặc định */
.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--secondary-color);
  /* viền xám khi chưa chọn */
  border-radius: 50%;
  background-color: #fff;
  /* nền trắng */
  cursor: pointer;
  position: relative;
  outline: none;
}

/* radio đã chọn */
.radio-option input[type="radio"]:checked {
  border-color: var(--secondary-color);
  /* viền xanh đậm */
  background-color: var(--secondary-color);
  /* nền xanh đậm */
}

/* chấm trắng bên trong khi chọn */
.radio-option input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1400px) {
  #gift_card .container {
    max-width: 1100px;
  }
}

.gift_card-title {
  font-size: 28px;
  color: #FFF3DA;
  font-weight: 400;
  margin-bottom: 24px;
}

.proud_moments-item p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* số dòng muốn hiển thị */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gift_card-col-left,
.would-like-to-gift h3,
.select-amount h3,
.payment-method_wrapper h3 {
  color: var(--secondary-color);
}

.gift_card-col-left h3 {
  font-weight: 400;
  font-size: 28px;
  margin: 24px 0;
}

.preview-wrapper h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.preview-img-wrapper {
  background-color: #b6c59f;
  border-radius: 8px;
  padding: 24px;
}

.preivew-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.preview-to-from {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.preview-to-from span {
  font-size: 20px;

}

.frequently_heading {
  text-align: center;
}

.frequently_heading h1 {
  font-size: 36px;
  font-weight: 400;
  color: var(--secondary-color);
}

.frequently_heading .btn {
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  padding: 12px;
  color: var(--secondary-color);
  cursor: pointer;
  background: transparent;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 12px;
  color: var(--secondary-color);
}

.frequently_contact {
  margin: 60px 0;
}

.frequently_contact .map iframe {
  width: 100%;
}

.frequently_contact .col iframe {
  width: 100% !important;
  border-radius: 24px;
}

.frequently_contact h3 {
  font-size: 36px;
  color: #FFF3DA;
  font-weight: 400;
  margin-bottom: 24px;
}

.frequently_contact {
  color: var(--secondary-color);
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-text {
  display: flex;
  line-height: 24px;
  font-size: 15px;
  gap: 5px;
  flex-direction: column;
}

.contact-item table tr {
  line-height: 2;
  /* tăng chiều cao dòng */
}

.contact-item table td {
  padding: 4px 0;
  /* khoảng cách trên/dưới */
}

.frequently_asking {
  margin-top: 60px;
}

#contact_popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000069;
  display: none;
  /* mặc định ẩn */
  opacity: 0;
  transition: opacity 0.3s ease;
}

#contact_popup.active {
  display: block;
  opacity: 1;
}

.contact_popup-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_popup-content {
  background: var(--secondary-color);
  padding: 32px;
  width: 100%;
  max-width: 800px;
  transform: scale(0.8);
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}

#contact_popup.active .contact_popup-content {
  transform: scale(1);
  opacity: 1;
}

.contact_popup-content .form-group .col label {
  color: var(--primary-color);
}

.contact_popup-content .form-group .col label::after {
  color: var(--primary-color);
}

.contact_popup-heading span {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}

.contact_popup-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-contact-popup {
  font-size: 35px !important;
  color: #626262 !important;
  cursor: pointer;
}

.contact_popup-body h2 {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-color);
}

.contact_popup-body p {
  font-size: 15px;
  color: var(--primary-color);
}

.blog_page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.popular_posts,
.category_post {
  border: 1px solid #c0c0c0;
  padding: 24px;
}

.popular_posts-heading h2,
.category_post-heading h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
  color: var(--secondary-color);
}

.popular_posts-heading,
.category_post-heading {
  border-bottom: 1px solid #e4e4e4;
}

.popular_posts-item {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
}

.popular_posts-img {
  flex: 0 0 115px;
}

.blog-item p {
  padding: 0 !important;
}

.popular_posts-img img {
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.popular_posts-description-time {
  color: var(--secondary-color);
}

.popular_posts-description-time .popular_posts-description,
.popular_posts-description-time .popular_posts-description a {
  font-size: 15px;
  line-height: 22px;
  color: var(--secondary-color);
}

.popular_posts-time {
  font-size: 12px;
}

.category_post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category_post-list a {
  color: var(--secondary-color);
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.category_post-list a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.blog_detail-wrapper h2 {
  font-size: 32px;
}

.category_post {
  margin-top: 40px;
}

.category_post-heading {
  margin-bottom: 16px;
}

.new-comment h4,
.blog-review h4,
.form-label {
  color: var(--secondary-color);
}

.blog_detail-wrapper {
  color: var(--secondary-color);
}

.blog_detail-wrapper h2 {
  font-weight: 400;
  color: var(--secondary-color);
}

.blog_detail-wrapper .blog_detail-content>*,
.blog_detail-wrapper .blog_detail-content span {
  color: var(--secondary-color) !important;
  font-size: 16px !important;
}

.steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0 0 2rem 0;
  margin: 0;
  position: relative;
  --progress-width: 0%;
}

/* line nền xám */
.steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
  z-index: -1;
}

/* line xanh chạy */
.steps::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: var(--progress-width);
  height: 4px;
  background: #4caf50;
  z-index: -1;
  transition: width 0.5s ease;
}

.step {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.step__label {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.step--active .step__label {
  background: #d5faa4;
}

.step--complete .step__label {
  background: #d5faa4;
  color: var(--primary-color);
}

/* form */
.step-forms {
  position: relative;
  min-height: 100px;
  margin-top: 50px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 400;
  color: var(--secondary-color);
}

/* Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  gap: 16px;
  padding: 12px 16px;
  background-color: var(--secondary-color);
}

.service-tabs .tab {
  flex: 1;
  padding: 5px 20px;
  background: #b6c59f;
  cursor: pointer;
  font-weight: 700;
  border: unset;
  font-size: 22px;
  color: #1a1a1a;
}

.service-tabs .tab.active {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* Grid service */
.service-cate-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.service-card {
  background: var(--secondary-color);
  padding: 24px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--primary-color);
}

.service-card p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-footer a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.service-footer span {
  font-weight: 600;
}

.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 27px;
  position: relative;
  padding-top: 24px;
  padding-right: 24px;
}

.calendar-days {
  margin: 0 auto;
  display: flex;
  gap: 13px;
  margin-bottom: 0px;
  text-align: center;
  overflow-x: auto;
  padding: 5px;
  scroll-snap-type: x mandatory;
  padding-bottom: 30px;
  max-width: 1100px;
}

.calendar-days::-webkit-scrollbar {
  height: 5px;
  /* độ cao scrollbar */
}

.calendar-days::-webkit-scrollbar-track {
  background: #d3d3d3;
  /* nền xám nhạt */
  border-radius: 10px;
}

.calendar-days::-webkit-scrollbar-thumb {
  background: #2c4a2c;
  /* thanh xanh đậm */
  border-radius: 10px;
}

.calendar-days::-webkit-scrollbar-thumb:hover {
  background: #1b331b;
  /* hover xanh đậm hơn */
}

.calendar-days::-webkit-scrollbar-button {
  display: none;
  height: 0;
}

.day-cell {
  flex: 0 0 calc(100% / 7 - 10px);
  /* mỗi ngày chiếm ~1/7 chiều rộng */
  min-width: 80px;
  /* fallback cho màn nhỏ */
  border: 1px solid #ccc;
  background: #f9f5e9;
  cursor: pointer;
  scroll-snap-align: start;
}

.calendar-action {
  position: absolute;
  right: 0;
  display: flex;
  gap: 20px;
  padding-right: 24px;
}

.calendar-action button {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fafbfe;
  color: var(--primary-color);
  border-radius: 50px;
  border: 0;
  transition: all 0.3s;
}

.calendar-action button i {
  font-size: 20px;
}

.calendar-action button:hover {
  background-color: var(--primary-color);
  color: #fafbfe;
}

/* Ẩn checkbox */
.calendar-days input,
.time-slot input {
  display: none;
}

/* Ngày */
.calendar-days label {
  display: block;
  padding: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.5s;
}

.calendar-days label:hover {}

.calendar-days input:checked+span {
  background: #2c4a2c;
  color: #fff;
}

.calendar-days .weekday {
  font-size: 15px;
  color: #242424;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 25px;
}

.calendar-days .daynum {
  font-weight: 500;
  font-size: 15px;
  color: #242424;
}

/* Giờ */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 0 30px;
}

.booking-customer-information form label .error {
  font-size: 12px;
  color: red !important;
  font-style: italic;
}

.time-slot {
  text-align: center;
  cursor: pointer;
}

.time-slot {
  width: calc(100% / 5 - 16px);
}

.time-slot span {
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #d3e2be;
  max-width: 300px;
  width: 100%;
  color: var(--secondary-color);
  font-size: 16px;
  transition: all 0.3s;
  color: #000;
}

.recommended-time .time-slot span {
  font-size: 28px;
  color: var(--secondary-color);
  background: var(--primary-color);
}

.time-slot input:checked+span {
  background: var(--primary-color);
  color: #fff;
}

.choose-calendar,
.choose-nail-artist,
.booking-customer-information,
.booking_checkout {
  background-color: var(--secondary-color);
  padding: 24px;
}

.choose-calendar h2,
.choose-nail-artist h2,
.booking-customer-information h2 {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  font-weight: 400;
}

.calendar-wrapper {
  border: 1px solid #c0c0c0;
  margin-top: 50px;
}

.calendar-month {
  font-size: 28px;
  font-weight: 400;
  color: var(--primary-color);

}

.calendar-block {
  border-bottom: 1px solid #c0c0c0;
}

.recommended-time {
  margin: 30px;
  border: 1px solid #f9e1b1;
  padding: 24px;
  text-align: center;
}

.recommended-time h3 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 30px;
}

.form-actions {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  margin-top: 50px;
}

.nail_artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 50px;
}

.artist-item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ẩn radio mặc định */
.artist-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 23px;
  right: 10px;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  /* bo vuông như bạn muốn */
  background: #fff;
  cursor: pointer;
  outline: none;
  z-index: 99;
  transition: all 0.2s ease;
}

/* Khi chọn */
.artist-item input[type="radio"]:checked {
  background: var(--primary-color);
  /* xanh rêu */
  border-color: var(--primary-color);
}

/* Dấu tick */
.artist-item input[type="radio"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 13px;
  position: absolute;
  top: -1px;
  left: 3px;
}

/* Ảnh */
.artist-img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* vuông */
}

.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s ease;
}

.gap-15 {
  gap: 15px;
}

.w-fitcontent {
  width: fit-content !important;
}

.cursor-pointer {
  cursor: pointer
}

.artist-item:hover .artist-img img {
  transform: scale(1.08);
}

/* Tên */
.artist-name {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
}

.booking-customer-information {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.booking-customer-descripton {
  font-size: 15px;
  max-width: 600px;
  font-weight: 400;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary-color);
  margin-top: 20px;
}

.booking-customer-information form label {
  color: #181818 !important;
}

.booking_checkout {
  padding: 20px;
}

#payment-form .payment-method {
  height: 100%;
}

/* Left box */
.booking-infomation {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.booking-infomation h3 {
  margin-bottom: 25px;
  font-size: 22px;
  border-bottom: 2px solid #f0f0f0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: normal;
  text-align: left;
  padding-bottom: 15px;

}

/* Bố cục danh sách mới cho thông tin đặt chỗ */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  min-width: 140px;
}

.info-icon {
  color: var(--primary-color);
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.info-value {
  color: #242424;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  flex: 1;
}

.info-item.total-row {
  margin-top: 15px;
  padding: 15px;
  background-color: #f9fbf4;
  border-radius: 8px;
  border: 1px solid #e8f0d8;
  align-items: center;
}

.info-item.total-row .info-label {
  color: #242424;
  font-weight: 700;
  font-size: 15px;
}

.info-item.total-row .info-value {
  color: #ff5722;
  font-size: 22px;
  font-weight: 800;
}

.info-item.deposit-row {
  background-color: #fff3e0;
  border-color: #ffe0b2;
}

.service-item-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.service-main-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Right box */
.payment-method,
.recomment_product_body {
  padding: 20px;
  border: 1px solid #c0c0c0;
}

.payment-method h3,
.recomment_product h2 {
  margin-bottom: 40px;
  font-size: 24px;
  border-bottom: 1px solid #c0c0c0;
  color: var(--primary-color);
  line-height: 60px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
}

.payment-option {
  display: flex !important;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.payment-option input {
  margin-right: 8px;
}

.payment-option:hover {
  border-color: #2f4f2f;
}

.payment-option img {
  height: 18px;
  vertical-align: middle;
}

.payment-option span {
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 10px;
}

/* More Services Modal Styles */
#moreServicesModal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

#moreServicesModal .modal-header {
  background-color: #f9fbf4;
  border-bottom: 1px solid #e8f0d8;
  padding: 20px 30px;
}

#moreServicesModal .modal-title {
  color: var(--primary-color);

  font-weight: 700;
  font-size: 24px;
}

#moreServicesModal .modal-body {
  background-color: #fff;
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Search bar in Modal */
.service-search-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.service-search-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
}

#service-search-input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  transition: all 0.3s;
  background-color: #fcfcfc;
}

#service-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(64, 83, 37, 0.1);
  outline: none;
  background-color: #fff;
}

/* Service Cards in Modal */
.extra-service-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  box-shadow: 0 4px 6px #f0f0f0;
  padding: 20px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.extra-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.extra-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-color);
  transition: height 0.3s;
}

.extra-service-card:hover::before {
  height: 100%;
}

.extra-service-icon {
  width: 45px;
  height: 45px;
  background-color: #f9fbf4;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.extra-service-name {
  font-size: 17px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 8px;
  display: block;
}

.extra-service-price {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 15px;
}

.btn-add-extra {
  transition: all 0.3s;
}

.btn-add-extra:hover {
  transform: scale(1.05);
}

/* Note */
.payment-note {
  font-size: 15px;
  margin-top: 24px;
  color: #444;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.payment-note p:first-child {
  color: var(--primary-color);
}

/* Policy */
.policy-check {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 15px;
  font-size: 15px;
}

.policy-check a {
  color: #2f4f2f;
  text-decoration: underline;
}

.form-step-5 #pay-btn {
  max-width: 700px;
  margin: 50px auto 0;
}

.service-card {
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-body {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}

.blog-body p {
  padding: 0;
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff3da;
  box-shadow: 0 0px 10px #6a6a6a;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  font-size: 12px;
  top: 20px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #405325 !important;
}

.service-card.checked {
  background: #B6C59F !important;
}

.service-card.checked h3,
.service-card.checked p,
.service-card.checked .service-footer a {
  color: #242424;
}

/* Style mặc định cho ô ngày */
.day-cell span {
  display: inline-block;
  padding: 10px;
  border-radius: 30px;
  width: 70px;
  background: #f3f3f3;
  color: black;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.day-cell input:checked+span .weekday,
.day-cell input:checked+span .daynum {
  color: #fff3da;
}

/* Khi được chọn */
.day-cell input:checked+span {
  background: #405325;
  /* Nền xanh */
  color: white;
  /* Chữ trắng */
  font-weight: bold;
  /* Chữ đậm */
}

/* Khi disabled */
.day-cell input:disabled+span {
  background: #e0e0e0;
  /* Màu xám */
  color: #999;
  cursor: not-allowed;
}

.product-description {
  color: #e0e0e0;
}

#login_form {
  padding: 100px 0;
}

.login_form-content {
  background: var(--secondary-color);
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
}

.login_form-content h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: var(--primary-color);
  display: block;
}

.form-group input {
  border: 0.5px solid #c0c0c0;
  height: 46px;
  border-radius: 4px;
  width: 100%;
  outline: none !important;
  padding: 10px;
}

.password-field {
  margin-bottom: 40px;
}

.form-group .btn {
  border-radius: 4px;
}

.forgot-and-register {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.forgot-and-register a {
  color: var(--primary-color);
  font-weight: 500;
}

.forgot-and-register a:hover {
  font-weight: 600;
}

.login_form-content .register-title {
  margin-bottom: 12px;
}

.login_form-link {
  width: fit-content;
  margin: 0 auto 24px;
  display: block;
  font-weight: 600;
  color: var(--primary-color) !important;
  font-size: 15px;
}

.form-login-message {
  color: var(--primary-color);
}

.contact-options {
  display: flex;
  gap: 10px;
}

/* Profile */
#profile_section {
  padding: 60px 0 90px;
}

.tab-sidebar {
  box-shadow: -1px -1px 8px 0px #00000026;

  box-shadow: 1px 1px 8px 0px #00000026;
  background-color: var(--secondary-color);
}

.tab-sidebar-left {
  width: 360px;
}

.tab-sidebar-right {
  flex: auto;
  padding: 0;
}

.tab-sidebar-right_body {
  padding: 32px;
}

.tab-sidebar-right_heading {
  padding: 16px 24px;
  border-bottom: 1px solid #405325;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.tab-sidebar_body ul li {
  list-style-type: none;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.5s;
}

.tab-sidebar_body ul li a {
  text-decoration: none;
  color: var(--primary-color);
}

.tab-sidebar_body ul {
  padding-left: 0;
  margin-bottom: 0;
}

.tab-sidebar-left {
  padding: 36px 24px;
}

.tab-sidebar_heading span {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 500;
}

.tab-sidebar_heading h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: var(--primary-color);
}

.tab-sidebar_heading {
  padding-bottom: 20px;
  border-bottom: 1px solid #c0c0c0;
  margin-bottom: 24px;
}

.tab-sidebar_body ul li.active {
  background-color: var(--primary-color);
}

.tab-sidebar_body ul li.active a {
  color: var(--secondary-color);
}

.tab-sidebar_body ul li:hover {
  background-color: var(--primary-color);
}

.tab-sidebar_body ul li:hover a {
  color: var(--secondary-color);
}

.booking_infor-table {
  margin-top: 15px;
}

.booking_infor-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.booking_infor-table thead th {
  background: #b6c59f;
  /* xanh olive */
  color: #333333;
  padding: 18px 10px;
  text-align: left;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--secondary-color);
}

.booking_infor-table tbody td {
  padding: 18px 10px;
  border: 1px solid var(--secondary-color);
  color: #333;
  font-size: 13px;
}

.booking_infor-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.booking_infor-table td strong {
  font-weight: 600;
  color: #000;
}

.btn-cancel {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.btn-cancel:hover {
  background: #c0392b;
}

.booking_infor-note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking_infor-note span {
  font-size: 12px;
  font-weight: 600;
}

.gift_card_infor-content {
  padding: 40px 70px;
}

.gift_card-right {
  flex: 0 0 45%;
}

.gift_card-left {
  flex: auto;
}

.gift_card-left h1 {
  font-size: 28px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 24px;
}

/* .gift_card-right img {

} */
.gift_card-left p {
  color: var(--primary-color);
}

.gallery-gird {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px;
  background-color: var(--secondary-color);
  margin-top: 44px;
}

.gallery-item {
  position: relative;
}

.gallery-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* tạo tỷ lệ 1:1 */
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

.gallery-name {
  padding: 10px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 18px;
}

.gallery-name span {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.gallery-name img {
  width: 22px;
  height: 22px;
}

.gallery-block h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  color: var(--secondary-color);
  position: relative;
}

.gallery-block h1::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-block {
  padding: 30px 0;
}

#gallery-our_work {
  padding-top: 0;
}

#gallery-nail_art {
  padding-bottom: 0;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  left: 26px;
  border-radius: 0px;
  padding: 0px !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dropdown-item {
  text-align: center;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.dropdown-item:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.bg-primary {
  background-color: #405325;
}

.preivew-img svg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#confirmPayment .modal-header,
#loungeModal .modal-header {
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}

.btn.btn-info {
  font-weight: 500;
  font-size: 20px;
  color: #405325;
  border: unset !important;
  background: #B6C59F;
}

#confirmPayment .modal-footer {
  justify-content: center;
  border: unset !important;
  gap: 20px;
}

#confirmPayment .btn-close,
#loungeModal .btn-close {
  font-size: 15px;
  position: absolute;
  right: 30px;
}

#confirmPayment .modal-content {
  padding: 10px
}

#confirmPayment .btn {
  width: 300px;
}

#loungeModal .modal-content {
  height: 90vh;
  overflow-y: scroll;
}

#loungeModal .modal-footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  border: unset !important;
  background: #405325;
  z-index: 1000;
  box-shadow: 0 4px 10px #ccc;
}

#loungeModal .btn {
  width: fit-content !important;
}

#loungeModal .modal-title {
  text-align: center;
  font-size: 36px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: #fff3da;
}

#loungeModal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.remove-product {
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  color: red;
  width: 25px;
  border: 1px solid red;
  border-radius: 50%;
  outline: unset !important;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  height: 20px;
}

.time-slot.disabled,
.time-slot.disabled span {
  background: #ccc;
  cursor: not-allowed;
}

.slotLoader-skaliaton-service,
.slotLoader-skaliaton-service .spinner-border {
  color: #fff3da !important;
}

label.error {
  color: #f93939 !important;
  font-style: italic;
}

.border {
  border: 1px solid #9d9d9d !important;
}

.blog-item .blog-content {
  padding: 0;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Ảnh 1 */
.about-images .img-1 {
  top: 30%;
  left: 0;
  width: 25%;
  z-index: 2;
}

/* Ảnh 2 (ảnh chính, to ở giữa) */
.about-images .img-2 {
  top: 0;
  left: 50%;
  width: 50%;
  z-index: 1;
}

/* Ảnh 3 (chồng nhẹ ở dưới) */
.about-images .img-3 {
  bottom: -10%;
  left: 10%;
  width: 50%;
  z-index: 1;
}

.card .card-title {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1200px) {

  /* Ảnh 1 */
  .about-images .img-1 {
    top: 30%;
    left: 0;
    width: 37%;
    z-index: 2;
  }

  /* Ảnh 2 (ảnh chính, to ở giữa) */
  .about-images .img-2 {
    top: 0;
    left: 50%;
    width: 50%;
    z-index: 1;
  }

  /* Ảnh 3 (chồng nhẹ ở dưới) */
  .about-images .img-3 {
    bottom: -10%;
    left: 10%;
    width: 50%;
    z-index: 1;
  }
}

.add-to-cart {
  flex: 0 0 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f6f0dc;
  border: none;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #364f2b;
  cursor: pointer;
  transition: 0.3s;
}

.service-cate-list>p {
  color: #FFF3DA;
}

/* =========================================== */
#nailSampleModal .swiper-button-next,
#nailSampleModal .swiper-button-prev {
  top: 50% !important;
}

#nailSampleModal .modal-body {
  padding: 0;
}

#nailSampleModal .swiper-slide img {
  object-fit: cover;
  width: 100%;
}

#nailSampleModal .modal-content {
  border: unset;
}

#nailSampleModal .form-check .form-check-label {
  font-size: 15px;
  color: #FFF3DA;
}

#nailSampleModal .filter-header-bg {
  background-color: #556B2F !important;
  color: #fff;
}

#nailSampleModal .filter-header-bg h6,
#nailSampleModal .filter-header-bg p {
  color: inherit;
}

#nailSampleModal .color-swatch-grid {
  padding: 1rem;
}

#nailSampleModal .color-swatch-wrapper {
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  cursor: pointer;
  position: relative;
}

#nailSampleModal .color-swatch-wrapper.is-selected {
  border: 2px solid #556B2F;
}

#nailSampleModal .color-swatch-wrapper .checkmark {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #556B2F;
  color: #fff;
  border-radius: 50%;
  padding: 2px;
  font-size: 0.6rem;
  transform: translate(25%, -25%);
  line-height: 1;
}

#nailSampleModal .color-swatch-wrapper {
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

#nailSampleModal .color-swatch-wrapper.is-selected::before {
  content: '✔';
  position: absolute;
  top: 0;
  right: 0;
  background: #556B2F;
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  transform: translate(25%, -25%);
}

#nailSampleModal .form-check {
  margin: 0;
  width: calc(100% / 4);
}

#nailSampleModal .filter-header-bg .filter-type {
  border-top: 1px solid #FFF3DA3D !important;
}

#nailSampleModal .filter-header-bg .filter-type p {
  color: #FFF3DA;
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.5px;
}

#nailSampleModal .btn-clear-nailSample {
  border: unset;
  background: transparent;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.5px;
  color: #FFF3DA;
  text-decoration: underline;
}

@media (min-width: 1360px) {
  .modal-xl {
    --bs-modal-width: 1300px;
  }
}

/* Khung bao ngoài: căn giữa, giữ chiều cao cố định */
.loading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  /* tương đương p-8 của Tailwind */
  color: #6b7280;
  /* text-gray-500 */
  min-height: 200px;
  /* giữ layout không nhảy khi load */
}

/* Vòng xoay loader */
.loading-spinner {
  width: 32px;
  /* h-8 */
  height: 32px;
  /* w-8 */
  border: 3px solid #d1d5db;
  /* border-gray-300 */
  border-bottom-color: #9ca3af;
  /* border-gray-400 */
  border-radius: 50%;
  /* rounded-full */
  margin-bottom: 12px;
  /* mb-3 */
  animation: spin 1s linear infinite;
}

/* Hiệu ứng xoay */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* (Tùy chọn) hiệu ứng fade-in khi hiển thị nội dung mới */
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- HIỆU ỨNG CHUNG CHO SKELETON --- */
.skeleton,
.skeleton-line,
.skeleton-box {
  background-color: #e2e2e2;
  /* Màu xám nhạt */
  background-image: linear-gradient(90deg,
      #e2e2e2 0px,
      #f5f5f5 40px,
      #e2e2e2 80px);
  background-size: 200% 100%;
  animation: pulse 1.5s infinite linear;
  /* Hiệu ứng ánh sáng chạy qua */
  border-radius: 4px;
  display: block;
}

/* Định nghĩa hiệu ứng ánh sáng chạy qua */
@keyframes pulse {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

/* --- KÍCH THƯỚC CỤ THỂ CHO FORM KHÁCH HÀNG (Dùng trong #customerInfoForm) --- */

.skeleton-row-label {
  height: 14px;
  width: 30%;
  margin-right: 15px;
}

.skeleton-row-input {
  height: 38px;
  /* Chiều cao tương đương input-control của Bootstrap */
  width: 65%;
}

/* --- KÍCH THƯỚC CỤ THỂ CHO BẢNG DATATABLE (Dùng trong #loader-table) --- */

.label-loader {
  height: 16px;
  /* Chiều cao cho tiêu đề cột */
  width: 80%;
}

.data-loader {
  height: 14px;
  /* Chiều cao cho dữ liệu hàng */
  width: 95%;
}

/* Đảm bảo các khối skeleton trong bảng chiếm toàn bộ ô */
#loader-table td>.skeleton,
#loader-table th>.skeleton {
  margin: 0 auto;
}


/* --- KÍCH THƯỚC CỤ THỂ CHO MODAL MẪU MÓNG (#nailDesignContainer và #slideReview) --- */

/* Khối chung cho swatch/slide */
.skeleton-box {
  border-radius: 4px;
}

/* Swatch nhỏ */
.skeleton-swatch-grid .skeleton-box {
  border-radius: 50% !important;
  /* Tạo hình tròn cho swatch */
}

.skeleton-swatch-grid .skeleton-line {
  margin: 0 auto;
}

/* Thêm vào CSS bạn đã có */
#nailDesignContainer {
  background: #fff3da;
  height: 100%;
  border-radius: 4px;
}

.skeleton-slide-review {
  height: 100%;
  min-height: 500px;
}

/* Đảm bảo #slideReview có chiều cao cố định hoặc min-height để ảnh có không gian để fit */
#slideReview {
  min-height: 80vh;
  max-height: 80vh;
  height: 80vh;
}

/* Đảm bảo Swiper container chiếm hết chiều cao của #slideReview */
#slideReview .swiper {
  height: 100%;
  /* Đảm bảo swiper chiếm toàn bộ chiều cao của #slideReview */
  width: 100%;
}

/* Áp dụng cho từng slide và ảnh bên trong */
.swiper-slide {
  display: flex;
  /* Để ảnh bên trong có thể căn giữa */
  align-items: center;
  /* Căn giữa ảnh theo chiều dọc */
  justify-content: center;
  /* Căn giữa ảnh theo chiều ngang */
  height: 100%;
  /* Mỗi slide sẽ chiếm hết chiều cao của swiper container */
}

.swiper-slide img {
  width: 100%;
  /* Ảnh sẽ lấp đầy chiều rộng của slide */
  height: 100%;
  /* Ảnh sẽ lấp đầy chiều cao của slide */
  object-fit: cover;
  /* ⭐ KEY: Ảnh sẽ lấp đầy slide, cắt đi phần thừa nếu tỷ lệ không khớp ⭐ */
  /* object-fit: contain; /* THAY THẾ nếu bạn muốn ảnh hiển thị toàn bộ, có thể có khoảng trống */
  display: block;
  /* Loại bỏ khoảng trống dưới ảnh */
}

.img-nail-sample {
  max-width: 100px;
  height: auto;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 0px 6px #ccc;
}

@media screen and (max-width: 1024px) {
  .recomment_product {
    margin-top: 30px;
  }

  #slideReview {
    min-height: 40vh;
    max-height: 40vh;
    height: 40vh;
  }

  .time-slot {
    width: calc(100% / 4 - 15px);
  }

  .why_chic_chat-description {
    width: 100%;
    max-width: 100%;
  }

  .category-box {
    margin-bottom: 24px;
  }

  .product-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-title {
    font-size: 24px;
  }

  .service-bottom {
    min-height: unset;
  }

  .services_list {
    gap: 15px;
  }

  .navbar .dropdown-menu {
    display: none !important;
    position: static !important;
    float: none;
    background: transparent;
    box-shadow: none;
    padding-left: 15px;
  }

  .navbar .dropdown-menu.show {
    display: block !important;
  }

  /* Xoay icon khi mở */
  .dropdown-toggle img {
    transition: transform 0.3s ease;
  }

  .dropdown-toggle.open img {
    transform: rotate(180deg);
  }

  /* ===== Sidebar mobile menu (bên trái) ===== */
  #navbarSupportedContent {
    position: fixed;
    top: 0;
    left: -100%;
    /* từ bên trái */
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #405325;
    color: #fff;
    z-index: 1000;
    padding: 30px 20px;
    transition: left 0.35s ease;
    overflow-y: auto;
  }

  #navbarSupportedContent.active {
    left: 0;
    /* trượt vào */
  }

  /* ===== Overlay mờ nền ===== */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
  }

  .menu-overlay.show {
    display: block;
  }

  /* ===== Nút toggle (icon ☰) ===== */
  .navbar-toggler {
    border: none;
    background: transparent;
    z-index: 99;
  }

  .navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background-color: #fff;
    display: block;
    position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: 0.3s;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  body.no-scroll {
    overflow: hidden;
    /* Khóa cuộn */
  }

  /* ===== Nút đóng trong menu ===== */
  .close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    z-index: 1001;
  }

  #news_latter-section {
    height: unset;
  }

  section {
    padding: 0;
  }

  .body-color-filter {
    padding: 25px;
  }

  .custom-swiper-button-next {
    right: 0;
    top: 35%;
  }

  .custom-swiper-button-prev {
    left: 0px;
    top: 35%;
  }

  #news_latter-section .container,
  #booking_time-section .container {
    justify-content: center;
  }

  .our_story-left {
    flex: 0 0 50%;
  }

  .our_story-right {
    flex: 0 0 50%;
  }

  #our_story .container {
    gap: 0;
  }

  .our_service-heading-left {
    flex: 0 0 50%;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #header .nav-item {
    margin-inline-end: 0 !important;
  }

  .about-wrap {
    display: block;
  }

  .our_service-title {
    font-size: 32px;
  }

  .about-images .img-3 {
    bottom: -80%;
    left: 10%;
    width: 50%;
    z-index: 1;
  }

  .about-images .img-2 {
    top: 0;
    left: 45%;
    width: 45%;
    z-index: 1;
  }

  .about-images .img-1 {
    top: 30%;
    left: 5%;
    width: 30%;
    z-index: 2;
  }

  .about-content {
    margin-top: 450px;
  }

  .testimonial_title,
  .blogs_heading .blogs_description,
  .color-title,
  .booking_time-title,
  .about_us-text .subtitle,
  .news_latter-title,
  .about-title,
  .our_story-content .subtitle--secondary,
  .our_story_title,
  .our_service-title,
  .blogs_heading .subtitle,
  .product_bottom-section .subtitle--secondary,
  .testimonial-title,
  .lounge_menu-wrapper .subtitle,
  .pricing-description,
  .why_chic_chat-text .subtitle,
  #role_chic_and_chat .subtitle,
  #proud_moments .subtitle,
  #hear_from_team .subtitle,
  .career_detail-body h1,
  .frequently_heading h1,
  .frequently_contact h3,
  .contact_popup-body h2,
  .gallery-block h1,
  .choose-calendar h2,
  .choose-nail-artist h2,
  .booking-customer-information h2,
  .step-title,
  .login_form-content h1,
  #loungeModal .modal-title {
    font-size: 32px;
  }

  .custom-section {
    padding: 60px 0 !important;
  }

  #our_service,
  #testimonial_section,
  #about-us,
  #services_wrapper {
    padding: 80px 0;
  }

  .lounge_menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .body-color-filter {
    padding: 20px 60px;
    padding-right: 0;
  }

  .color-list {
    padding: 25px;
  }
}

@media screen and (max-width: 768px) {
  #nailSampleModal .form-check {
    margin: 0;
    width: calc(100% / 3);
  }

  .time-slot {
    width: calc(100% / 3 - 14px);
  }

  .lounge_menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .frequently_contact .map,
  .about_us-text {
    order: 2;
  }

  .about_us-img {
    order: 1;
  }

  .frequently_contact .form-contact {
    margin-bottom: 50px;
    order: 1
  }

  .pricing-grid {
    gap: 15px 25px;
  }

  .custom-section,
  #services_wrapper {
    padding: 60px 0;
  }

  .services_body {
    margin: 30px auto;
  }

  .product-shop-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 15px;
  }

  .our_service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .our_service-heading {
    flex-direction: column;
  }

  #about-us .about-wrap {
    display: block;
  }

  .about-content {
    margin-top: 120px;
  }

  .about-images .img-1 {
    top: 20%;
    left: 10%;
    width: 25%;
    z-index: 2;
  }

  /* Ảnh 2 (ảnh chính, to ở giữa) */
  .about-images .img-2 {
    top: 0;
    left: 40%;
    width: 50%;
    z-index: 1;
  }

  /* Ảnh 3 (chồng nhẹ ở dưới) */
  .about-images .img-3 {
    bottom: -20%;
    left: 10%;
    width: 50%;
    z-index: 1;
  }

  /* our story */
  .our_story-left,
  .our_story-right {
    flex: 0 0 100%;
  }

  #our_story .container {
    flex-direction: column;
  }

  .our_story-left {
    margin-bottom: 20px;
  }

  .gallery-block h1,
  .testimonial-title,
  .about_us-text .subtitle,
  .pricing-description,
  #proud_moments .subtitle,
  #hear_from_team .subtitle,
  #loungeModal .modal-title,
  .lounge_menu-wrapper .subtitle,
  #role_chic_and_chat .subtitle,
  h1.product-name,
  .staff-form h2,
  .why_chic_chat-text .subtitle,
  .booking-customer-information h2,
  .product_bottom-section .subtitle--secondary,
  .our_service-title,
  .about-title,
  .our_story-content .subtitle--secondary,
  .our_story_title,
  .testimonial_title,
  .booking_time-title,
  .blogs_heading .subtitle,
  .blogs_heading .blogs_description,
  .color-title,
  .news_latter-title,
  .career_detail-body h1,
  .frequently_heading h1,
  .frequently_contact h3,
  .contact_popup-body h2,
  .choose-calendar h2,
  .choose-nail-artist h2,
  .step-title,
  .login_form-content h1 {
    font-size: 26px;
  }

  .gallery-gird {
    grid-template-columns: repeat(2, 1fr);
  }

  .product_body-section {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .service-cate-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .body-color-filter {
    padding: 15px 30px;
    padding-right: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .color-list {
    padding: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 480px) {

  .payment-method h3,
  .recomment_product h2 {
    font-size: 22px;
  }

  .coupon-wrapper button {
    flex: 0 0 40px
  }

  .coupon-wrapper {
    flex-direction: column;
  }

  .booking-infomation td {
    font-size: 15px;
  }

  .booking-infomation td:first-child {
    width: 120px;
    max-width: 120px;
    min-width: 120px;
  }

  .booking-infomation {
    padding: 20px;
  }

  .nail_artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .calendar-action {
    top: -22px;
    right: 25%;
  }

  .time-slot {
    width: 100%;
  }

  .steps::before,
  .steps::after {
    top: 18px;
  }

  .service-tabs .swiper-button-prev,
  .service-tabs .swiper-button-next {
    box-shadow: 0 0 4px #ccc;
    z-index: 999999;
    top: 15px !important;
  }

  .breadcrumb,
  .service-card h3,
  .service-tabs .tab {
    font-size: 15px;
  }

  .main-swiper {
    width: 100%;
  }

  .thumbs-swiper {
    width: 100% !important;
    height: fit-content !important;
  }

  .product-gallery {
    flex-direction: column-reverse;
  }

  .lounge_menu-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .hearing-description {
    text-align: center;
  }

  .pricing-grid,
  .member-grid,
  .proud_moments-grid,
  .hearing-grid,
  .blog_page-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .login_form-content h1 {
    font-size: 28px;
  }

  #login_form {
    padding: 50px 0;
  }

  .login_form-content {
    padding: 20px;
  }

  .about_us-img {
    order: 1
  }

  .about_us-text {
    order: 2
  }

  .gallery-gird {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-block h1,
  h1.product-name,
  .single_page-description,
  .booking-customer-information h2,
  .choose-calendar h2,
  .lounge_menu-wrapper .subtitle,
  #loungeModal .modal-title,
  .calendar-month,
  .staff-form h2 {
    font-size: 24px;
  }

  .services_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .custom-swiper-button-next {
    right: 0;
    top: 35%;
  }

  .custom-swiper-button-prev {
    left: 0px;
    top: 35%;
  }

  .about-images .img-2 {
    left: unset;
    right: 0;
  }

  .color-heading {
    margin-bottom: 30px;
  }

  .about-content {
    margin-top: 80px;
  }

  .about-images .img-1 {
    left: 0;
    width: 40%;
  }

  .menu_footer ul li a {
    font-size: 15px;
  }

  #subscriberBtn {
    padding: 10px 0;
    margin-top: 20px;
  }

  #subscriberBtn,
  #subscriber_email {
    width: 100%;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .menu_footer {
    margin-bottom: 30px;
  }

  #hero-banner {
    height: unset;
  }

  .news_latter-wrapper {
    flex: 0 0 100%;
  }

  #hero-banner .hero-banner-content {
    padding: 100px 0;
  }

  .hero-banner-content h1 {
    font-size: 30px;
  }

  .our_service-list,
  .blog_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .body-color-filter {
    padding: 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }

  .color-list {
    padding: 15px;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .color-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .color-list {
    padding: 15px;
  }

  .our_story-right img {
    height: unset;
  }

  .about-images {
    min-height: 250px;
  }

  .testimonial_title,
  .blogs_heading .blogs_description,
  .color-title,
  .booking_time-title,
  .news_latter-title,
  .our_service-title,
  .about-title,
  .our_story-content .subtitle--secondary,
  .our_story_title,
  .blogs_heading .subtitle,
  .product_bottom-section .subtitle--secondary,
  .about_us-text .subtitle,
  .testimonial-title,
  .lounge_menu-wrapper .subtitle,
  .pricing-description,
  .why_chic_chat-text .subtitle,
  #role_chic_and_chat .subtitle,
  #proud_moments .subtitle,
  #hear_from_team .subtitle,
  .career_detail-body h1,
  .frequently_heading h1,
  .frequently_contact h3,
  .contact_popup-body h2,
  .gallery-block h1,
  .choose-calendar h2,
  .choose-nail-artist h2,
  .booking-customer-information h2,
  .step-title,
  .login_form-content h1,
  #loungeModal .modal-title {
    font-size: 24px;
  }

  #booking_time-section {
    height: unset;
  }

  .testimonial-swiper .swiper-slide p {
    width: 100%;
    max-width: 100%;
  }

  .booking_time-wrapper {
    flex: 0 0 100%;
  }

  .product_body-section .product-price {
    font-size: 15px;
  }

  .step__label {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .step-forms {
    margin-top: 25px;
  }
}

/* Google Translate Hidden Element */
#google_translate_element {
  display: none !important;
}

/* ===== Custom Language Switcher (Professional Look) ===== */
.custom-lang-switcher {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  background: rgba(64, 83, 37, 0.9);
  /* Theme primary with transparency */
  padding: 10px 5px;
  border-radius: 15px 0 0 15px;
  box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lang-btn.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Surgical Hiding: Hide all Google UI but keep our widget alive */
.skiptranslate:not(#google_translate_element):not(#google_translate_element *) {
  display: none !important;
  visibility: hidden !important;
}

/* Force body and html to stay at top, preventing Google from pushing content down */
body {
  top: 0px !important;
  position: static !important;
}

html {
  top: 0px !important;
}

/* Extra hiding for known Google containers */
.goog-te-banner-frame,
.goog-te-banner,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
.VI606a-w9S0ec-sM74S,
[id=":0.container"] {
  display: none !important;
}

/* Custom Nail Filter Checkbox Size */
.nail-filter-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid #c6c6c6;
    cursor: pointer;
}

.nail-filter-checkbox + label {
    vertical-align: middle;
    display: inline-block;
    padding-top: 2px;
    font-size: 15px;
    cursor: pointer;
}
