*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html,body{max-width:100%;overflow-x:hidden}
img{max-width:100%}
h1,h2,h3,p,span,a,button{overflow-wrap:break-word}
:root{
  --cream:#F5F0E8;
  --cream-dark:#EDE7D9;
  --olive:#2C3027;
  --olive-mid:#3D4235;
  --text:#1A1A16;
  --text-muted:#7A7A6E;
  --white:#FFFFFF;
  --border:#E0D9CC;
  --rust:#B5572E;
  --radius-img:20px;
  --radius-btn:100px;
  --radius-field:10px;
  --gutter:64px;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--cream);color:var(--text);overflow-x:hidden}
.serif{font-family:'Forum',serif}

/* ── ANNOUNCEMENT BAR ── */
.announce{
  background:var(--olive);color:var(--white);
  display:flex;align-items:center;justify-content:center;gap:24px;
  padding:11px var(--gutter);font-size:13px;letter-spacing:0.02em;
}
.announce span{opacity:0.95}

/* ── NAV ── */
nav{
  position:sticky;top:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  padding:20px var(--gutter);
  background:var(--cream);
  border-bottom:1px solid var(--border);
  max-width:100vw;
  overflow:visible;
}
.nav-logo{font-family:'Forum',serif;font-size:28px;color:var(--text);letter-spacing:0.01em;flex-shrink:0;white-space:nowrap}
.nav-links{display:flex;gap:28px;list-style:none;flex-wrap:nowrap;min-width:0}
.nav-links a{font-size:14px;color:var(--text);text-decoration:none;transition:color 0.2s;white-space:nowrap}
.nav-links a:hover{color:var(--olive)}
.nav-icons{display:flex;align-items:center;gap:16px;flex-shrink:0}
.nav-icon-btn{
  background:none;border:none;cursor:pointer;
  color:var(--text);position:relative;
  display:flex;align-items:center;justify-content:center;
  width:22px;height:22px;padding:0;
  transition:opacity 0.2s;
  flex-shrink:0;
}
.nav-icon-btn:hover{opacity:0.6}
.nav-icon-btn svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.6}
.nav-cart-count{
  position:absolute;top:-7px;right:-8px;
  background:var(--rust);color:var(--white);
  font-size:9px;font-weight:600;
  width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  line-height:1;
}
.nav-book-btn{
  background:var(--olive);color:var(--white);border:none;
  font-size:13px;font-weight:500;padding:10px 22px;
  border-radius:var(--radius-btn);cursor:pointer;
  white-space:nowrap;transition:background 0.2s;
}
.nav-book-btn:hover{background:var(--olive-mid)}
.nav-burger{
  display:none;background:none;border:none;cursor:pointer;
  width:28px;height:22px;position:relative;padding:0;
}
.nav-burger span{
  position:absolute;left:0;width:100%;height:1.6px;background:var(--text);
  transition:all 0.3s;
}
.nav-burger span:nth-child(1){top:0}
.nav-burger span:nth-child(2){top:10px}
.nav-burger span:nth-child(3){top:20px}
.nav-burger.open span:nth-child(1){top:10px;transform:rotate(45deg)}
.nav-burger.open span:nth-child(2){opacity:0}
.nav-burger.open span:nth-child(3){top:10px;transform:rotate(-45deg)}
.mobile-menu{
  display:none;position:fixed;inset:0;z-index:200;
  background:var(--cream);padding:24px var(--gutter);
  flex-direction:column;
}
.mobile-menu.open{display:flex}
.mobile-menu-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:48px}
.mobile-menu-links{list-style:none;display:flex;flex-direction:column;gap:28px}
.mobile-menu-links a{
  font-family:'Forum',serif;font-size:30px;color:var(--text);text-decoration:none;
}
.mobile-menu-book{
  margin-top:auto;background:var(--olive);color:var(--white);border:none;
  padding:16px;border-radius:var(--radius-btn);font-size:15px;font-weight:500;
  cursor:pointer;
}

/* ── HERO ── */
.hero{
  position:relative;width:100%;height:90vh;
  overflow:hidden;
}
.hero img{
  width:100%;height:100%;object-fit:cover;object-position:center 25%;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(18,16,14,0.62) 0%, rgba(18,16,14,0.06) 50%, transparent 100%);
}
.hero-content{
  position:absolute;inset:0;display:flex;align-items:flex-end;
  padding:0 var(--gutter) 88px;
}
.hero-bottom{width:100%;display:flex;align-items:flex-end;justify-content:space-between}
.hero-headline{
  font-family:'Forum',serif;
  font-size:clamp(56px,7.5vw,104px);
  line-height:0.98;color:var(--white);
}
.hero-right{
  display:flex;flex-direction:column;align-items:flex-end;gap:20px;
  max-width:340px;text-align:right;padding-bottom:10px;
}
.hero-sub{font-size:15px;line-height:1.65;color:rgba(255,255,255,0.82);font-weight:300}
.btn-pill-light{
  background:var(--white);color:var(--text);border:none;
  font-size:14px;font-weight:500;padding:14px 32px;
  border-radius:var(--radius-btn);cursor:pointer;
  transition:all 0.25s;white-space:nowrap;
}
.btn-pill-light:hover{background:var(--cream);transform:translateY(-2px)}
.btn-pill-olive{
  background:var(--olive);color:var(--white);border:none;
  font-size:14px;font-weight:500;padding:14px 32px;
  border-radius:var(--radius-btn);cursor:pointer;
  transition:all 0.25s;white-space:nowrap;
}
.btn-pill-olive:hover{background:var(--olive-mid);transform:translateY(-2px)}
.btn-pill-outline{
  background:transparent;color:var(--text);border:1.5px solid var(--text);
  font-size:13px;font-weight:500;padding:11px 26px;
  border-radius:var(--radius-btn);cursor:pointer;transition:all 0.25s;
}
.btn-pill-outline:hover{background:var(--text);color:var(--white)}

