/*
 Theme Name:   Nevo Child
 Theme URI:    https://nevothemes.com
 Description:  Default Nevo child theme
 Author:       NevoThemes
 Author URI:   https://nevothemes.com
 Template:     nevo
 Version:      0.1
*/

/* ============================================================
   FAQ ACCORDION — CUSTOM CSS (đã dọn dẹp, loại bỏ trùng lặp)
   ============================================================ */

/* ══════════════════════════════════════════
   SEARCH BAR + MIC
══════════════════════════════════════════ */
input#mnsFaqSearch {
    background: none;
}
.mns-search-wrap {
  max-width: 680px;
  margin: 0 auto 24px;
  padding: 0 24px;
}

.mns-search-box {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: 60px;
  padding: 12px 14px 12px 22px;
  gap: 12px;
  box-shadow: 0 4px 24px rgb(136 136 136 / 10%);
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}

.mns-search-box:focus-within {
  border-color: #528D46;
  box-shadow: 0 4px 32px rgb(107 107 107 / 20%);
}

.mns-search-icon {
  color: #528D46;
  font-size: 16px;
  flex-shrink: 0;
}

.mns-search-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--mns-deep);
  background: transparent;
  padding: 0 !important;
}

.mns-search-input::placeholder { color: var(--mns-muted); }

/* — Nút Mic — */
.mns-mic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #528D46;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}

.mns-mic-btn:hover { background: #679b5c; transform: scale(1.06); }
.mns-mic-btn i     { font-size: 17px; color: white; pointer-events: none; }

/* Pulse khi đang nghe */
.mns-mic-btn.listening {
  animation: mns-pulse 1.2s ease-out infinite;
}

@keyframes mns-pulse {
  0%   { box-shadow: 0 0 0 0    rgb(125 196 106 / 55%); }
  70%  { box-shadow: 0 0 0 14px rgb(125 196 106 / 0%);  }
  100% { box-shadow: 0 0 0 0    rgb(125 196 106 / 0%);  }
}

/* — Voice status — */
.mns-voice-status {
  text-align: center;
  font-size: 13px;
  color: #528D46;
  min-height: 22px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: .4px;
  opacity: 0;
  transition: opacity .3s;
}

.mns-voice-status.visible { opacity: 1; }

.mns-voice-unsupported {
  display: none;
  font-size: 12px;
  color: black;
  text-align: center;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   CATEGORY FILTER BUTTONS
══════════════════════════════════════════ */
.mns-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto 32px;
  padding: 0 24px;
}

.mns-cat-btn {
  padding: 7px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--mns-blush);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--mns-muted);
  cursor: pointer;
  transition: all .2s;
}

.mns-cat-btn:hover,
.mns-cat-btn.active {
  background: #528D46;
  border-color: #528D46;
  color: white;
}

/* — No results — */
.mns-no-results {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--mns-muted);
}

.mns-no-results i { font-size: 40px; opacity: .3; display: block; margin-bottom: 12px; }
.mns-no-results p { font-size: 15px; }
.mns-no-results a { color: #528D46; }

/* ══════════════════════════════════════════
   ACCORDION ITEMS
══════════════════════════════════════════ */
.faq-accordion .e-n-accordion-item {
  background: var(--mns-white) !important;
  border: 1.5px solid transparent !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(58,34,24,0.05) !important;
  transition: border-color .25s, box-shadow .25s !important;
}

.faq-accordion .e-n-accordion-item:hover {
  border-color: var(--mns-blush) !important;
  box-shadow: 0 6px 24px rgb(178 178 178 / 18%) !important;
}

.faq-accordion .e-n-accordion-item[open],
.faq-accordion details[open].e-n-accordion-item {
  border-color: #528D46 !important;
  box-shadow: 0 6px 28px rgb(178 178 178 / 18%) !important;
}

/* — Summary (tiêu đề) — */
.faq-accordion .e-n-accordion-item-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 22px 24px !important;
  background: white !important;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: background .2s ease;
}

.faq-accordion .e-n-accordion-item-title::-webkit-details-marker { display: none; }
.faq-accordion .e-n-accordion-item-title::marker                  { display: none; }

