:root{
  --bg:#fbf7f4;
  --bg-2:#f4e6df;
  --surface:#ffffff;
  --surface-2:#fffaf7;
  --text:#2f2422;
  --muted:#6d5a54;
  --primary:#8f6657;
  --line:rgba(47,36,34,.10);
  --shadow:0 18px 48px rgba(109,90,84,.10);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:16px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:inherit,"Times New Roman",serif;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
p,li,button,input,textarea{
  font-family:Arial,Helvetica,sans-serif;
}
p{
  color:var(--muted);
  line-height:1.8;
  margin:0 0 16px;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}
.row{
  display:flex;
  flex-wrap:wrap;
  margin-left:-12px;
  margin-right:-12px;
}
.col-4,.col-6,.col-12,.col-lg-5,.col-lg-6,.col-lg-7{
  width:100%;
  padding-left:12px;
  padding-right:12px;
}
.g-4{gap:24px 0}
.text-center{text-align:center}
.mb-0{margin-bottom:0}
.mt-2{margin-top:8px}
.mt-3{margin-top:16px}
.mt-4{margin-top:24px}
.mt-5{margin-top:32px}
.py-section{padding:84px 0}
.alt-section{
  background:rgba(255,255,255,.58);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(143,102,87,.18);
  background:rgba(255,255,255,.72);
  color:var(--primary);
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-weight:700;
}
.section-title{
  font-size:clamp(32px,4.8vw,52px);
  margin:12px 0 0;
  font-weight:600;
}
.section-copy{
  max-width:760px;
  margin:16px auto 0;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #1f1f1f; /* giống gallery */
  border-bottom: none; /* xoá line */
}
.header-inner{
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(143,102,87,.25);
  color:var(--primary);
  background:#fff;
  font-weight:700;
}
.brand-title{
  font-size:18px;
  font-weight:700;
  letter-spacing:.02em;
}
.brand-sub{
  font-size:11px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--primary);
  margin-top:2px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto;
}


.main-nav a{
  position:relative;
  padding:24px 0 18px;
  font-size:18px;
}
.main-nav a.active::after,
.main-nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  height:1px;
  background:var(--text);
}
.header-icons{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  min-width:130px;
}
.icon-btn{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}
.menu-toggle{
  display:none;
  border:none;
  background:transparent;
  font-size:28px;
  cursor:pointer;
  color:var(--text);
}

