/*
Theme Name: JSS Nail Care
Theme URI: https://example.com/jss-nail-care
Author: OpenAI
Description: Custom WordPress theme for JSS Nail & Care.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: jss-nail-care
*/

:root {
    --primary-color: #FDF8F5;
    --secondary-color: #EFEBE0;
    --accent-color: #D4AF37;
    --text-color: #333333;
    --text-light: #666666;
    --white-color: #FFFFFF;
    --serif-font: 'Playfair Display', serif;
    --sans-serif-font: 'Montserrat', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans-serif-font); background-color: var(--primary-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
section { animation: fadeIn 1s ease-out forwards; }
h1, h2, h3 { font-family: var(--serif-font); }
/* ===== SECTION HEADER SYSTEM ===== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: 14px;
  opacity: 0.9;
}
.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent-color);
  opacity: 0.45;
}

section h2 {
  font-family: var(--serif-font);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  letter-spacing: -0.3px;
  line-height: 1.15;
  color: #1d1d1f;
}
section h2::after {
  content: '';
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

/* gold italic — unified across all headings */
section h2 em,
.prices-heading em,
.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #d4af37 0%, #f0e08a 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
header { position: sticky; top: 0; z-index: 1000; background: rgba(253,248,245,.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,.05); }
nav { max-width: 1200px; margin: 0 auto; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--serif-font); font-size: 1.8rem; font-weight: 700; color: var(--accent-color); }
nav ul { display: flex; gap: 2rem; list-style: none; align-items: center; }
nav a:hover { color: var(--accent-color); }
.cta-button { background: var(--accent-color); color: #111; padding: .9rem 1.4rem; border-radius: 999px; font-weight: 700; display: inline-block; transition: transform .2s ease, box-shadow .2s ease; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,.25); }
#hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5%;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)), url('images/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* subtle animated vignette overlay */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

/* eyebrow line */
.hero-content::before {
  content: '✦  JSS Nails & Lash  ✦';
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

/* gold underline on last word */
.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #d4af37 0%, #f0e08a 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
}

/* thin gold divider */
.hero-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto 28px;
}
#about, #services, #gallery, #why-us, #contact { padding: 6rem 0; text-align: center; }