/* ── SHOP BY CATEGORY ── */
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:48px;
}
.section-eyebrow{
  font-size:11px;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:10px;
}
.section-title{font-family:'Forum',serif;font-size:clamp(30px,3.4vw,44px);color:var(--text)}
.section-title em{font-style:italic}
.view-all{
  font-size:13px;color:var(--text);text-decoration:none;
  border-bottom:1px solid var(--text);padding-bottom:2px;
  transition:opacity 0.2s;white-space:nowrap;
}
.view-all:hover{opacity:0.6}
/* ── FACIAL QUIZ TEASER ── */
.quiz-teaser{
  margin:40px var(--gutter) 0;
  background:var(--olive);border-radius:var(--radius-img);
  padding:40px 48px;
  display:flex;align-items:center;justify-content:space-between;
  gap:32px;flex-wrap:wrap;
}
.quiz-left{display:flex;align-items:center;gap:20px}
.quiz-icon{
  width:56px;height:56px;border-radius:50%;
  background:rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.quiz-icon svg{width:26px;height:26px;stroke:var(--white);fill:none;stroke-width:1.5}
.quiz-title{font-family:'Forum',serif;font-size:22px;color:var(--white);margin-bottom:6px}
.quiz-title em{font-style:italic}
.quiz-sub{font-size:14px;color:rgba(255,255,255,0.6)}
.quiz-cta{
  background:var(--white);color:var(--olive);border:none;
  font-size:13px;font-weight:500;padding:13px 28px;
  border-radius:var(--radius-btn);cursor:pointer;
  white-space:nowrap;transition:all 0.25s;
}
.quiz-cta:hover{background:var(--cream)}

/* ── FACIALS SLIDER ── */
.facials{padding:64px var(--gutter) 90px}
.facial-row{
  display:flex;gap:22px;overflow-x:auto;
  scrollbar-width:none;padding-bottom:4px;
}
.facial-row::-webkit-scrollbar{display:none}
.facial-card{
  flex-shrink:0;width:248px;
  background:var(--white);border-radius:18px;overflow:hidden;
  border:1px solid var(--border);
  cursor:pointer;transition:border-color 0.25s;
}
.facial-card:hover{border-color:var(--olive)}
.facial-img{aspect-ratio:4/3.2;overflow:hidden}
.facial-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.facial-card:hover .facial-img img{transform:scale(1.06)}
.facial-info{padding:18px 18px 20px}
.facial-name{font-size:15px;font-weight:500;color:var(--text);margin-bottom:8px;line-height:1.4}
.facial-meta{display:flex;align-items:center;justify-content:space-between}
.facial-price{font-family:'Forum',serif;font-size:17px;color:var(--olive)}
.facial-duration{
  font-size:11px;color:var(--text-muted);
  display:flex;align-items:center;gap:4px;
}
.facial-duration svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:1.6}
.purpose{
  background:var(--cream-dark);
  padding:90px var(--gutter);
  display:grid;grid-template-columns:0.85fr 1.4fr;
  gap:72px;align-items:center;
}
.purpose-label{
  font-size:11px;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:18px;
}
.purpose-title{
  font-family:'Forum',serif;font-size:clamp(30px,3.2vw,42px);
  color:var(--text);margin-bottom:0;
}
.purpose-title em{font-style:italic}
.purpose-statement{
  font-family:'Forum',serif;font-size:clamp(22px,2.4vw,30px);
  line-height:1.5;color:var(--text);margin-bottom:32px;
}
.purpose-statement em{font-style:italic;color:var(--olive)}

/* ── BESTSELLERS ── */
.bestsellers{padding:90px var(--gutter)}
.product-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.product-card{display:flex;flex-direction:column}
.product-img-wrap{
  position:relative;border-radius:var(--radius-img);overflow:hidden;
  aspect-ratio:4/5;background:var(--cream-dark);margin-bottom:16px;
}
.product-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img{transform:scale(1.05)}
.product-badge{
  position:absolute;top:14px;left:14px;
  background:var(--white);color:var(--text);
  font-size:11px;font-weight:500;padding:5px 12px;
  border-radius:var(--radius-btn);
}
.product-quickadd{
  position:absolute;bottom:14px;left:14px;right:14px;
  background:var(--olive);color:var(--white);border:none;
  padding:12px;border-radius:var(--radius-btn);
  font-size:13px;font-weight:500;cursor:pointer;
  opacity:0;transform:translateY(8px);
  transition:all 0.3s;
}
.product-card:hover .product-quickadd{opacity:1;transform:translateY(0)}
.product-cat{font-size:11px;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-muted);margin-bottom:6px}
.product-name{font-size:15px;font-weight:500;color:var(--text);margin-bottom:6px;line-height:1.4}
.product-price{font-size:14px;color:var(--olive);font-weight:500}

/* ── STATS / SERVICES STRIP ── */
.stats{
  background:var(--olive);padding:48px var(--gutter);
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
}
.stat-item{text-align:center;padding:16px 0;border-left:1px solid rgba(255,255,255,0.1)}
.stat-item:first-child{border-left:none}
.stat-num{font-family:'Forum',serif;font-size:clamp(38px,4.6vw,58px);color:var(--white);line-height:1;margin-bottom:8px}
.stat-label{font-size:13px;color:rgba(255,255,255,0.6)}