.faq-accordion details[open] > .e-n-accordion-item-title {
  background: white !important;
}

/* — Text tiêu đề — */
.faq-accordion .e-n-accordion-item-title-text,
.faq-accordion .e-n-accordion-item-title-header {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 500 !important;
  color: #5f5f5f !important;
  line-height: 1.4 !important;
  flex: 1;
  transition: color .5s ease, transform .5s ease;
}

.faq-accordion details[open] .e-n-accordion-item-title-text,
.faq-accordion details[open] .e-n-accordion-item-title-header {
  color: #528D46 !important;
  font-weight: 600 !important;
  transform: translateX(5px);
}

/* — Icon mở/đóng — */
.faq-accordion .e-n-accordion-item-title-icon,
.faq-accordion .e-opened,
.faq-accordion .e-closed {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 50% !important;
  background: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: black !important;
  font-size: 13px !important;
  flex-shrink: 0;
  transition: background .25s, color .25s, transform .3s !important;
}

.faq-accordion details[open] .e-n-accordion-item-title-icon,
.faq-accordion details[open] .e-opened {
  background: var(--mns-rose) !important;
  color: #528D46 !important;
  transform: rotate(180deg) !important;
}

/* Toggle icon +/- */
.faq-accordion .e-n-accordion-item .e-opened          { display: none !important; }
.faq-accordion .e-n-accordion-item[open] .e-closed    { display: none !important; }
.faq-accordion .e-n-accordion-item[open] .e-opened    { display: flex !important; }

/* — Nội dung câu trả lời — */
.faq-accordion .e-n-accordion-item > div[role="region"],
.faq-accordion .e-n-accordion-item > .elementor-element {
  padding: 0 24px 22px !important;
  background: WHITE !important;
}

.faq-accordion .e-n-accordion-item > div[role="region"] *,
.faq-accordion .e-n-accordion-item > .elementor-element * {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  color: #5e5e5e !important;
  font-weight: 300 !important;
}

/* ══════════════════════════════════════════
   SIRI OVERLAY
══════════════════════════════════════════ */
#mns-siri-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

#mns-siri-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.mns-siri-bg {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 50%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(8px);
}

.mns-siri-card {
  position: relative;
  background: white;
  border-radius: 28px 28px 0 0;
  padding: 36px 32px 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 -8px 40px rgb(17 17 17 / 25%);
  text-align: center;
  border-top: 3px solid #528D46;
  transform: translateY(40px);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}

#mns-siri-overlay.visible .mns-siri-card {
  transform: translateY(0);
}

/* Waveform bars */
.mns-siri-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 48px;
  margin-bottom: 16px;
}

.mns-siri-bars .bar {
  width: 5px;
  border-radius: 4px;
  background: #528D46;
  height: 8px;
}

.mns-siri-bars.active .bar              { animation: mns-wave 1.1s ease-in-out infinite; }
.mns-siri-bars.active .bar:nth-child(1) { animation-delay: 0s;   }
.mns-siri-bars.active .bar:nth-child(2) { animation-delay: .15s; }
.mns-siri-bars.active .bar:nth-child(3) { animation-delay: .30s; }
.mns-siri-bars.active .bar:nth-child(4) { animation-delay: .15s; }
.mns-siri-bars.active .bar:nth-child(5) { animation-delay: 0s;   }

@keyframes mns-wave {
  0%, 100% { height: 8px;  opacity: .4; }
  50%       { height: 40px; opacity: 1;  }
}

.mns-siri-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #528D46;
  font-weight: 600;
  margin-bottom: 14px;
}

.mns-siri-text {
  font-size: 17px;
  line-height: 1.65;
  color: #528D46;
  min-height: 60px;
  margin-bottom: 24px;
}

.mns-siri-close {
  background: none;
  border: 1.5px solid #528D46;
  border-radius: 30px;
  padding: 9px 24px;
  font-size: 13px;
  color: var(--mns-muted);
  cursor: pointer;
  transition: all .2s;
}