.hero.hero-full{
  background:linear-gradient(180deg, #fbf7f4 0%, #f4e7e0 100%);
  padding: 0;
}

.hero-title{
  margin:22px 0 0;
  font-size:clamp(44px, 6.8vw, 78px);
  line-height:.98;
  font-weight:600;
}
.hero-copy{
  max-width:640px;
  font-size:18px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:700;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-dark{
  background:var(--text);
  color:#fff;
}
.btn-light{
  background:#fff;
  color:var(--text);
  border-color:rgba(47,36,34,.15);
}


.card{
  height:100%;
  background:var(--surface);
  border:1px solid rgba(47,36,34,.08);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card-img{
  width:100%;
  height:290px;
  object-fit:cover;
}
.card-body{
  padding:28px;
}
.card-title{
  margin:0;
  font-size:28px;
  font-weight:600;
}
.link-more{
  display:inline-block;
  margin-top:10px;
  font-weight:700;
}

.review-box{
  max-width:840px;
  margin:0 auto;
  padding:44px;
  border-radius:var(--radius-lg);
  background:#f9f1ed;
  border:1px solid rgba(47,36,34,.08);
  text-align:center;
}
.review-icon{
  width:76px;
  height:76px;
  margin:0 auto 16px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid rgba(143,102,87,.22);
  color:var(--primary);
  font-size:26px;
}

.gift-grid{
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:30px;
  align-items:center;
}
.address-block{
  margin-top:22px;
  padding-left:16px;
  border-left:2px solid rgba(143,102,87,.35);
}
.gift-card{
  min-height:320px;
  border-radius:var(--radius-xl);
  padding:42px;
  background:linear-gradient(135deg, #8f6657 0%, #b78673 100%);
  color:#fff;
}
.gift-card p{color:rgba(255,255,255,.88)}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.gallery-item{
  overflow:hidden;
  border-radius:var(--radius-lg);
  border:1px solid rgba(47,36,34,.08);
}
.gallery-item img{
  width:100%;
  height:300px;
  object-fit:cover;
}
.gallery-item.large{
  grid-column:span 2;
}
.gallery-item.large img{
  height:420px;
}

.info-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:28px;
}
.info-box,
.mini-card{
  background:var(--surface);
  border:1px solid rgba(47,36,34,.08);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.info-box{padding:28px}
.info-box h2{
  font-size:40px;
  margin:0 0 12px;
}
.mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.mini-card{
  padding:24px;
  background:#fbf4ef;
  box-shadow:none;
}
.mini-card strong{
  display:block;
  margin-top:8px;
  font-size:22px;
}

.site-footer{
  background:#241815;
  color:#fff;
  padding:32px 0;
}
.footer-inner{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:20px;
  align-items:center;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.site-footer p,
.site-footer a{
  color:rgba(255,255,255,.74);
  font-size:14px;
}

@media (min-width:768px){
  .col-6{width:50%}
}
@media (min-width:992px){
  .col-4{width:33.3333%}
  .col-lg-5{width:41.6667%}
  .col-lg-6{width:50%}
  .col-lg-7{width:58.3333%}
}
@media (max-width:1024px){
  .menu-toggle{display:block}
  .main-nav{
    display:none;
    position:fixed;
    top:72px;
    left:16px;
    right:16px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:10px;
    padding:18px;
    background:#fffaf8;
    border:1px solid rgba(47,36,34,.08);
    border-radius:22px;
    box-shadow:var(--shadow);
  }
  .main-nav.open{display:flex}
  .main-nav a{
    padding:8px 0;
    font-size:17px;
  }
  .main-nav a.active::after,
  .main-nav a:hover::after{
    bottom:2px;
  }
}
@media (max-width:900px){
  .hero-grid,
  .gift-grid,
  .info-grid,
  .footer-inner{
    grid-template-columns:1fr;
  }
}
@media (max-width:680px){
  .container{width:min(var(--container), calc(100% - 24px))}
  .header-icons a{display:none}
  .hero{padding:54px 0 66px}
  .hero-card img{height:380px}
  .gallery-grid,
  .mini-grid{
    grid-template-columns:1fr;
  }
  .gallery-item.large{grid-column:span 1}
  .gallery-item.large img,
  .gallery-item img,
  .card-img{height:240px}
}

.brand{
  display: flex;
  align-items: center;
}

.logo{
  width: 95px;
  height: auto;
  display: block;
}

.nav-dropdown{
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle{
  border: none;
  background: transparent;
  color:  #2f2422;
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
  padding: 24px 0 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle:hover{
  color: #8d8d8d;
}

.caret{
  font-size: 14px;
  transform: translateY(-1px);
}

.nav-dropdown-menu{
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 198px;
  background: #f3f3f3;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  padding: 18px 0;
  display: none;
  z-index: 1001;
}

.nav-dropdown-menu a{
  display: block;
  padding: 14px 22px;
  font-size: 18px;
  color: #2f2422;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover{
  background: rgba(0,0,0,.04);
}

.nav-dropdown.open .nav-dropdown-menu{
  display: block;
}

.main-nav a,
.nav-dropdown-toggle{
  color:#2f2422;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.nav-dropdown-toggle:hover{
  color:#8f6657;   /* màu đổi khi hover */
}
.main-nav a,
.nav-dropdown-toggle{
  position: relative;
}

.main-nav a::after,
.nav-dropdown-toggle::after{
  content:"";
  position:absolute;
  left:0;
  bottom:8px;
  width:0;
  height:1px;
  background:#2f2422;
  transition: width .25s ease;
}

.main-nav a:hover::after,
.nav-dropdown-toggle:hover::after{
  width:100%;
}

.caret{
  display:inline-block;
  font-size:14px;
  margin-left:4px;
  transition: transform .25s ease;
}

.nav-dropdown.open .caret{
  transform: rotate(180deg);
}
.hero-card{
  padding: 12px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(47,36,34,.08);
  box-shadow: 0 18px 48px rgba(109,90,84,.10);
}

.hero-slider{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.hero-slides{
  position: relative;
  width: 100%;
  height: 560px;
}

.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}

.hero-slide.active{
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: #2f2422;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}


.hero-dots{
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #000;
  opacity: .35;
  padding: 0;
  cursor: pointer;
}

.dot.active{
  background: #000;
  opacity: 1;
}
.hero-overlay{
  pointer-events: none;
}
.hero-dots,
.hero-arrow,
.hero-actions,
.site-header{
  position: relative;
  z-index: 5;
}

@media (max-width: 680px){
  .hero-slides{
    height: 380px;
  }
}

.hero-full{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-slider{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-slide.active{
  opacity: 1;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.18);
  z-index: 2;
}

.hero-content{
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-text-block{
  display: flex;
  align-items: flex-start;
  gap: 34px;
  max-width: 980px;
  margin-top: 80px;
}

.hero-line{
  width: 2px;
  min-height: 290px;
  background: rgba(47,36,34,.55);
  display: block;
}

.hero-title{
  margin: 0;
  max-width: 980px;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1.12;
  color: #111;
  font-weight: 500;
}

.hero-actions{
  margin-top: 34px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-pink{
  min-width: 210px;
  height: 68px;
  border-radius: 999px;
  background: #f4a9b7;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.hero-dots{
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 14px;
}

.dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.55);
  background: transparent;
}

.dot.active{
  background: #111;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.header-inner{
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero.hero-full{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero-slider{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  z-index: 2;
  pointer-events: none;
}

.hero-content{
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.site-header.scrolled{
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.btn-pink{
  min-width: 210px;
  height: 68px;
  border-radius: 999px;
  background: #f4a9b7;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-pink:hover{
  background: transparent;
  color: #111;
  border-color: #111;
}
.services-showcase{
  background: #f3f3f3;
  padding: 90px 0;
}

.service-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 46px;
}

.service-row:last-child{
  margin-bottom: 0;
}

.service-row.reverse .service-media{
  order: 2;
}

.service-row.reverse .service-content{
  order: 1;
}

.service-media img{
  width: 100%;
  height: 295px;
  object-fit: cover;
  display: block;
}

.service-content{
  max-width: 560px;
}

.service-content h2{
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 400;
  color: #cf8d99;
  font-family: Georgia, "Times New Roman", serif;
}

.service-content p{
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.8;
  color: #3a3131;
}

.service-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 52px;
  padding: 0 24px;
  border: 2px solid #c46f7e;
  border-radius: 999px;
  background: transparent;
  color: #b05d6c;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.service-btn:hover{
  background: #b05d6c;
  color: #fff;
}
.services-showcase{
  background: #f3f3f3;
  padding: 90px 0;
}

.service-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 46px;
}

.service-row:last-child{
  margin-bottom: 0;
}

.service-row.reverse .service-media{
  order: 2;
}

.service-row.reverse .service-content{
  order: 1;
}

.service-media img{
  width: 100%;
  height: 295px;
  object-fit: cover;
  display: block;
}

.service-content{
  max-width: 560px;
}

.service-content h2{
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 400;
  color: #cf8d99;
  font-family: Georgia, "Times New Roman", serif;
}

.service-content p{
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.8;
  color: #3a3131;
}

.service-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 52px;
  padding: 0 24px;
  border: 2px solid #c46f7e;
  border-radius: 999px;
  background: transparent;
  color: #b05d6c;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.service-btn:hover{
  background: #b05d6c;
  color: #fff;
}

.reviews-section{
  position: relative;
  overflow: hidden;
  min-height: 980px;
  padding: 90px 0 110px;
}

.reviews-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.reviews-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
  z-index: 2;
  pointer-events: none;
}

.reviews-inner{
  position: relative;
  z-index: 3;
}

.reviews-title{
  text-align: center;
  font-size: 60px;
  line-height: 1.1;
  color: #fff;
  font-weight: 400;
  margin: 0 0 40px;
}

.reviews-rating{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  margin-bottom: 42px;
}

.reviews-google-icon{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.reviews-score{
  font-size: 62px;
  line-height: 1;
  color: #fff;
}

.reviews-rating-text h3{
  margin: 0 0 6px;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
}

.reviews-stars{
  color: #f3c316;
  font-size: 24px;
  letter-spacing: 2px;
}

.reviews-rating-text p{
  margin: 6px 0 0;
  font-size: 18px;
  color: #fff;
}

.reviews-slider-wrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-slider{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: 100%;
  max-width: 1180px;
}

.review-card{
  background: #fff;
  padding: 38px 34px 30px;
  text-align: center;
  min-height: 470px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.review-avatar{
  width: 120px;
  height: 120px;
  margin: 0 auto 26px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar-letter{
  color: #fff;
  font-size: 72px;
  font-family: Arial, Helvetica, sans-serif;
}

.review-stars-line{
  color: #f3c316;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-text{
  font-size: 21px;
  line-height: 1.45;
  color: #2f2422;
  margin: 0 0 22px;
}

.review-link{
  display: inline-block;
  margin-bottom: 30px;
  color: #c97f8d;
  font-size: 18px;
  font-weight: 500;
}

.review-link::after{
  content: " ›";
}

.review-meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #5b4b46;
}

.review-google{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  color: #4285f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.reviews-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.reviews-arrow.prev{ left: 10px; }
.reviews-arrow.next{ right: 10px; }

@media (max-width: 1100px){
  .reviews-slider{
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.gift-section{
  background: #f3f3f3;
  padding: 90px 0 110px;
}

.gift-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gift-image img{
  width: 100%;
  max-width: 620px;
  height: 445px;
  object-fit: cover;
  display: block;
}

.gift-content{
  max-width: 610px;
}

.gift-title{
  margin: 0 0 26px;
  font-size: 76px;
  line-height: 1.05;
  font-weight: 400;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
}

.gift-text{
  margin: 0 0 46px;
  font-size: 26px;
  line-height: 1.65;
  color: #4c4a57;
  max-width: 760px;
}

.gift-info{
  margin-bottom: 46px;
}

.gift-info h3{
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #4c4a57;
  font-family: Georgia, "Times New Roman", serif;
}

.gift-info p{
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.6;
  color: #4c4a57;
}

.gift-info a{
  font-size: 25px;
  line-height: 1.6;
  color: #cf7f88;
  text-decoration: underline;
}

.gift-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 54px;
  padding: 0 26px;
  border: 2px solid #c96f7b;
  border-radius: 999px;
  background: transparent;
  color: #b85e6c;
  font-size: 18px;
  font-weight: 700;
  transition: all .25s ease;
}

.gift-btn:hover{
  background: #b85e6c;
  color: #fff;
}

@media (max-width: 992px){
  .gift-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gift-image img{
    max-width: 100%;
    height: auto;
  }

  .gift-title{
    font-size: 52px;
  }

  .gift-text{
    font-size: 20px;
  }

  .gift-info p,
  .gift-info a{
    font-size: 20px;
  }
}

.featured-products-section{
  background: #000;
  padding: 42px 0 60px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.featured-products-head{
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.featured-products-head h2{
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
}

.featured-products-empty{
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.featured-products-empty p{
  margin: 0;
  color: #d9d9d9;
  font-size: 22px;
  line-height: 1.6;
  font-family: "Times New Roman", serif;
}

.blog-section{
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
}

.blog-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.35);
  z-index: 2;
  pointer-events: none;

}

.blog-inner{
  position: relative;
  z-index: 3;
}

.blog-title-main{
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 56px;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
}

.blog-tabs{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.blog-tabs a{
  color: #fff;
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
  opacity: .9;
}

.blog-tabs a.active{
  font-weight: 700;
}

.blog-slider-wrap{
  position: relative;
  margin-top: 30px;
  padding: 0 56px;
}

.blog-slider{
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.blog-card{
  min-width: 280px;
  max-width: 280px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.7);
  flex-shrink: 0;
}

.blog-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card-body{
  padding: 18px 20px 22px;
  text-align: center;
}

.blog-date{
  margin: 0 0 12px;
  color: #6d5a54;
  font-size: 14px;
  font-family: "Times New Roman", Times, serif;
}

.blog-card h3{
  margin: 0 0 16px;
  color: #1f1a1a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
}

.blog-card a{
  color: #c97f8d;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
}

.blog-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(255,255,255,.85);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.blog-arrow.prev{
  left: 0;
}

.blog-arrow.next{
  right: 0;
}

@media (max-width: 768px){
  .blog-title-main{
    font-size: 40px;
  }

  .blog-tabs a{
    font-size: 18px;
  }

  .blog-slider-wrap{
    padding: 0 40px;
  }

  .blog-card{
    min-width: 240px;
    max-width: 240px;
  }

  .blog-card img{
    height: 180px;
  }

  .blog-card h3{
    font-size: 20px;
  }
}

.floating-chat{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f1a9b6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.floating-chat:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  background: #eb9dad;
}

.chat-icon{
  width: 30px;
  height: 30px;
  color: #676062;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.chat-popup{
  position: fixed;
  right: 24px;
  bottom: 106px;
  width: 340px;
  max-width: calc(100vw - 24px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  overflow: hidden;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .25s ease;
}

.chat-popup.open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-popup-header{
  padding: 18px 18px 14px;
  background: #f8d7de;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.chat-popup-header h3{
  margin: 0 0 4px;
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
  color: #2f2422;
}

.chat-popup-header p{
  margin: 0;
  font-size: 14px;
  color: #5f5350;
}

.chat-close{
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #4c4340;
}

.chat-popup-body{
  padding: 18px;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
}

.chat-message{
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.chat-message.bot{
  background: #f4f1f1;
  color: #2f2422;
}

.chat-message.user{
  background: #f1a9b6;
  color: #111;
  margin-left: auto;
}

.chat-popup-form{
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.chat-popup-form input{
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
  font-size: 14px;
}

.chat-popup-form button{
  height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: #2f2422;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.chat-popup-form button:hover{
  opacity: .92;
}

@media (max-width: 680px){
  .floating-chat{
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }

  .chat-popup{
    right: 16px;
    bottom: 90px;
    width: calc(100vw - 32px);
  }
}
.chat-message,
.chat-popup-header p,
.chat-popup-form input,
.chat-popup-form button{
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer-custom{
  background: #111;
  padding: 48px 0 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-custom-inner{
  max-width: 760px;
}

.footer-top-links{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.footer-top-links a{
  color: #fff;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
}

.footer-top-links a:hover{
  color: #f1a9b6;
}

.footer-socials{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}

.footer-socials a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .25s ease;
}

.footer-socials a:hover{
  background: #f1a9b6;
}

.footer-salon-name{
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 14px;
}

.footer-address{
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 12px;
}

.footer-phone{
  display: inline-block;
  color: #f1a9b6;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
  text-decoration: underline;
  margin-bottom: 22px;
}

.footer-powered p{
  margin: 0 0 8px;
  color: #d9d9d9;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-powered-brand{
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 680px){
  .site-footer-custom{
    padding: 40px 0 52px;
  }

  .footer-top-links a,
  .footer-address,
  .footer-phone{
    font-size: 16px;
  }

  .footer-salon-name{
    font-size: 22px;
  }
}

.price-menu-section{
  background: #f3f3f3;
  padding: 60px 0 90px;
}

.price-menu-head{
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.28);
}

.price-menu-head span{
  font-size: 24px;
  color: #111;
  font-family: "Times New Roman", Times, serif;
}

.price-menu-title{
  text-align: center;
  margin: 0 0 36px;
  font-size: 42px;
  font-weight: 400;
  color: #d48795;
  font-family: "Times New Roman", Times, serif;
}

.price-menu-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 34px;
}

.price-card{
  background: transparent;
}

.price-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.price-card-body{
  padding: 0;
}

.price-card-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.price-card-top h3{
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #111;
  font-family: "Times New Roman", Times, serif;
}

.price-card-top span{
  font-size: 20px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.price-card p{
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #2f2f2f;
  font-family: "Times New Roman", Times, serif;
}

@media (max-width: 992px){
  .price-menu-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .price-menu-section{
    padding: 50px 0 70px;
  }

  .price-menu-title{
    font-size: 34px;
  }

  .price-menu-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .price-card img{
    height: 220px;
  }
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #1f1f1f;
}

.page-main{
  padding-top: 86px; /* chỉnh theo chiều cao navbar */
}


.search-overlay.open .search-box{
  transform: translateY(0);
}


.search-form-icon{
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
}

.search-form input{
  width: 100%;
  height: 48px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
}

.search-form input::placeholder{
  color: rgba(255,255,255,.92);
}

.search-overlay.is-open{
  display: block;
}

#searchOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.18);
  z-index: 999999;
  display: none;
}

#searchOverlay.is-open{
  display: block;
}

#searchBox{
  position: absolute;
  top: 16px;
  right: 20px;
  width: min(720px, calc(100% - 40px));
  background: #171b1d;
  padding: 10px 16px;
  transform: translateY(-120%);
  transition: transform .25s ease;
}

#searchOverlay.is-open #searchBox{
  transform: translateY(0);
}

#searchForm{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 42px;
}

#searchFormIcon{
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

#searchInput{
  width: 100%;
  height: 30px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-family: "Times New Roman", Times, serif;
}

#searchInput::placeholder{
  color: rgba(255,255,255,.85);
}

#searchCloseBtn{
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.search-btn{
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: #111;
  font-size: 18px;
}




/*SERVICES*/

.price-menu-notes{
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
}

.pedicure-note{
  margin: 0;
  color: #595959;
  font-size: 14px;
  line-height: 1.7;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.menu-block{
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.menu-block:first-of-type{
  border-top: none;
  padding-top: 0;
}

.menu-block-title{
  margin: 0 0 24px;
  color: #d98b98;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
}

.menu-two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 42px;
}

.menu-col{
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.menu-item{
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-item h3{
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  white-space: nowrap;
}

.menu-item .dots{
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dotted #666;
  transform: translateY(-2px);
}

.menu-item span:last-child{
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}

.menu-item span{
  margin: 0;
  /* color: #fff4df; */
  font-size: 22px;
  line-height: 1.2;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 900px){
  .menu-two-col{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-col{
    gap: 24px;
  }

  .menu-block-title{
    font-size: 28px;
  }

.menu-item h3,
.menu-item span:last-child{
  font-size: 18px;
}

  .pedicure-note{
    font-size: 13px;
  }
}
html{ color-scheme: light; }

.gallery-viewer-section{
  background:#1f1f1f;
  padding:40px 0;
}

.gallery-viewer{
  max-width:1200px;
  margin:auto;
}

.gallery-track{
  display:grid;
  grid-template-columns:1fr 1.6fr 1fr;
  align-items:center;
}

.gallery-card{
  height:420px;
  overflow:hidden;
}

.gallery-card.center{
  height:520px;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:26px;
  cursor:pointer;
  z-index:5;
}

.gallery-nav.prev{ left:10px; }
.gallery-nav.next{ right:10px; }

.gallery-stage{
  position:relative;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  margin-top:15px;
  overflow-x:auto;
}

.gallery-thumb{
  width:60px;
  height:60px;
  object-fit:cover;
  cursor:pointer;
  border:2px solid transparent;
}

.gallery-thumb.active{
  border-color:#c97f8d;
}

/*GALLERY VIEWER RESPONSIVE*/

.gallery-section{
  background: #1f1f1f;
  padding: 16px 0 40px;
  overflow: hidden;
}

.gallery-head{
  color: #fff;
  margin-bottom: 25px;
  font-family: Georgia, serif;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 10px;
  font-size: 30px;
}




.gallery-pagination button{
  min-width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #2b2b2b;
  color: #fff;
  cursor: pointer;
  padding: 0 12px;
}

.gallery-pagination button.active{
  background: #c97f8d;
  color: #111;
}

.gallery-pagination button:disabled{
  opacity: .45;
  cursor: not-allowed;
}

  .gallery-masonry img{
    height: 220px;
  }

  .gallery-masonry img{
    height: auto;
    aspect-ratio: 4 / 5;
  }

body{
  overflow-x: hidden;
}
.gallery-wrapper{
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.gallery-masonry{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.gallery-masonry img{
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.35s ease;
}

.gallery-masonry img:hover{
  transform: scale(1.03);
}

.gallery-pagination{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:20px;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .gallery-wrapper{
    max-width: 90%;
  }

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

  .gallery-masonry img{
    height: 220px;
  }
}

@media (max-width: 500px){
  .gallery-masonry{
    grid-template-columns: 1fr;
  }

  .gallery-masonry img{
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

/* ===== FORCE FIX GALLERY - đặt ở cuối file ===== */
body{
  overflow-x: hidden !important;
}

.page-main .gallery-section{
  background: #1f1f1f !important;
  padding: 16px 0 40px !important;
  overflow: hidden !important;
}

.page-main .gallery-head{
  color: #fff !important;
  margin-bottom: 25px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  font-family: Georgia, serif !important;
}

.page-main .gallery-wrapper{
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 20px 0 !important;
}

.page-main #galleryGrid.gallery-masonry{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  column-count: unset !important;
  column-gap: 0 !important;
}

.page-main #galleryGrid.gallery-masonry img{
  width: 100% !important;
  height: 260px !important;
  display: block !important;
  object-fit: cover !important;
  margin: 0 !important;
  border-radius: 8px !important;
  break-inside: auto !important;
}

.page-main .gallery-pagination{
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 20px !important;
  flex-wrap: wrap !important;
}

@media (max-width: 900px){
  .page-main #galleryGrid.gallery-masonry{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-main #galleryGrid.gallery-masonry img{
    height: 220px !important;
  }
}

@media (max-width: 500px){
  .page-main #galleryGrid.gallery-masonry{
    grid-template-columns: 1fr !important;
  }

  .page-main #galleryGrid.gallery-masonry img{
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
  }
}


/*SHOP*/
.page-main{
  padding-top: 86px;
  min-height: 500px;
  background: #1f1f1f;;
}

.shop-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: flex;
  align-items: flex-start;
  gap: 56px;
  box-sizing: border-box;
}

.shop-sidebar {
  width: 260px;
  flex: 0 0 260px;
}

.shop-menu {
  list-style: none;
  margin: 0;
  padding: 0 10px 0 0;
  max-height: 390px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #4b4b4b #202020;
}

.shop-menu li {
  margin-bottom: 14px;
}

.shop-menu::-webkit-scrollbar {
  width: 8px;
}

.shop-menu::-webkit-scrollbar-track {
  background: #202020;
  border-radius: 999px;
}

.shop-menu::-webkit-scrollbar-thumb {
  background: #4b4b4b;
  border-radius: 999px;
}

.shop-menu::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.shop-menu li{
  margin-bottom: 14px;
}

.shop-link{
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.shop-link:hover,
.shop-link.active{
  color: #f2c38b;
}

.shop-content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  background: transparent;
}

.shop-coming-soon,
#shopComingSoon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  min-height: 120px;
  margin: 0 auto;
  padding: 24px 32px;
  background: #3b1d0f !important;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  color: #fff !important;
  text-align: center;

  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;

  box-sizing: border-box;
}

.shop-section,
.shop-sidebar,
.shop-content,
.shop-coming-soon,
#shopComingSoon {
  forced-color-adjust: none;
}

@media (max-width: 900px){
  .shop-section{
    flex-direction: column;
    gap: 28px;
  }

  .shop-sidebar{
    width: 100%;
    flex: 0 0 auto;
  }

  .shop-content{
    justify-content: flex-start;
  }

  .shop-coming-soon,
  #shopComingSoon{
    text-align: left;
    font-size: 16px;
  }
}
/* ===== FIX MENU HEADER ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #1f1f1f !important;
  border-bottom: none !important;
}

.header-inner{
  min-height: 86px;
}

.main-nav a,
.nav-dropdown-toggle,
.header-icons a,
.search-btn,
.icon-btn{
  color: #fff !important;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown-toggle:hover{
  color: #f2c38b !important;
}

.main-nav a::after,
.nav-dropdown-toggle::after{
  background: #f2c38b !important;
}

.nav-dropdown-menu{
  background: #2a2a2a !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}

.nav-dropdown-menu a{
  color: #fff !important;
}

.nav-dropdown-menu a:hover{
  background: rgba(255,255,255,.06) !important;
  color: #f2c38b !important;
}

/* ===== FIX SHOP BACKGROUND ===== */
.page-main{
  padding-top: 86px;
  min-height: 500px;
  background: #1f1f1f !important;
}

.shop-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: flex;
  align-items: flex-start;
  gap: 56px;
  box-sizing: border-box;
}

.shop-sidebar,
.shop-content{
  background: transparent !important;
}

.shop-link{
  color: #fff !important;
}

.shop-link:hover,
.shop-link.active{
  color: #f2c38b !important;
}

.shop-coming-soon,
#shopComingSoon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  min-height: 120px;
  margin: 0 auto;
  padding: 24px 32px;
  background: #1f1f1f !important;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  color: #fff !important;
  text-align: center;

  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;

  box-sizing: border-box;
}


/*CONTACT-US*/
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.contact-heading h2 {
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 28px;
}

.contact-form-wrap h3,
.contact-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  background: transparent;
  padding: 14px 12px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c88a96;
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  background: #e6a1af;
  color: #000;
  transition: 0.2s ease;
}

.contact-form button:hover {
  opacity: 0.92;
}

.contact-note {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 22px;
  text-align: center;
}

.contact-info p {
  margin: 0 0 20px;
  line-height: 1.7;
}

.contact-info h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 28px 0 14px;
}

.contact-info a {
  color: #c96e78;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info span {
  color: #c96e78;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== POLICY PAGE FIX - đúng theo policy.html hiện tại ===== */
.page-main{
  padding-top: 86px;
}

.policy-layout{
  background: #000;
  padding: 32px 0 56px;
  min-height: 100vh;
}

.policy-shell{
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.policy-head{
  margin: 0 0 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
}

.policy-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 36px;
  align-items: start;
}

.policy-copy h2{
  margin: 0 0 36px;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

.policy-copy p{
  margin: 0 0 14px;
  color: #d2d2d2;
  font-size: 16px;
  line-height: 1.55;
  font-family: Georgia, "Times New Roman", serif;
}

.policy-copy strong{
  color: #fff;
  font-weight: 700;
}

.policy-media img{
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px){
  .policy-grid{
    grid-template-columns: 1fr;
  }

  .policy-media{
    max-width: 320px;
  }

  .policy-copy h2{
    margin-bottom: 24px;
  }
}

/*CART*/
.cart-page {
  min-height: calc(100vh - 86px);
  background: #000;
  padding: 28px 24px 60px;
  box-sizing: border-box;
}

.cart-container {
  max-width: 980px;
  margin: 0 auto;
}

.cart-back {
  display: inline-block;
  color: #e7a3a3;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 26px;
}

.cart-back:hover {
  text-decoration: underline;
}

.cart-empty {
  text-align: center;
  color: #8b776b;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 8px;
}
/* ===== CART PAGE FIX ===== */
.page-main.cart-page{
  padding-top: 110px !important;
  min-height: calc(100vh - 86px) !important;
  background: #1f1f1f !important;
  box-sizing: border-box;
}

.cart-page .cart-container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.cart-page .cart-back{
  display: inline-block;
  color: #e7a3a3;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.cart-page .cart-back:hover{
  text-decoration: underline;
}

.cart-page .cart-empty{
  text-align: center;
  color: #8b776b;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 8px;
}

/*BLOG*/
.blogs-page {
  background: #000;
  min-height: calc(100vh - 86px);
}

.blogs-section {
  padding: 110px 24px 80px;
}

.blogs-container {
  max-width: 980px;
  margin: 0 auto;
}

.blogs-page-title {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  font-family: inherit, "Times New Roman", serif;
}

.blogs-tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 26px 0 34px;
}

.blogs-tabs a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif, "Times New Roman", serif;
}

.blogs-tabs a.active {
  color: #f2a3a3;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.blog-post-card {
  background: #f3f1f1;
  overflow: hidden;
}

.blog-post-image {
  display: block;
}

.blog-post-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  padding: 24px 18px 26px;
}

.blog-post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  color: #6e574d;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif, "Times New Roman", serif;
}

.blog-post-title {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif, "Times New Roman", serif;
}

.blog-post-title a {
  color: #111;
  text-decoration: none;
}

.blog-post-title a:hover {
  text-decoration: underline;
}

.blog-post-excerpt {
  margin: 0 0 18px;
  color: #4d4038;
  font-size: 15px;
  line-height: 1.7;
  font-family: Arial, Helvetica, sans-serif, "Times New Roman", serif;
}

.blog-post-link {
  color: #d98f8f;
  text-decoration: none;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif, "Times New Roman", serif;
}

.blog-post-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-image img {
    height: 220px;
  }
}

/*BOOKING*/
.booking-page {
  padding: 60px 20px;
}

.booking-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-page__inner h1 {
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(28px, 4vw, 42px);
}

.booking-page__inner iframe {
  width: 100%;
  height: 950px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  display: block;
}

/*GIFT CARD*/
.gift-card-page {
  padding: 60px 20px;
}

.gift-card-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gift-card-page__inner h1 {
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(28px, 4vw, 42px);
}

.gift-card-page__inner iframe {
  width: 100%;
  height: 950px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  display: block;
}

/* ===== CONTACT ABOUT SECTION ===== */
.contact-about-section{
  background: #f3f3f3;
  padding: 0 0 80px;
}

.contact-about-container{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.contact-about-content{
  padding: 56px 56px 56px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-about-label{
  display: block;
  margin: 0 0 34px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.28);
  color: #111;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
}

.contact-about-content h2{
  margin: 0 0 22px;
  color: #111;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
}

.contact-about-content p{
  margin: 0;
  max-width: 560px;
  color: #454545;
  font-size: 20px;
  line-height: 1.75;
  font-family: "Times New Roman", Times, serif;
}

.contact-about-image{
  min-height: 540px;
}

.contact-about-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px){
  .contact-about-container{
    grid-template-columns: 1fr;
  }

  .contact-about-content{
    padding: 40px 24px;
  }

  .contact-about-content h2{
    font-size: 38px;
  }

  .contact-about-content p{
    max-width: 100%;
    font-size: 16px;
  }

  .contact-about-image{
    min-height: 320px;
  }
}