/* ── FEATURED SPOTLIGHT ── */
.spotlight{
  background:var(--cream-dark);
  padding:90px var(--gutter);
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.spotlight-img{
  border-radius:var(--radius-img);overflow:hidden;aspect-ratio:5/4;
}
.spotlight-img img{width:100%;height:100%;object-fit:cover;display:block}
.spotlight-eyebrow{font-size:11px;letter-spacing:0.2em;text-transform:uppercase;color:var(--text-muted);margin-bottom:16px}
.spotlight-title{font-family:'Forum',serif;font-size:clamp(30px,3.4vw,46px);line-height:1.15;margin-bottom:18px}
.spotlight-title em{font-style:italic;color:var(--olive)}
.spotlight-text{font-size:15px;line-height:1.8;color:var(--text-muted);margin-bottom:28px;max-width:440px}
.spotlight-highlights{
  display:flex;flex-direction:column;gap:14px;margin-bottom:32px;
}
.spotlight-highlight{
  display:flex;align-items:center;gap:12px;font-size:14px;color:var(--text);
}
.spotlight-highlight svg{width:18px;height:18px;stroke:var(--olive);fill:none;stroke-width:1.8;flex-shrink:0}
.spotlight-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.spotlight-price{font-family:'Forum',serif;font-size:20px;color:var(--text)}
.spotlight-price span{font-family:'Inter',sans-serif;font-size:12px;color:var(--text-muted);display:block;margin-top:2px}

/* ── TESTIMONIALS ── */
.testimonials{background:var(--cream-dark);padding:90px var(--gutter);overflow:hidden}
.testi-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:44px}
.testi-nav-arrows{display:flex;gap:10px}
.arrow-btn{
  width:42px;height:42px;border-radius:50%;border:1px solid var(--border);
  background:var(--white);cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:16px;color:var(--text);transition:all 0.2s;
}
.arrow-btn:hover{background:var(--olive);color:var(--white);border-color:var(--olive)}
.testi-track-wrap{overflow:hidden}
.testi-track{display:flex;gap:24px;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1)}
.testi-card{
  flex-shrink:0;width:calc(33.333% - 16px);
  background:var(--white);border-radius:18px;padding:34px 30px;
}
.testi-stars{color:#C9A84C;font-size:13px;letter-spacing:2px;margin-bottom:18px}
.testi-quote{font-family:'Forum',serif;font-size:18px;font-style:italic;line-height:1.6;color:var(--text);margin-bottom:24px}
.testi-author{display:flex;align-items:center;gap:12px;padding-top:18px;border-top:1px solid var(--border)}
.testi-avatar{
  width:40px;height:40px;border-radius:50%;background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-family:'Forum',serif;font-size:16px;color:var(--olive);flex-shrink:0;
}
.testi-name{font-size:14px;font-weight:500;color:var(--text)}
.testi-loc{font-size:12px;color:var(--text-muted)}

/* ── BLOG / SKIN JOURNAL SLIDER ── */
.journal{padding:90px var(--gutter)}
.journal-row{
  display:flex;gap:26px;overflow-x:auto;
  scrollbar-width:none;padding-bottom:4px;
}
.journal-row::-webkit-scrollbar{display:none}
.journal-card{
  flex-shrink:0;width:300px;
  display:flex;flex-direction:column;
}
.journal-num{
  font-family:'Forum',serif;font-size:13px;color:var(--text-muted);
  margin-bottom:12px;
}
.journal-img{
  border-radius:16px;overflow:hidden;aspect-ratio:4/3;margin-bottom:16px;
}
.journal-img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.journal-card:hover .journal-img img{transform:scale(1.05)}
.journal-title{
  font-family:'Forum',serif;font-style:italic;font-size:19px;
  line-height:1.4;color:var(--text);text-decoration:none;
}

/* ── EMAIL CAPTURE ── */
.capture{
  background:var(--cream-dark);
  padding:56px var(--gutter);
  display:flex;align-items:center;justify-content:space-between;gap:40px;
  flex-wrap:wrap;
}
.capture-title{font-family:'Forum',serif;font-size:clamp(24px,2.6vw,32px);line-height:1.3;color:var(--text)}
.capture-title em{font-style:italic}
.capture-form{display:flex;gap:10px;flex:1;max-width:460px;min-width:280px}
.capture-input{
  flex:1;background:var(--white);border:1.5px solid var(--border);
  border-radius:var(--radius-btn);padding:14px 22px;font-size:14px;
  font-family:'Inter',sans-serif;outline:none;color:var(--text);
}
.capture-input::placeholder{color:var(--text-muted)}
.capture-input:focus{border-color:var(--olive)}
.capture-submit{
  background:var(--olive);color:var(--white);border:none;
  padding:14px 30px;border-radius:var(--radius-btn);
  font-size:13px;font-weight:500;letter-spacing:0.04em;
  cursor:pointer;white-space:nowrap;transition:background 0.2s;
}
.capture-submit:hover{background:var(--olive-mid)}

/* ── FOOTER ── */
footer{background:var(--olive);padding:72px var(--gutter) 36px}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:52px}
.footer-logo{font-family:'Forum',serif;font-size:28px;color:var(--white);margin-bottom:14px}
.footer-tagline{
  font-family:'Forum',serif;font-style:italic;font-size:15px;
  color:rgba(255,255,255,0.4);max-width:240px;margin-bottom:24px;line-height:1.6;
}
.footer-socials{display:flex;gap:10px}
.social-link{
  width:36px;height:36px;border:1px solid rgba(255,255,255,0.18);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.5);text-decoration:none;font-size:12px;transition:all 0.2s;
}
.social-link:hover{border-color:rgba(255,255,255,0.6);color:var(--white)}
.footer-col-title{
  font-size:11px;font-weight:500;letter-spacing:0.16em;text-transform:uppercase;
  color:rgba(255,255,255,0.35);margin-bottom:18px;
}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:14px;color:rgba(255,255,255,0.6);text-decoration:none;transition:color 0.2s}
.footer-links a:hover{color:var(--white)}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:28px;border-top:1px solid rgba(255,255,255,0.1);
}
.footer-copy{font-size:13px;color:rgba(255,255,255,0.3)}
.footer-legal{display:flex;gap:24px}
.footer-legal a{font-size:13px;color:rgba(255,255,255,0.3);text-decoration:none}
.footer-legal a:hover{color:rgba(255,255,255,0.6)}