.mns-siri-close:hover {
  background: #528D46;
  color: white;
  border-color: #528D46;
}

/* ══════════════════════════════════════════
   CATEGORY BADGE
══════════════════════════════════════════ */
.mns-cat-badge {
  display: inline-block;
  font-size: 10px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: middle;
  line-height: 1.6 !important;
  font-family: 'DM Sans', sans-serif !important;
}

.mns-badge-manicure,
.mns-badge-pedicure,
.mns-badge-extensions,
.mns-badge-booking,
.mns-badge-care {
  background: #528D46 !important;
  color: #ffffff !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .faq-accordion .e-n-accordion-item-title { padding: 18px !important; }

  .faq-accordion .e-n-accordion-item-title-text,
  .faq-accordion .e-n-accordion-item-title-header { font-size: 14px !important; }

  .faq-accordion .e-n-accordion-item > div[role="region"],
  .faq-accordion .e-n-accordion-item > .elementor-element { padding: 0 18px 18px !important; }

  .mns-siri-card { padding: 28px 20px 32px; }
}
/*-----------------------------------------------hotlineringring-------------------------------------------*/
.hotline-phone-ring-wrap {
position: fixed;
bottom: 0;
left: 0;
z-index: 999999;
}
.hotline-phone-ring {
position: fixed;
visibility: visible;
background-color: transparent;
width: 110px;
height: 110px;
cursor: pointer;
z-index: 11;
-webkit-backface-visibility: hidden;
-webkit-transform: translateZ(0);
transition: visibility .5s;
right: -20px;
bottom: -20px;
display: block;
z-index: 999;
}
.hotline-phone-ring-circle {
width: 130px;
height: 130px;
top: -20px;
left: -20px;
position: absolute;
background-color: transparent;
border-radius: 100%;
border: 2px solid #5AA34B;
-webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
transition: all .5s;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
opacity: 0.5;
}
.hotline-phone-ring-circle-fill {
width: 90px;
height: 90px;
top: 0px;
left: 0px;
position: absolute;
background-color: #5AA34B !important;
border-radius: 100%;
border: 2px solid transparent;
-webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
transition: all .5s;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.hotline-phone-ring-img-circle {
background-color: #5AA34B;
width: 70px;
height: 70px;
top: 10px;
left: 10px;
position: absolute;
background-size: 20px;
border-radius: 100%;
border: 2px solid transparent;
/*-webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;*/
/*animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;*/
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;
}
.hotline-phone-ring-img-circle .pps-btn-img {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 14px;
text-align: center;
color: #fff;
font-weight: bold;
line-height: 1.4;
margin-top: 5px;
}
.hotline-phone-ring-img-circle .pps-btn-img img {
width: 20px;
height: 20px;
}
.hotline-bar {
position: absolute;
background: rgb(49, 74, 166);
border-radius: 3px;
padding: 0 15px 0 0;
background-size: 100%;
cursor: pointer;
transition: all 0.8s;
-webkit-transition: all 0.8s;
z-index: 9;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
border-radius: 50px !important;
/* width: 175px !important; */
left: 33px;
bottom: 37px;
}
.hotline-bar > a {
color: #fff;
text-decoration: none;
font-size: 15px;
font-weight: bold;
text-indent: 50px;
display: block;
letter-spacing: 1px;
line-height: 40px;
font-family: Arial;
}
.hotline-bar > a:hover,
.hotline-bar > a:active {
color: #fff;
}
@-webkit-keyframes phonering-alo-circle-anim {
0% {
-webkit-transform: rotate(0) scale(0.5) skew(1deg);
-webkit-opacity: 0.1;
}
30% {
-webkit-transform: rotate(0) scale(0.7) skew(1deg);
-webkit-opacity: 0.5;
}
100% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
-webkit-opacity: 0.1;
}
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
0% {
-webkit-transform: rotate(0) scale(0.7) skew(1deg);
opacity: 0.6;
	background-color: #247145;
}
50% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
opacity: 0.6;
	background-color: #247145;
}
100% {
-webkit-transform: rotate(0) scale(0.7) skew(1deg);
opacity: 0.6;
	background-color: #247145;
}
}
@-webkit-keyframes phonering-alo-circle-img-anim {
0% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
}
10% {
-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
}
20% {
-webkit-transform: rotate(25deg) scale(1) skew(1deg);
}
30% {
-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
}
40% {
-webkit-transform: rotate(25deg) scale(1) skew(1deg);
}
50% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
}
100% {
-webkit-transform: rotate(0) scale(1) skew(1deg);
}
}
/*-----end--booknow----*/
table, th, td{
	border:none;
}
.inline-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.85);
  width: fit-content;
}