/* section-header bottom spacing — replaces raw h2 margin-bottom */
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0;
}
.about-flex, .price-flex { display:grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items:center; text-align:left; }
.about-image img, .price-image img, .gallery-item img { border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,.12); width:100%; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; }
.service-grid, .why-us-grid, .gallery-grid { display:grid; gap: 1.5rem; }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-top: 2rem; }
.why-us-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 2rem; }
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.service-item, .why-us-item, .contact-card { background: var(--white-color); border-radius: 24px; padding: 2rem; box-shadow: 0 12px 30px rgba(0,0,0,.07); }
.service-icon, .why-us-icon { width:72px; height:72px; margin: 0 auto 1rem; display:flex; align-items:center; justify-content:center; }
.service-item h3, .why-us-item h3 { margin-bottom: .5rem; }
.service-item p { color: var(--text-light); }
.price-list { display:grid; gap: 1.5rem; }
.price-cat { background: var(--white-color); padding: 1.5rem; border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.price-cat h3 { margin-bottom: 1rem; }
.price-cat ul { list-style:none; }
.price-cat li { display:flex; justify-content:space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid #eee; }
.price-cat li:last-child { border-bottom: 0; }
.contact-card { max-width: 680px; margin: 0 auto; }
.phone-number { font-size: 1.5rem; font-weight: 700; color: var(--accent-color); margin: .5rem 0 1.5rem; }
footer { text-align:center; padding: 2rem 5%; background: #111; color: #fff; }
@media (max-width: 900px) {
  nav { flex-direction: column; gap: 1rem; }
  nav ul { flex-wrap: wrap; justify-content:center; gap: 1rem; }
  .about-flex, .price-flex { grid-template-columns: 1fr; text-align:center; }
  section h2 { font-size: 2.2rem; }
}


.why-us-photo {
  margin-top: 1rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.why-us-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.booking-cta-section,.map-link-section{padding:60px 0;}
.booking-cta-box,.map-link-box,.booking-page-box{
  max-width:760px;margin:0 auto;background:#fff;border-radius:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);padding:36px;text-align:center;
}
.booking-open-btn,.map-open-btn,.booking-page-form button{
  display:inline-block;background:#111;color:#fff;padding:14px 28px;border-radius:999px;
  text-decoration:none;border:none;cursor:pointer;font-weight:700;
}
.booking-phone{margin-top:16px;}
.why-us-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;}
.why-us-icon img{width:56px;height:56px;display:block;}
.why-us-item h3{margin:0;font-size:1.1rem;}
.why-us-photo{width:100%;margin-top:4px;border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.10);}
.why-us-photo img{width:100%;height:180px;object-fit:cover;display:block;}
.booking-page-main{padding:70px 0;}
.booking-page-form{display:grid;gap:14px;margin-top:22px;}
.booking-page-form input,.booking-page-form select,.booking-page-form textarea{
  width:100%;padding:14px 16px;border:1px solid #ddd;border-radius:14px;font:inherit;
}
.booking-page-form textarea{min-height:110px;resize:vertical;}

.whatsapp-chat-bubble{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
  font-weight:700;
  line-height:1;
}
.whatsapp-chat-bubble:hover{
  transform:translateY(-1px);
  opacity:.96;
}
.whatsapp-icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
}
.whatsapp-icon svg{
  width:22px;
  height:22px;
  fill:#fff;
  display:block;
}
.whatsapp-label{
  font-size:14px;
  letter-spacing:.2px;
}
@media (max-width: 640px){
  .whatsapp-chat-bubble{
    right:14px;
    bottom:14px;
    padding:12px;
  }
  .whatsapp-label{
    display:none;
  }
}


.footer-map-section{
  padding: 0 0 28px 0;
  background: transparent;
}
.footer-map-frame{
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.why-us-item .why-us-icon{
  display:none !important;
}
.why-us-item h3{
  margin-bottom: 10px;
}


.service-icon,
.service-image,
.services-card img[src$=".svg"],
.services-card img[src$=".jpg"] {
  display: none !important;
}


.service-card-photo{
  margin: 12px 0 0 0;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.service-card-photo img{
  display:block;
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:16px;
}


.whatsapp-chat-bubble{
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 2147483647 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 18px !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.whatsapp-chat-bubble:hover{
  transform: translateY(-1px);
  opacity: .97;
  color: #fff !important;
}
.whatsapp-icon, .whatsapp-icon svg{
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  fill: #fff !important;
  pointer-events: none !important;
}
.whatsapp-label{
  font-size: 14px !important;
  letter-spacing: .2px !important;
  pointer-events: none !important;
}
iframe, .footer-map-frame{
  z-index: 1 !important;
}
@media (max-width: 640px){
  .whatsapp-chat-bubble{
    right: 14px !important;
    bottom: 14px !important;
    padding: 13px 14px !important;
  }
}



/* WhatsApp label fix and stronger clickability */
.whatsapp-chat-bubble{
  min-height: 48px;
}
.whatsapp-label{
  display:inline-block !important;
}

/* Mobile nav */
.menu-toggle{
  display:none;
  background:#111;
  border:none;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  margin-left:auto;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:4px 0;
  border-radius:2px;
}

@media (max-width: 900px){
  .menu-toggle{
    display:inline-block;
  }

  .site-nav{
    display:none !important;
    width:100%;
    margin-top:14px;
  }

  .site-nav.is-open{
    display:block !important;
  }

  .site-nav ul{
    display:flex !important;
    flex-direction:column !important;
    gap:10px !important;
    width:100%;
    padding:14px !important;
    margin:12px 0 0 0 !important;
    background:#fff !important;
    border-radius:16px !important;
    box-shadow:0 10px 28px rgba(0,0,0,.10) !important;
  }

  .site-nav li{
    width:100%;
  }

  .site-nav a{
    display:block !important;
    width:100%;
    padding:10px 12px;
  }
}


.site-branding{
  display:flex;
  align-items:flex-start;
  margin-right:auto;
}
.site-branding-link{
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  text-decoration:none;
}
.site-branding-title{
  font: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  color: inherit;
  line-height: 1.1;
}
.site-branding-logo{
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 18px;
  display:block;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.whatsapp-chat-bubble{
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 999999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 18px !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.24) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}
.whatsapp-chat-bubble:hover,
.whatsapp-chat-bubble:focus{
  color:#fff !important;
  opacity:.97;
}
.whatsapp-icon{
  width:22px !important;
  height:22px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  pointer-events:none !important;
}
.whatsapp-icon svg{
  width:22px !important;
  height:22px !important;
  fill:#fff !important;
  display:block !important;
}
.whatsapp-label{
  font-size:14px !important;
  font-weight:700 !important;
  pointer-events:none !important;
}
iframe,
.footer-map-frame{
  position: relative;
  z-index: 1 !important;
}
@media (max-width: 900px){
  .site-branding-title{
    font-size: 1.15rem;
  }
  .site-branding-logo{
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
}
@media (max-width: 640px){
  .whatsapp-chat-bubble{
    right: 14px !important;
    bottom: 14px !important;
    padding: 12px 15px !important;
  }
}


.site-branding,
.site-branding-logo{
  display:none !important;
}

.site-branding-text{
  display:flex !important;
  align-items:center !important;
  margin-right:auto !important;
  position:relative;
  z-index:50;
}

.site-branding-text-link{
  text-decoration:none !important;
  color:inherit !important;
  font: inherit !important;
  font-size:1.35rem !important;
  font-weight:700 !important;
  line-height:1.1 !important;
  display:inline-block !important;
}

.whatsapp-fixed-wrap{
  position:fixed !important;
  right:18px !important;
  bottom:18px !important;
  z-index:2147483647 !important;
  pointer-events:auto !important;
}

.whatsapp-chat-bubble{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
  padding:14px 18px !important;
  border-radius:999px !important;
  background:#25D366 !important;
  color:#fff !important;
  text-decoration:none !important;
  box-shadow:0 12px 28px rgba(0,0,0,.24) !important;
  cursor:pointer !important;
  pointer-events:auto !important;
  user-select:none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.whatsapp-chat-bubble,
.whatsapp-chat-bubble *{
  pointer-events:auto !important;
}

.whatsapp-chat-bubble:hover,
.whatsapp-chat-bubble:focus,
.whatsapp-chat-bubble:active{
  color:#fff !important;
  opacity:.98 !important;
}

.whatsapp-icon{
  width:22px !important;
  height:22px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.whatsapp-icon svg{
  width:22px !important;
  height:22px !important;
  fill:#fff !important;
  display:block !important;
}

.whatsapp-label{
  font-size:14px !important;
  font-weight:700 !important;
}

iframe,
.footer-map-frame{
  position:relative !important;
  z-index:1 !important;
}

@media (max-width:640px){
  .site-branding-text-link{
    font-size:1.1rem !important;
  }
  .whatsapp-fixed-wrap{
    right:14px !important;
    bottom:14px !important;
  }
  .whatsapp-chat-bubble{
    padding:12px 15px !important;
  }
}



/* Header alignment */
.jss-header{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  flex-wrap:nowrap !important;
}

.site-branding-text{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  flex:0 0 auto !important;
  margin:0 !important;
  padding:0 !important;
  position:relative !important;
  z-index:50 !important;
}

.site-branding-text-link{
  display:inline-flex !important;
  align-items:center !important;
  height:auto !important;
  text-decoration:none !important;
  color:inherit !important;
  font: inherit !important;
  font-size:1.2rem !important;
  font-weight:700 !important;
  line-height:1 !important;
  white-space:nowrap !important;
  margin:0 !important;
  padding:0 !important;
}

/* Desktop nav alignment */
#site-menu.site-nav{
  flex:1 1 auto !important;
  display:flex !important;
  justify-content:flex-end !important;
  align-items:center !important;
  margin:0 !important;
}

#site-menu.site-nav ul{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:24px !important;
  margin:0 !important;
  padding:0 !important;
}

/* Mobile: brand on left, hamburger on right aligned in same row */
@media (max-width: 900px){
  .jss-header{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    flex-wrap:wrap !important;
  }

  .site-branding-text{
    order:1 !important;
    flex:1 1 auto !important;
    min-width:0 !important;
  }

  .site-branding-text-link{
    font-size:1.02rem !important;
    line-height:1.1 !important;
  }

  .menu-toggle{
    order:2 !important;
    margin-left:0 !important;
    flex:0 0 auto !important;
    align-self:center !important;
  }

  #site-menu.site-nav{
    order:3 !important;
    width:100% !important;
    flex:0 0 100% !important;
  }
}

@media (max-width: 640px){
  .site-branding-text-link{
    font-size:.98rem !important;
  }
}


/* Final header spacing */
.site-branding-text{
  padding-left: 5ch !important;
}

/* Better hamburger alignment and balance */
.menu-toggle{
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 4px !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
}
.menu-toggle span{
  width: 20px !important;
  height: 2px !important;
  margin: 0 !important;
  display: block !important;
  border-radius: 999px !important;
}

/* Real clickable WhatsApp button */
.whatsapp-fixed-wrap{
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 2147483647 !important;
  width: auto !important;
  height: auto !important;
  pointer-events: auto !important;
}
.whatsapp-chat-bubble{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 52px !important;
  min-width: 52px !important;
  padding: 14px 18px !important;
  background: #25D366 !important;
  color: #fff !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.24) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: none !important;
}
.whatsapp-chat-bubble:hover,
.whatsapp-chat-bubble:focus,
.whatsapp-chat-bubble:active{
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
}
.whatsapp-fixed-wrap *{
  pointer-events: none !important;
}
.whatsapp-fixed-wrap a{
  pointer-events: auto !important;
}
.whatsapp-icon{
  width: 22px !important;
  height: 22px !important;
  fill: #fff !important;
  flex: 0 0 22px !important;
  display: block !important;
}
.whatsapp-label{
  display: inline-block !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #fff !important;
}

/* prevent map or other sections from covering button */
.footer-map-section,
.footer-map-frame,
iframe{
  z-index: 1 !important;
}

@media (max-width: 900px){
  .site-branding-text{
    padding-left: 5ch !important;
  }
}
@media (max-width: 640px){
  .site-branding-text{
    padding-left: 3ch !important;
  }
  .whatsapp-fixed-wrap{
    right: 14px !important;
    bottom: 14px !important;
  }
}


/* Final menu visibility fix */
.menu-toggle{
  display: none !important;
}

#site-menu.site-nav{
  display: flex !important;
}

@media (max-width: 900px){
  .menu-toggle{
    display: inline-flex !important;
  }

  #site-menu.site-nav{
    display: none !important;
    width: 100% !important;
  }

  #site-menu.site-nav.is-open{
    display: block !important;
  }

  #site-menu.site-nav ul{
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}

@media (min-width: 901px){
  .menu-toggle{
    display: none !important;
  }

  #site-menu.site-nav,
  #site-menu.site-nav.is-open{
    display: flex !important;
    width: auto !important;
  }

  #site-menu.site-nav ul{
    flex-direction: row !important;
  }
}