/* ── RESPONSIVE ── */
@media(max-width:1280px){
  .nav-links{display:none}
  .nav-burger{display:block}
}
@media(max-width:1024px){
  :root{--gutter:28px}
  .nav-links{display:none}
  .nav-book-btn{display:none}
  .nav-burger{display:block}
  .hero{height:78vh}
  .purpose,.spotlight{grid-template-columns:1fr;gap:36px}
  .spotlight-img{aspect-ratio:16/10}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
  .stat-item{border-left:none;border-top:1px solid rgba(255,255,255,0.1)}
  .stat-item:first-child,.stat-item:nth-child(2){border-top:none}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px}
  .testi-card{width:calc(85vw - 32px)}
  .capture{flex-direction:column;align-items:flex-start}
  .quiz-teaser{margin:40px var(--gutter) 0;padding:32px}
  .quiz-left{flex-wrap:wrap}
}
@media(max-width:640px){
  :root{--gutter:18px}
  .announce{font-size:11px;padding:9px var(--gutter);text-align:center}
  nav{padding:16px var(--gutter)}
  .nav-logo{font-size:24px}
  .nav-icons{gap:14px}
  .hero{height:82vh}
  .hero-content{padding:0 var(--gutter) 56px}
  .hero-bottom{flex-direction:column;align-items:flex-start;gap:22px}
  .hero-right{text-align:left;align-items:flex-start;max-width:100%}
  .hero-headline{font-size:clamp(38px,11vw,56px)}
  .hero-sub{font-size:14px}

  .section-head{flex-direction:column;align-items:flex-start;gap:14px;margin-bottom:32px}
  .section-title{font-size:clamp(26px,7vw,34px)}

  .quiz-teaser{margin:32px var(--gutter) 0;flex-direction:column;align-items:flex-start;padding:28px 24px}
  .quiz-cta{width:100%}
  .quiz-left{gap:14px}
  .quiz-title{font-size:19px}

  .facials,.bestsellers,.purpose,.spotlight,.testimonials,.journal{padding:56px var(--gutter)}
  .facial-card{width:208px}
  .journal-card{width:240px}

  .purpose{padding:56px var(--gutter)}
  .purpose-statement{font-size:clamp(19px,5.4vw,24px)}

  .spotlight-actions{flex-direction:column;align-items:flex-start;gap:16px}
  .spotlight-actions .btn-pill-olive{width:100%;text-align:center}

  .product-grid{grid-template-columns:1fr 1fr;gap:12px}
  .product-name{font-size:13.5px}

  .stats{padding:32px var(--gutter);grid-template-columns:1fr 1fr;gap:20px 0}
  .stat-num{font-size:34px}

  .testi-header{flex-direction:column;align-items:flex-start;gap:18px}
  .testi-card{width:calc(92vw - 32px);padding:26px 22px}

  .capture{padding:40px var(--gutter)}
  .capture-form{flex-direction:column;max-width:100%}
  .capture-submit{width:100%}

  .footer-top{grid-template-columns:1fr;gap:36px}
  footer{padding:56px var(--gutter) 24px}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:14px}
}

/* ══════════════════════════════════════════════
   SKIN QUIZ PAGE
   ══════════════════════════════════════════════ */
.quiz-wrap{max-width:680px;margin:0 auto;padding:0 var(--gutter) 90px}
.quiz-progress{margin-bottom:40px}
.quiz-progress-bar{height:4px;background:var(--border);border-radius:4px;overflow:hidden;margin-bottom:10px}
.quiz-progress-fill{height:100%;background:var(--olive);border-radius:4px;width:33%;transition:width 0.35s ease}
#quizProgressLabel{font-size:12px;color:var(--text-muted)}
.quiz-question-title{font-family:'Forum',serif;font-size:clamp(22px,3vw,30px);margin-bottom:8px;text-align:center}
.quiz-question-sub{font-size:13.5px;color:var(--text-muted);text-align:center;margin-bottom:24px}
.quiz-options{display:grid;gap:12px;margin-top:28px}
.quiz-option{
  background:var(--white);border:1.5px solid var(--border);border-radius:14px;
  padding:18px 22px;font-size:15px;font-family:'Inter',sans-serif;color:var(--text);
  cursor:pointer;text-align:left;transition:all 0.18s;
}
.quiz-option:hover{border-color:var(--olive);background:var(--cream-dark)}
.quiz-option.selected{background:var(--olive);color:var(--white);border-color:var(--olive)}
.quiz-nav{margin-top:24px;text-align:center}
.quiz-back{
  background:none;border:none;color:var(--text-muted);font-size:13px;
  cursor:pointer;text-decoration:underline;
}
.quiz-loading{text-align:center;padding:48px 0}
.quiz-loading-spinner{
  width:36px;height:36px;border:3px solid var(--border);border-top-color:var(--olive);
  border-radius:50%;margin:0 auto 18px;animation:quizSpin 0.8s linear infinite;
}
@keyframes quizSpin{to{transform:rotate(360deg)}}
.quiz-loading p{font-size:14px;color:var(--text-muted)}