/* button */
.inline-cta .cta-btn {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.inline-cta .cta-btn:hover {
  opacity: 0.75;
}

/* divider */
.inline-cta .cta-divider {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

@font-face { 
	font-family: 'EsmeraldaPro'; src: url('/wp-content/uploads/fonts/SVN-Esmeralda Pro.otf') format('opentype'); 
font-weight:normal;
	font-style:normal;
}

/*---------------------------------toggle---menu-------------------------------*/
.popup-title {
    font-size: 19px;
    font-weight: 600;
    color:white;
}

.popup-background.popup-close {}

.popup-body {
    background-color: #528d46;
}

.menu-mobile .nevo-toggle {
    background-color: transparent;
}
.popup-body span.nevo-item-title {
    color: white;
}
.popup-body .nevo-icon svg {
    fill: white;
}

.popup-body svg.close.popup-close {
    fill: white;
}
/*---------------------------------toggle---menu-------------------------------*/
/*-------------------------------bread---cum------------------*/
/* ===== LUXURY BREADCRUMB – MAGNOLIA STYLE ===== */
.separate-containers .single-after-entry > *, .sidebar .widget, .site-main .page-header, .site-main > * {
    margin-bottom: 0px;
}
.nevo-breadcrumb {
  position: relative;
  text-align: center;
 /* margin-top: -65px;*/
}

.nevo-breadcrumb li {
  list-style: none;
  font-size:18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
}


/* link */
.nevo-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nevo-breadcrumb a:hover {
  color: #9ED47C; /* xanh Magnolia */
}

/* item hiện tại */
.nevo-breadcrumb .breadcrumb-item-last,
.nevo-breadcrumb li:last-child span {
  color: #caffa8;
  font-weight: 500;
  font-size:25px
}
div#page-header {
    z-index: 2;
}
/*-----------------------------font-family----------------------*/
h1, h2, h3 {
    font-family: 'EsmeraldaPro' !important;
    letter-spacing: 1px;
}
/*----------------------------css-header-------------------*/
.top-contact {
  display: flex;
   /* khóa trục dọc */
  flex-wrap: wrap;
  align-content: stretch;
  align-items: center;
	gap:15px;
  justify-content: center;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0;        /* 🔥 cực kỳ quan trọng */
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}

.top-contact i {
  font-size: 14px;
  line-height: 1;
  display: block;        /* 🔥 tránh baseline font */
  position: relative;
  top: 0.5px;            /* 🔥 tinh chỉnh nhẹ cho FA */
}

/* ===== DESKTOP ONLY ===== */
@media (min-width: 1025px){
span.nevo-item-title {
    font-size: 17px;
    font-weight: 600;
}
/* Setup chung cho menu link */
.nevo-menu-link {
  position: relative;
  padding-bottom: 0px;
}

/* Gạch dưới */
.nevo-menu-link::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 5px;
  width: 0;
  height: 2.5px;
  background-color: #5a8f3c; /* xanh Magnolia */
  border-radius: 2px;
  transform: translateX(0%);
  transition: width 0.35s ease;
}

/* Hover vào hiện gạch */
.menu-item:hover > .nevo-menu-link::after {
  width: 50%;
}
/* Trang đang active thì luôn có gạch */
.current-menu-item > .nevo-menu-link::after,
.menu-item > .nevo-menu-link[aria-current="page"]::after {
  width:50%;
}
/*-------------------------css--sub---menu-------------------------------------------------*/
	/* ===============================
   LUXURY NAIL SPA SUBMENU (SAFE)
   =============================== */

/* Submenu level 1 */
.nevo-navigation ul.sub-menu.no-marker {
  background: #ffffff;
  min-width: 250px;
  padding: 12px 0;
  border-radius: 11px;
  border: 1px solid rgba(82,141,70,0.18);
  box-shadow:
    0 14px 38px rgba(0,0,0,0.14),
    0 3px 10px rgba(82,141,70,0.12);
  z-index: 999;
}

/* reset marker & spacing */
.nevo-navigation ul.sub-menu.no-marker,
.nevo-navigation ul.sub-menu.no-marker li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* kill nevo bullets */
.nevo-navigation ul.sub-menu.no-marker li::before,
.nevo-navigation ul.sub-menu.no-marker li::after {
  content: none !important;
}

/* menu item */
.nevo-navigation ul.sub-menu.no-marker li a {
  display: block;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #2a2a2a;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
}

/* subtle divider */
.nevo-navigation ul.sub-menu.no-marker li:not(:last-child) a {
  border-bottom: 1px solid rgba(82,141,70,0.15);
}

/* hover clean luxury */
.nevo-navigation ul.sub-menu.no-marker li a:hover {
  background: rgba(82,141,70,0.08);
  color: #528D46;
}

/* ===============================
   DROPDOWN LEVEL 1 – GẦN MENU CHA
   =============================== */
.nevo-navigation li.menu-item-has-children > ul.sub-menu.no-marker {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nevo-navigation li.menu-item-has-children:hover > ul.sub-menu.no-marker {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===============================
   SUBMENU LEVEL 2 – KÉO GẦN LẠI
   =============================== */
.nevo-navigation ul.sub-menu.no-marker ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;        /* 🔥 chỉnh khoảng cách tại đây */
  border-radius: 11px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* hover mở submenu cấp 2 */
.nevo-navigation
ul.sub-menu.no-marker
li.menu-item-has-children:hover
> ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

}
/*---------------------------------------------end-css-submenu------------------------------------------*/
/*--------------------------end-css-header-------------------*/
/*-------------------------css-footer----------------------*/
div#site-footer { 
z-index: 2; 
position: relative; 
}
.spa-footer__title {
  font-size: 20px;
	font-weight:600;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.spa-footer__block p {
  font-size: 14px;
  line-height: 1.7;
 color: #ffffff;
  margin-bottom: 10px;
}

.spa-footer__block i {
  margin-right: 8px;
  color: #ffffff;
}
.spa-footer__block a{
 color: #ffffff;
}

/*------------------------end-css-footer----------------------*/
/*----------------------------------------------------------------------CSS-SERVICE-----------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------CSS-SERVICE-MANICURE------------------------------------*/
.service-addon {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  color: #528D46;
  letter-spacing: 0.4px;
}
.service-addon::before {
  content: "— ";
  color: #528D46;
}
.service-addon::after {
  content: " —";
  color: #528D46;
}
.service-header {
  display: flex;
  justify-content: space-between;
   align-items: flex-end; 
  border-bottom: 1px solid rgba(82, 141, 70, 0.25);
   padding-bottom: 10px; 
  margin-bottom: 15px;
}
.service-name {
  font-size: 30px;
	 margin-bottom: 0px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #528D46;
font-family: "EsmeraldaPro" !important;
}

.service-price {
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.service-price .cash {
  color: #528D46;
  font-weight: 600;
  font-size: 20px;
}

.service-price .divider {
  margin: 0 5px;
  color: rgba(53, 111, 41, 0.4);
}

.service-price .card {
  color: #555;
}

.service-desc {
text-align: justify;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 18px;
}

.service-note {
  font-size: 14px;
  font-style: italic;
  color: #528D46;
  text-align: right;
}
.service-sub{
    font-size:18px;
} 
.price-table-wrap {
  margin: auto;
  color: #1f1f1f;
}

.price-table-wrap h2,
.price-table-wrap h3 {
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  color: #528D46;
}

.price-table-wrap h2 {
  margin-bottom: 24px;
}

.price-table-wrap h3 {
  margin-top: 40px;
}

.note {
  text-align: center;
  font-size: 14px;
  color: rgba(82, 141, 70, 0.85);
  margin-bottom: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.price-table tr {
  border: none;
}

.price-table td {
  padding: 14px 0;
  vertical-align: top;
  border: none;
}

/* Chỉ giữ đường gạch dưới mỗi dịch vụ */
.price-table tr:not(:last-child) td {
  border-bottom: 1.5px dashed rgba(82, 141, 70, 0.35);
}

.price-table td:first-child {
  font-weight: 500;
}

.price-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: #528D46;
}
/*---------------gg-map------------------*/
/* Hover vẫn giữ sang */
.price-table tr:hover {
  background: linear-gradient(
    90deg,
    rgba(82, 141, 70, 0.06),
    transparent
  );
}
.footer-map-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    font-size: 0;
    display: block;
}

.footer-map-wrapper iframe {
    display: block;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
}
/*-------------end--gg-map------------------*/
/*-------------single---post--------------*/
/* ── Post Title ── */
.entry-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: #2a1f1d;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

/* ── Entry Meta ── */
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4d4d4d;
}

.entry-meta a {
  color: #528d46;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.entry-meta a:hover {
  color: #528d46
}

.entry-meta .byline,
.entry-meta .posted-on,
.entry-meta .comments-link {
  display: flex;
  align-items: center;
  gap: 6.4px;
}

.entry-meta svg {
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Featured Image ── */
.featured-image {
  margin: 0 0 40px 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(42, 31, 29, 0.08) 100%
  );
  pointer-events: none;
}

.featured-image img {
  width: 100%;
  height: 450px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-image:hover img {
  transform: scale(1.02);
}

/* ── Entry Content ── */
.entry-content {
  line-height: 1.85;
  color: #575757;
}

/* ── Headings in Content ── */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-weight: 500;
  color: #528d46;
}

.entry-content p:last-child {
  margin-bottom: 0;
}
/* ── Social Sharing ── */
.social-sharing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.social-share-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a7570;
  margin-right: 8px;
}