.booking-section{
  padding: 80px 0;
}
.booking-card{
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  padding: 32px;
}
.booking-form{
  margin-top: 10px;
}
.booking-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.booking-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-field-full{
  grid-column: 1 / -1;
}
.booking-field label{
  font-weight: 600;
}
.booking-field input,
.booking-field select,
.booking-field textarea{
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}
.booking-submit{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.booking-notice{
  margin-bottom: 18px;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
}
.booking-success{
  background: #e8f7ec;
  color: #166534;
}
.booking-error{
  background: #fdecec;
  color: #991b1b;
}
@media (max-width: 768px){
  .booking-card{
    padding: 22px;
  }
  .booking-grid{
    grid-template-columns: 1fr;
  }
  .booking-field-full{
    grid-column: auto;
  }
}


.booking-trigger{cursor:pointer;}
body.modal-open{overflow:hidden;}
.jss-modal{position:fixed;inset:0;display:none;z-index:100000;}
.jss-modal.is-active{display:block;}
.jss-modal-backdrop{position:absolute;inset:0;background:rgba(17,17,17,.62);backdrop-filter:blur(4px);}
.jss-modal-dialog{position:relative;z-index:2;max-width:980px;width:min(92vw,980px);max-height:88vh;overflow:auto;margin:6vh auto 0;background:transparent;border-radius:28px;}
.jss-modal-content{position:relative;}
.jss-modal-close{position:absolute;top:18px;right:18px;z-index:5;width:44px;height:44px;border:0;border-radius:999px;background:#111;color:#fff;font-size:1.6rem;line-height:1;cursor:pointer;box-shadow:0 10px 25px rgba(0,0,0,.18);}
.booking-section-modal{padding:0;}
.booking-section-modal .booking-card{position:relative;margin:0;background:#fff;}
.booking-section-modal h2{margin-bottom:2rem;}
@media (max-width:768px){
  .jss-modal-dialog{width:min(94vw,980px);margin:3vh auto 0;max-height:94vh;}
  .jss-modal-close{top:12px;right:12px;}
  .booking-section-modal .booking-card{padding-top:58px;}
}


.booking-slot-field{
  padding-top: 4px;
}
.jss-slot-status{
  min-height: 22px;
  font-size: .95rem;
  color: #5b5b5b;
}
.jss-slot-status.is-error{
  color: #991b1b;
}
.jss-slot-status.is-success{
  color: #166534;
}
.jss-slot-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.jss-slot-btn,
.jss-slot-loading{
  min-height: 52px;
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
}
.jss-slot-btn{
  border: 1px solid #d8d8d8;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all .2s ease;
}
.jss-slot-btn:hover{
  border-color: #111;
  transform: translateY(-1px);
}
.jss-slot-btn.is-selected{
  background:#111;
  color:#fff;
  border-color:#111;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.jss-slot-btn.is-booked{
  background:#f5f5f5;
  color:#9a9a9a;
  border-color:#e4e4e4;
  cursor:not-allowed;
}
.jss-slot-loading{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fafafa;
  border:1px dashed #ddd;
  grid-column:1 / -1;
}
@media (max-width: 768px){
  .jss-slot-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Final booking fixes */
body.modal-open .whatsapp-fixed-wrap{
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}
.jss-modal,
.jss-modal-dialog,
.jss-modal-content,
.booking-section-modal,
.booking-card,
.booking-form,
.booking-submit{
  pointer-events:auto;
}
.booking-submit{
  display:flex !important;
  width:100% !important;
  min-height:56px !important;
  position:relative !important;
  z-index:20 !important;
  -webkit-appearance:none !important;
  appearance:none !important;
  touch-action:manipulation;
}
.booking-submit:hover,
.booking-submit:focus{
  opacity:.96;
}



/* Final fix: when booking popup is open, hide floating WhatsApp bubble so it cannot block the submit button */
body.modal-open .whatsapp-fixed-wrap{
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Keep popup actions fully clickable */
.jss-modal.is-active,
.jss-modal.is-active .jss-modal-dialog,
.jss-modal.is-active .jss-modal-content,
.jss-modal.is-active .booking-card,
.jss-modal.is-active .booking-form,
.jss-modal.is-active .booking-submit{
  pointer-events: auto !important;
}

.jss-modal.is-active .booking-submit{
  position: relative !important;
  z-index: 20 !important;
  cursor: pointer !important;
}


/* Elegant signature section refresh */
#services .service-item{
  border: 1px solid rgba(212,175,55,.14);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#services .service-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border-color: rgba(212,175,55,.34);
}
#services .service-item h3{
  font-size: 1.35rem;
}
#services .service-item p{
  margin-top: .9rem;
  font-size: .97rem;
}
.service-card-photo{
  margin-top: 14px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.service-card-photo img{
  height: 180px;
}

.signature-ritual-section{
  padding: 1rem 0 6rem;
}
.signature-ritual-card{
  display:grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 2.4rem;
  align-items: center;
  background: linear-gradient(135deg, #fffdf9 0%, #f6f0e5 100%);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 32px;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}
.signature-ritual-image{
  border-radius: 26px;
  overflow: hidden;
  min-height: 100%;
}
.signature-ritual-image img{
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.signature-ritual-content{
  text-align: left;
  padding: 1rem 1.2rem 1rem .4rem;
}
.signature-ritual-content h2{
  display:block;
  margin-bottom: 1.3rem;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}
.signature-ritual-content h2::after{
  left: 0;
  transform: none;
}
.signature-ritual-content p{
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 1.35rem;
}
.ritual-points{
  display:grid;
  gap: .8rem;
  margin-bottom: 1.6rem;
}
.ritual-point{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 16px;
  padding: .9rem 1rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
#gallery .gallery-item img{
  height: 260px;
  object-fit: cover;
}
@media (max-width: 900px){
  .signature-ritual-card{
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .signature-ritual-image img{
    min-height: 300px;
  }
  .signature-ritual-content{
    text-align: center;
    padding: .5rem;
  }
  .signature-ritual-content h2::after{
    left:50%;
    transform:translateX(-50%);
  }
}


/* Signature Ritual visuals fix */
.signature-ritual-visuals{
  display: grid;
  gap: 16px;
}
.signature-ritual-image-main{
  border-radius: 26px;
  overflow: hidden;
}
.signature-ritual-image-main img{
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
.signature-ritual-thumb-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.signature-ritual-thumb{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.signature-ritual-thumb img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px){
  .signature-ritual-image-main img{
    height: 320px;
  }
  .signature-ritual-thumb-grid{
    grid-template-columns: 1fr 1fr;
  }
  .signature-ritual-thumb img{
    height: 140px;
  }
}

.premium-price-block {
  background:#111;
  color:#fff;
  padding:30px;
  border-radius:20px;
  font-family:Arial, sans-serif;
  line-height:1.7;
}
.premium-price-block pre {
  white-space:pre-wrap;
}



/* ══════════════════════════════════════════════════
   UNIFIED SECTION HEADER SYSTEM (mirrors prices section)
══════════════════════════════════════════════════ */

/* Shared deco rings for all sections */
.sec-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sec-deco .deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.12);
}
.sec-deco .deco-ring-1 {
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite;
}
.sec-deco .deco-ring-2 {
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(212,175,55,0.06);
  animation: ringPulse 6s ease-in-out infinite 1.5s;
}

/* Header wrapper */
.sec-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

/* Eyebrow — same as prices-eyebrow */
.sec-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
  opacity: 0.85;
}

/* Main heading — same scale as prices-heading */
.sec-heading {
  font-family: var(--serif-font);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #1d1d1f;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 16px;
  position: relative;
  display: inline-block;
}
.sec-heading::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 14px auto 0;
}
.sec-heading em {
  font-style: italic;
  background: linear-gradient(135deg, #d4af37 0%, #f0e08a 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub line — same as prices-sub */
.sec-sub {
  font-size: 14px;
  color: rgba(0,0,0,0.42);
  letter-spacing: 0.2px;
  line-height: 1.7;
  margin: 6px 0 0;
}
.sec-sub span {
  font-size: 12px;
  color: rgba(0,0,0,0.28);
}

/* About text left-aligned variant */
.about-text .sec-eyebrow,
.about-text .sec-heading,
.about-text .sec-sub,
.signature-ritual-content .sec-eyebrow,
.signature-ritual-content .sec-heading,
.signature-ritual-content .sec-sub {
  text-align: left;
  align-self: flex-start;
}
.about-text .sec-heading::after,
.signature-ritual-content .sec-heading::after {
  margin: 14px 0 0;
}

/* ===== PRICES SECTION ===== */
#prices {
  position: relative;
  overflow: hidden;
  background: #FDF8F5;
  padding: 7rem 0;
  text-align: center;
}

.prices-bg-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.18);
}
.deco-ring-1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite;
}
.deco-ring-2 {
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(212,175,55,0.09);
  animation: ringPulse 6s ease-in-out infinite 1.5s;
}
.deco-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.25), transparent);
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.04); }
}