.quiz-results-title{font-family:'Forum',serif;font-size:clamp(26px,3.4vw,36px);text-align:center;margin-bottom:32px}
.quiz-results-title em{font-style:italic;color:var(--olive)}
.quiz-results-list{display:flex;flex-direction:column;gap:16px;margin-bottom:36px}
.quiz-result-card{
  display:flex;gap:18px;background:var(--white);border:1.5px solid var(--border);
  border-radius:16px;padding:18px;align-items:center;
}
.quiz-result-img{
  width:84px;height:84px;border-radius:12px;overflow:hidden;flex-shrink:0;
  background:var(--cream-dark);
}
.quiz-result-img img{width:100%;height:100%;object-fit:cover}
.quiz-result-body{flex:1;min-width:0}
.quiz-result-name{font-family:'Forum',serif;font-size:17px;color:var(--text);margin-bottom:4px}
.quiz-result-meta{display:flex;gap:10px;align-items:center;margin-bottom:6px;flex-wrap:wrap}
.quiz-result-price{font-size:13px;color:var(--olive);font-weight:500}
.quiz-result-duration{font-size:12px;color:var(--text-muted)}
.quiz-result-summary{font-size:13px;color:var(--text-muted);line-height:1.6}
.quiz-result-actions{display:flex;flex-direction:column;gap:8px;flex-shrink:0}
.quiz-result-book{
  background:var(--olive);color:var(--white);border:none;border-radius:var(--radius-btn);
  padding:10px 20px;font-size:13px;font-weight:500;text-decoration:none;text-align:center;
  white-space:nowrap;transition:background 0.2s;
}
.quiz-result-book:hover{background:var(--olive-mid)}
.quiz-result-view{font-size:12px;color:var(--text-muted);text-align:center;text-decoration:underline}

.quiz-consultation-cta{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  background:var(--cream-dark);border-radius:16px;padding:24px;margin-bottom:24px;
  flex-wrap:wrap;
}
.quiz-consultation-cta strong{font-size:15px;color:var(--text);display:block;margin-bottom:4px}
.quiz-consultation-cta p{font-size:13px;color:var(--text-muted);margin:0;max-width:340px}
.quiz-retake{
  display:block;margin:0 auto;background:none;border:none;color:var(--text-muted);
  font-size:13px;text-decoration:underline;cursor:pointer;
}

/* ══════════════════════════════════════════════
   INNER PAGE TEMPLATES — shared page header
   ══════════════════════════════════════════════ */
.page-header{
  padding:64px var(--gutter) 48px;
  text-align:center;
}
.page-header-eyebrow{
  font-size:11px;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:14px;
}
.page-header-title{
  font-family:'Forum',serif;font-size:clamp(34px,4.5vw,58px);
  line-height:1.1;color:var(--text);
}
.page-header-title em{font-style:italic;color:var(--olive)}
.page-header-sub{
  font-size:15px;color:var(--text-muted);max-width:560px;
  margin:16px auto 0;line-height:1.7;
}
.page-content-wrap{padding:0 var(--gutter) 90px;max-width:1400px;margin:0 auto}

/* ══════════════════════════════════════════════
   SERVICES / FACIALS ARCHIVE PAGE
   ══════════════════════════════════════════════ */
.facials-archive-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
}
.facials-archive-card{
  background:var(--white);border-radius:18px;overflow:hidden;
  border:1px solid var(--border);transition:border-color 0.25s;
}
.facials-archive-card:hover{border-color:var(--olive)}
.facials-archive-img{aspect-ratio:4/3.2;overflow:hidden}
.facials-archive-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1)}
.facials-archive-card:hover .facials-archive-img img{transform:scale(1.05)}
.facials-archive-info{padding:22px}
.facials-archive-name{font-family:'Forum',serif;font-size:19px;color:var(--text);margin-bottom:10px}
.facials-archive-summary{font-size:13.5px;color:var(--text-muted);line-height:1.7;margin-bottom:16px}
.facials-archive-meta{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.facials-archive-price{font-family:'Forum',serif;font-size:18px;color:var(--olive)}
.facials-archive-duration{font-size:12px;color:var(--text-muted);display:flex;align-items:center;gap:5px}
.facials-archive-duration svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:1.6}

/* Single Facial page */
.single-facial-wrap{display:grid;grid-template-columns:1fr 1fr;gap:64px;padding:64px var(--gutter) 90px;align-items:start}
.single-facial-img{border-radius:var(--radius-img);overflow:hidden;aspect-ratio:4/5}
.single-facial-img img{width:100%;height:100%;object-fit:cover;display:block}
.single-facial-title{font-family:'Forum',serif;font-size:clamp(30px,3.6vw,44px);margin-bottom:16px}
.single-facial-meta-row{display:flex;align-items:center;gap:24px;margin-bottom:24px}
.single-facial-price{font-family:'Forum',serif;font-size:24px;color:var(--olive)}
.single-facial-duration{font-size:14px;color:var(--text-muted);display:flex;align-items:center;gap:6px}
.single-facial-duration svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.6}
.single-facial-content{font-size:15px;line-height:1.8;color:var(--text-muted);margin-bottom:32px}
.single-facial-content p{margin-bottom:16px}