.social-share-text svg {
  opacity: 0.5;
}

.social-hidden {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.nevo-toggle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #528d46;
  border: 1px solid #528d46;
  border-radius: 50px;
  padding: 6.4px 14.4px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nevo-toggle:hover {
  background: #66a859;
  color: #ffffff;
  border-color: #528d46;
}

/* ── Author Box ── */
.post-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #f2ebe3;
  border: 1px solid #528d46;
  border-radius: 5px;
  margin-top: 32px;
}

.author-avatar {
  flex-shrink: 0;
  float: none !important;
  margin: 0 !important;
}

.author-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #528d46;
  display: block;
}

.author-content {
  padding-left: 0 !important;
}

.author-heading {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: #2a1f1d;
  margin-bottom: 4px;
}

.author-heading a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-heading a:hover {
  color: #9e5a55;
}

/* ── Comments Area ── */
.comments-area {
  margin-top: 25px;
}

.heading-title h3,
.comment-reply-title {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #2a1f1d;
  margin-bottom: 24px;
}

.comment-form {
  background: #ffffff;
  border: 1px solid #528d46;
  border-radius: 5px;
  padding: 30px
}

.logged-in-as {
  font-size: 13px;
  color: #528d46;
  margin-bottom: 10px;
}

.logged-in-as a {
  color: #000000;
  text-decoration: none;
}