.prices-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.prices-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 18px;
  opacity: 0.85;
}

.prices-heading {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #1d1d1f;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.prices-heading em {
  font-style: italic;
  background: linear-gradient(135deg, #d4af37 0%, #f0e08a 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prices-sub {
  font-size: 15px;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.3px;
  line-height: 1.7;
  margin: 0 0 36px;
}
.prices-sub span {
  font-size: 13px;
  color: rgba(0,0,0,0.3);
}

/* preview chips */
.prices-preview-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  max-width: 560px;
}
.chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.06);
  color: rgba(0,0,0,0.6);
  font-size: 12.5px;
  letter-spacing: 0.1px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.chip:hover {
  border-color: rgba(212,175,55,0.6);
  background: rgba(212,175,55,0.12);
  color: #1d1d1f;
}
.chip-more {
  border-style: dashed;
  color: rgba(212,175,55,0.6);
}

/* ===== PRICE BUTTON ===== */
.price-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4af37, #f0c96e);
  border: none;
  border-radius: 980px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 2px 12px rgba(212,175,55,0.35);
}
.price-btn:hover {
  opacity: 0.88;
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(212,175,55,0.5);
}
.price-btn:active {
  transform: scale(0.98);
}

/* ===== PRICE POPUP OVERLAY ===== */
.price-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  justify-content: center;
  align-items: flex-end;
  z-index: 9999;
  padding: 0;
  animation: overlayFadeIn 0.25s ease;
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (min-width: 600px) {
  .price-popup { align-items: center; }
}