/* ══════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════ */
.about-story{
  display:grid;grid-template-columns:0.85fr 1.4fr;gap:72px;align-items:center;
  padding:80px var(--gutter);background:var(--cream-dark);
}
.about-story-img{border-radius:var(--radius-img);overflow:hidden;aspect-ratio:4/5}
.about-story-img img{width:100%;height:100%;object-fit:cover;display:block}
.about-values{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;padding:80px var(--gutter)}
.about-value-item{text-align:left}
.about-value-icon{width:48px;height:48px;border-radius:50%;background:var(--cream-dark);display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.about-value-icon svg{width:22px;height:22px;stroke:var(--olive);fill:none;stroke-width:1.6}
.about-value-title{font-family:'Forum',serif;font-size:19px;margin-bottom:10px}
.about-value-text{font-size:14px;color:var(--text-muted);line-height:1.75}
.about-team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:0 var(--gutter) 90px}
.about-team-card{text-align:center}
.about-team-img{border-radius:50%;overflow:hidden;width:140px;height:140px;margin:0 auto 16px}
.about-team-img img{width:100%;height:100%;object-fit:cover}
.about-team-name{font-family:'Forum',serif;font-size:16px;margin-bottom:4px}
.about-team-role{font-size:12px;color:var(--text-muted)}

/* ══════════════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════════════ */
.gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
  grid-auto-rows:220px;
}
.gallery-item{border-radius:14px;overflow:hidden;position:relative;cursor:pointer}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1)}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-item.tall{grid-row:span 2}
.gallery-item.wide{grid-column:span 2}

/* ══════════════════════════════════════════════
   BOOKING PAGE — interactive app
   ══════════════════════════════════════════════ */
.booking-wrap{
  display:grid;grid-template-columns:1fr 1fr;gap:72px;
  padding:64px var(--gutter) 90px;align-items:start;
}
.booking-img{border-radius:var(--radius-img);overflow:hidden;aspect-ratio:4/5;position:sticky;top:100px}
.booking-img img{width:100%;height:100%;object-fit:cover;display:block}
.booking-form-title{font-family:'Forum',serif;font-size:clamp(28px,3vw,38px);margin-bottom:8px}
.booking-form-sub{font-size:14px;color:var(--text-muted);margin-bottom:32px}