.logged-in-as a:hover {
  color: #528d46;
}

.comment-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #528d46;
  border-radius: 10px;
  background: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #2a1f1d;
  line-height: 1.7;
  resize: vertical;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  min-height: 120px;
}

.comment-form textarea:focus {
  border-color: #528d46;
  background: #ffffff;
}

.comment-form textarea::placeholder {
  color: #636363;
}

.comment-form .form-submit {
  margin-top: 16px;
}

.comment-form .submit {
  display: inline-block;
  padding: 12px 32px;
  background: #528d46;
  color: #ffffff;
  font-size: 12.8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-form .submit:hover {
  background: #5a9d4d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgb(0 0 0 / 30%);
}

.comment-form .submit:active {
  transform: translateY(0);
}

/* ── Sidebar ── */
.widget-area {
  position: sticky;
  top: 32px;
}

.inside-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.widget h2.wp-block-heading {
  font-size: 17.6px;
  font-weight: 500;
  font-style: italic;
  color: #2a1f1d;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #528d46;
}

/* Nút tìm kiếm (Icon Button) */
.wp-block-search__button {
  width: 48px;
  padding: 0;
  background: #528d46;
  border: none;
  border-radius: 0px !important;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Ẩn chữ mặc định của WordPress */
  font-size: 0 !important;
  color: transparent !important;
  
  /* Dùng flex để canh giữa icon */
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-search__button:hover {
  background: #437339;
}
.wp-block-search__inside-wrapper {
    background: #ffffff;
  border-radius:5px;
  border: 1px solid #437339;
}
.wp-block-search__input {
    background: transparent !important;
    border: none !important;
}
/* Chèn icon kính lúp bằng pseudo-element */
.wp-block-search__button::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  /* Mã SVG icon kính lúp nét màu trắng */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* ── Recent Posts Widget ── */
.wp-block-latest-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-block-latest-posts li {
  padding: 9.6px 0;
  border-bottom: 1px solid #f5e8e4;
}

.wp-block-latest-posts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wp-block-latest-posts__post-title {
  font-size: 14px;
  color: #5a4540;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.wp-block-latest-posts__post-title:hover {
  color: #437339;
}

/* ── Recent Comments Widget ── */
.no-comments {
  font-size: 14px;
  color: #437339;
  font-style: italic;
}
a.category-nail-care-tips {
    background: #528d46;
    border-radius:5px;
}
.inside-article {
    background: transparent !important;
}
h2.entry-title.cv-fs-6.cv-fs-md-5.post-title a {
    color: #528d46;
}
/*------------end---single---post--------------*/
/*------------------------------------------------------END-CSS-PRICING------------------------------------*/
/*---------------------------------------------------------------------END-CSS-SERVICE-----------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------ONLY-CSS-MOBILE-HERE----------------------------------------------------*/
/*---------------------------------------------------------------------------
/* mobile chỉnh gọn */
@media (max-width: 768px) {
		  .page-header {
    background-attachment: scroll;
    background-position: center;
  }
 h1, h2, h3 {
    font-family: 'EsmeraldaPro' !important;
    font-weight: 500 !important;

    letter-spacing: 0.2px !important;
    line-height: 1.05 !important;

    font-feature-settings: "liga" 0, "clig" 0, "swsh" 0 !important;
    font-variant-ligatures: none !important;

    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;

    text-rendering: auto !important;
}



.nevo-breadcrumb {
     /* giảm đẩy lên */
    padding: 0 16px;   /* thở chút cho mobile*/
  }
  .nevo-breadcrumb li {
    font-size: 13px;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
  .nevo-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
  }
 .nevo-breadcrumb .breadcrumb-item-last,
  .nevo-breadcrumb li:last-child span {
    font-size: 15px;
    font-weight: 500;
  }
	/*---------------mobile-service-card-------------------*/
	 .service-card {
    padding: 28px 0;
  }
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
  }

  .service-name {
    font-size: 30px;
    letter-spacing: 0.5px;
  }

  .service-price {
    font-size: 16px;
  }

  .service-price .cash,
  .service-price .card {
    font-size: 16px;
  }

  .service-addon {
    font-size: 13px;
    margin: 10px 0 20px;
  }

  .service-desc {
    font-size: 15px;
    line-height: 1.85;
  }

  .service-note {
    font-size: 13px;
    text-align: left;
    margin-top: 6px;
  }
/*------------------------------------------------------MOBILE-CSS-PRICING------------------------------------*/
.price-table td {
    display: table-cell; /* QUAN TRỌNG */
    padding: 12px 0;
    font-size: 13px;;
  }
  .price-table td:last-child {
    text-align: right;
    font-size: 13px
  }

/*-----------------------------------------------------END-MOBILE-CSS-PRICING------------------------------------*/
	