/* ===== POPUP SHEET ===== */
.price-popup-content {
  position: relative;
  background: #FDF8F5;
  color: #1d1d1f;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.18);
  animation: sheetSlideUp 0.32s cubic-bezier(0.32,0.72,0,1);
}
@media (min-width: 600px) {
  .price-popup-content {
    border-radius: 20px;
    max-height: 82vh;
    width: 90%;
    animation: sheetFadeScale 0.28s cubic-bezier(0.32,0.72,0,1);
  }
}
@keyframes sheetSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes sheetFadeScale {
  from { transform: scale(0.93) translateY(16px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* drag handle */
.price-popup-content::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .price-popup-content::before { display: none; }
}

/* ===== POPUP HEADER ===== */
.price-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.price-popup-title {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.3px;
}
.price-popup-subtitle {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  margin-top: 2px;
  letter-spacing: 0.2px;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: rgba(0,0,0,0.5);
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease;
  flex-shrink: 0;
  line-height: 1;
}
.close-btn:hover { background: rgba(0,0,0,0.12); }

/* ===== SCROLLABLE BODY ===== */
.price-popup-body {
  overflow-y: auto;
  padding: 8px 0 20px;
  -webkit-overflow-scrolling: touch;
}
.price-popup-body::-webkit-scrollbar { width: 4px; }
.price-popup-body::-webkit-scrollbar-track { background: transparent; }
.price-popup-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }

/* ===== SECTION HEADER ===== */
.pp-section {
  padding: 20px 22px 0;
}
.pp-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
}
.pp-section-title span {
  color: rgba(0,0,0,0.35);
  font-weight: 400;
  margin-left: 4px;
}

/* ===== PRICE CARD LIST ===== */
.pp-list {
  background: #f5f5f7;
  border-radius: 12px;
  overflow: hidden;
}
.pp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 12px;
}
.pp-item:last-child { border-bottom: none; }
.pp-item-name {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 400;
  flex: 1;
}
.pp-item-name small {
  display: block;
  font-size: 11px;
  color: rgba(0,0,0,0.38);
  margin-top: 1px;
}
.pp-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #d4af37;
  white-space: nowrap;
  flex-shrink: 0;
}
.pp-item-price.from::before {
  content: 'from ';
  font-size: 11px;
  font-weight: 400;
  color: rgba(212,175,55,0.7);
}
.pp-item-price.tbd {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
}