.booking-banner{
  margin:0 var(--gutter);margin-top:24px;
  display:flex;align-items:flex-start;gap:14px;
  padding:20px 24px;border-radius:14px;
}
.booking-banner.success{background:#E8F0E4;color:#2C3027}
.booking-banner.success svg{width:22px;height:22px;stroke:#2C3027;fill:none;stroke-width:2;flex-shrink:0;margin-top:2px}
.booking-banner.failed{background:#FAEBE8;color:#7A2E1E}
.booking-banner strong{display:block;font-size:15px;margin-bottom:4px}
.booking-banner p{font-size:13.5px;margin:0;opacity:0.85}

.booking-step{margin-bottom:24px}
.booking-step-label{
  display:block;font-size:13px;font-weight:500;color:var(--text);margin-bottom:10px;
}
.booking-app-select{
  width:100%;background:var(--white);border:1.5px solid var(--border);
  border-radius:var(--radius-field);padding:13px 16px;font-size:14px;
  font-family:'Inter',sans-serif;color:var(--text);outline:none;transition:border-color 0.2s;
}
.booking-app-select:focus{border-color:var(--olive)}

.booking-calendar{
  background:var(--white);border:1.5px solid var(--border);
  border-radius:14px;padding:18px;
}
.booking-calendar-header{
  display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;
}
.booking-calendar-month{font-size:14px;font-weight:500;color:var(--text);font-family:'Forum',serif}
.booking-calendar-nav{
  width:32px;height:32px;border-radius:50%;border:1px solid var(--border);
  background:var(--white);cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:14px;color:var(--text);transition:all 0.2s;
}
.booking-calendar-nav:hover:not(:disabled){background:var(--cream-dark)}
.booking-calendar-nav:disabled{opacity:0.3;cursor:not-allowed}
.booking-calendar-weekdays{
  display:grid;grid-template-columns:repeat(7,1fr);gap:4px;
  margin-bottom:6px;
}
.booking-calendar-weekdays span{
  text-align:center;font-size:11px;color:var(--text-muted);font-weight:500;
}
.booking-calendar-grid{
  display:grid;grid-template-columns:repeat(7,1fr);gap:4px;
  min-height:180px;
}
.booking-cal-day{
  aspect-ratio:1;display:flex;align-items:center;justify-content:center;
  border-radius:8px;font-size:13px;cursor:pointer;border:1.5px solid transparent;
  background:transparent;color:var(--text);position:relative;transition:all 0.15s;
}
.booking-cal-day.empty{cursor:default}
.booking-cal-day.past,.booking-cal-day.closed{color:var(--border);cursor:not-allowed}
.booking-cal-day.open{background:#EAF1E6}
.booking-cal-day.open:hover{border-color:var(--olive)}
.booking-cal-day.limited{background:#FBF0DD}
.booking-cal-day.limited:hover{border-color:#C9A227}
.booking-cal-day.full{background:#F7E9E5;color:#B0654E;cursor:not-allowed}
.booking-cal-day.selected{background:var(--olive) !important;color:var(--white) !important;border-color:var(--olive)}
.booking-cal-day.today::after{
  content:'';position:absolute;bottom:4px;left:50%;transform:translateX(-50%);
  width:4px;height:4px;border-radius:50%;background:var(--olive);
}
.booking-cal-day.selected.today::after{background:var(--white)}
.booking-calendar-legend{
  display:flex;gap:16px;margin-top:14px;padding-top:14px;
  border-top:1px solid var(--border);flex-wrap:wrap;
}
.booking-calendar-legend span{font-size:11.5px;color:var(--text-muted);display:flex;align-items:center;gap:6px}
.legend-dot{width:9px;height:9px;border-radius:50%;display:inline-block}
.legend-dot.open{background:#EAF1E6;border:1px solid #8FAF82}
.legend-dot.limited{background:#FBF0DD;border:1px solid #C9A227}
.legend-dot.full{background:#F7E9E5;border:1px solid #B0654E}
.booking-slots-count{font-size:12px;color:var(--text-muted);font-weight:400}

.booking-slots-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(90px,1fr));gap:10px;
}
.booking-slots-hint{font-size:13px;color:var(--text-muted);grid-column:1/-1}
.booking-slot-btn{
  background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-field);
  padding:11px 8px;font-size:13px;font-family:'Inter',sans-serif;color:var(--text);
  cursor:pointer;transition:all 0.18s;text-align:center;
}
.booking-slot-btn:hover{border-color:var(--olive)}
.booking-slot-btn.selected{background:var(--olive);color:var(--white);border-color:var(--olive)}
.booking-slot-btn:disabled{opacity:0.35;cursor:not-allowed}

.booking-field{grid-column:span 1}
.booking-field.full{grid-column:span 2}
.booking-field input,.booking-field select,.booking-field textarea{
  width:100%;background:var(--white);border:1.5px solid var(--border);
  border-radius:var(--radius-field);padding:13px 16px;font-size:14px;
  font-family:'Inter',sans-serif;color:var(--text);outline:none;transition:border-color 0.2s;
}
.booking-field input:focus,.booking-field select:focus,.booking-field textarea:focus{border-color:var(--olive)}
.booking-field textarea{resize:none;height:90px}
.booking-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:0}

.booking-summary{
  background:var(--cream-dark);border-radius:14px;padding:18px 20px;margin-bottom:20px;
  font-size:13.5px;line-height:1.8;color:var(--text);
}
.booking-summary strong{color:var(--olive)}

.booking-error{
  background:#FAEBE8;color:#7A2E1E;border-radius:10px;
  padding:14px 18px;margin-bottom:20px;font-size:13.5px;
}

.booking-submit-btn{
  width:100%;padding:16px;background:var(--olive);color:var(--white);
  border:none;border-radius:var(--radius-btn);font-size:15px;font-weight:500;
  cursor:pointer;transition:background 0.2s;
}
.booking-submit-btn:hover:not(:disabled){background:var(--olive-mid)}
.booking-submit-btn:disabled{background:var(--border);color:var(--text-muted);cursor:not-allowed}

/* ══════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════ */
.contact-wrap{display:grid;grid-template-columns:1fr 1fr;gap:64px;padding:64px var(--gutter) 90px}
.contact-info-item{display:flex;gap:16px;margin-bottom:28px}
.contact-info-icon{width:44px;height:44px;border-radius:50%;background:var(--cream-dark);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-icon svg{width:20px;height:20px;stroke:var(--olive);fill:none;stroke-width:1.6}
.contact-info-label{font-size:12px;color:var(--text-muted);margin-bottom:4px}
.contact-info-value{font-size:15px;color:var(--text);font-weight:500}
.contact-map{border-radius:var(--radius-img);overflow:hidden;aspect-ratio:16/10;margin-top:24px}
.contact-map iframe{width:100%;height:100%;border:0;display:block}

/* ══════════════════════════════════════════════
   BLOG ARCHIVE & SINGLE POST
   ══════════════════════════════════════════════ */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;padding:0 var(--gutter) 90px}
.blog-card{display:flex;flex-direction:column}
.blog-card-img{border-radius:16px;overflow:hidden;aspect-ratio:4/3;margin-bottom:16px}
.blog-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1)}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-meta{font-size:12px;color:var(--text-muted);margin-bottom:8px}
.blog-card-title{font-family:'Forum',serif;font-style:italic;font-size:19px;line-height:1.4;color:var(--text);text-decoration:none;margin-bottom:8px}
.blog-card-excerpt{font-size:13.5px;color:var(--text-muted);line-height:1.7}
.blog-pagination{display:flex;justify-content:center;gap:10px;padding:0 var(--gutter) 90px}
.blog-pagination a, .blog-pagination span{
  width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--border);font-size:13px;text-decoration:none;color:var(--text);
}
.blog-pagination .current{background:var(--olive);color:var(--white);border-color:var(--olive)}

.single-post-wrap{max-width:740px;margin:0 auto;padding:64px var(--gutter) 90px}
.single-post-title{font-family:'Forum',serif;font-size:clamp(30px,4vw,46px);line-height:1.2;margin-bottom:20px}
.single-post-meta{font-size:13px;color:var(--text-muted);margin-bottom:32px}
.single-post-img{border-radius:var(--radius-img);overflow:hidden;aspect-ratio:16/9;margin-bottom:40px}
.single-post-img img{width:100%;height:100%;object-fit:cover;display:block}
.single-post-content{font-size:16px;line-height:1.85;color:var(--text)}
.single-post-content p{margin-bottom:22px}
.single-post-content h2{font-family:'Forum',serif;font-size:26px;margin:36px 0 16px}
.single-post-content h3{font-family:'Forum',serif;font-size:21px;margin:28px 0 14px}
.single-post-content img{border-radius:14px;margin:24px 0}
.single-post-content a{color:var(--olive);text-decoration-color:var(--border)}
.single-post-content ul,.single-post-content ol{margin:0 0 22px 20px}

/* ══════════════════════════════════════════════
   WOOCOMMERCE — SHOP ARCHIVE
   ══════════════════════════════════════════════ */
.mobecca-shop-wrap{padding:0 var(--gutter) 90px}
.mobecca-shop-inner ul.products{
  display:grid !important;grid-template-columns:repeat(4,1fr);gap:24px;
  list-style:none;padding:0;margin:0;
}
.mobecca-shop-inner ul.products li.product{
  display:flex;flex-direction:column;
}
.mobecca-shop-inner ul.products li.product a img{
  border-radius:var(--radius-img);aspect-ratio:4/5;object-fit:cover;margin-bottom:16px;width:100%;
}
.mobecca-shop-inner ul.products li.product .woocommerce-loop-product__title{
  font-family:'Inter',sans-serif;font-size:15px;font-weight:500;color:var(--text);margin-bottom:6px;
}
.mobecca-shop-inner ul.products li.product .price{
  font-family:'Forum',serif;font-size:16px;color:var(--olive);
}
.mobecca-shop-inner ul.products li.product .button{
  margin-top:12px;background:var(--olive);color:var(--white);border:none;
  padding:11px;border-radius:var(--radius-btn);font-size:13px;font-weight:500;
  text-align:center;text-decoration:none;display:block;transition:background 0.2s;
}
.mobecca-shop-inner ul.products li.product .button:hover{background:var(--olive-mid)}
.woocommerce-pagination ul{display:flex;gap:10px;list-style:none;justify-content:center;padding:0}
.woocommerce-pagination ul li a, .woocommerce-pagination ul li span{
  width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--border);text-decoration:none;color:var(--text);font-size:13px;
}
.woocommerce-pagination ul li span.current{background:var(--olive);color:var(--white)}

/* WooCommerce — Single Product */
.single-product div.product{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;padding:64px var(--gutter) 90px;
}
.single-product div.images img{border-radius:var(--radius-img);object-fit:cover}
.single-product .product_title{font-family:'Forum',serif;font-size:clamp(28px,3.4vw,42px);margin-bottom:14px}
.single-product .price{font-family:'Forum',serif;font-size:22px;color:var(--olive);margin-bottom:20px;display:block}
.single-product .woocommerce-product-details__short-description{font-size:15px;color:var(--text-muted);line-height:1.8;margin-bottom:28px}
.single-product form.cart{display:flex;gap:14px;align-items:center;margin-bottom:32px}
.single-product .quantity input{
  width:64px;text-align:center;border:1.5px solid var(--border);border-radius:var(--radius-field);
  padding:13px;font-size:14px;
}
.single-product button.single_add_to_cart_button{
  background:var(--olive);color:var(--white);border:none;
  padding:14px 36px;border-radius:var(--radius-btn);font-size:14px;font-weight:500;
  cursor:pointer;transition:background 0.2s;
}
.single-product button.single_add_to_cart_button:hover{background:var(--olive-mid)}
.mobecca-product-meta-spacer{height:8px}

/* WooCommerce — Cart & Checkout */
.woocommerce-cart .page-content-wrap,
.woocommerce-checkout .page-content-wrap{max-width:1000px}
table.shop_table{width:100%;border-collapse:collapse;margin-bottom:32px}
table.shop_table th{
  text-align:left;font-size:12px;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--text-muted);padding:12px 16px;border-bottom:1px solid var(--border);
}
table.shop_table td{padding:16px;border-bottom:1px solid var(--border);font-size:14px}
table.shop_table img{border-radius:10px;width:64px;height:64px;object-fit:cover}
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea{
  width:100%;background:var(--white);border:1.5px solid var(--border);
  border-radius:var(--radius-field);padding:13px 16px;font-size:14px;font-family:'Inter',sans-serif;
}
#place_order{
  background:var(--olive);color:var(--white);border:none;
  padding:16px 36px;border-radius:var(--radius-btn);font-size:15px;font-weight:500;
  cursor:pointer;width:100%;
}

/* ══════════════════════════════════════════════
   INNER-PAGE RESPONSIVE
   ══════════════════════════════════════════════ */
@media(max-width:1024px){
  .facials-archive-grid{grid-template-columns:repeat(2,1fr)}
  .single-facial-wrap,.about-story,.booking-wrap,.contact-wrap{grid-template-columns:1fr;gap:40px}
  .about-values{grid-template-columns:1fr 1fr}
  .about-team-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px}
  .blog-grid{grid-template-columns:1fr 1fr}
  .mobecca-shop-inner ul.products{grid-template-columns:repeat(2,1fr) !important}
  .single-product div.product{grid-template-columns:1fr}
  .booking-img{position:relative;top:0}
}
@media(max-width:640px){
  .page-header{padding:48px var(--gutter) 36px}
  .page-content-wrap{padding:0 var(--gutter) 64px}
  .quiz-wrap{padding:0 var(--gutter) 64px}
  .quiz-result-card{flex-direction:column;align-items:flex-start;text-align:left}
  .quiz-result-img{width:100%;height:140px}
  .quiz-result-actions{flex-direction:row;width:100%}
  .quiz-result-book{flex:1}
  .quiz-consultation-cta{flex-direction:column;align-items:flex-start}
  .quiz-consultation-cta .btn-pill-olive{width:100%;text-align:center}
  .facials-archive-grid{grid-template-columns:1fr}
  .about-values{grid-template-columns:1fr}
  .about-team-grid{grid-template-columns:1fr 1fr;gap:18px}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:140px;gap:10px}
  .gallery-item.wide{grid-column:span 2}
  .blog-grid{grid-template-columns:1fr;gap:28px;padding:0 var(--gutter) 64px}
  .booking-form-grid{grid-template-columns:1fr}
  .booking-field.full{grid-column:span 1}
  .booking-slots-grid{grid-template-columns:repeat(auto-fill,minmax(76px,1fr))}
  .booking-calendar{padding:14px}
  .booking-cal-day{font-size:12px}
  .booking-calendar-legend{gap:10px}
  .booking-calendar-legend span{font-size:10.5px}
  .booking-banner{margin:24px 18px 0}
  .mobecca-shop-inner ul.products{grid-template-columns:1fr 1fr !important;gap:14px}
  .single-product form.cart{flex-direction:column;align-items:stretch}
  .single-product button.single_add_to_cart_button{width:100%}
}
