:root {
  /* Brand colors — deep navy/midnight for men's health */
  --navy:         #1A2744;
  --navy-mid:     #243566;
  --navy-light:   #2E4280;
  --cream:        #F4F1EC;
  --cream-dark:   #E6E1D6;
  --copper:       #B8692A;
  --copper-light: #D4884A;
  --charcoal:     #1C1C1C;
  --charcoal-mid: #3A3A3A;
  --white:        #FFFFFF;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --text-body:    #4A4A4A;
  --text-muted:   #888888;
  --border:       rgba(26, 39, 68, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(26,39,68,0.08);
  --shadow-md: 0 8px 32px rgba(26,39,68,0.12);
  --shadow-lg: 0 20px 60px rgba(28,28,28,0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: #EEF0F6;
  min-height: 100vh;
}

/* ===================== QUIZ PAGE ===================== */
#quiz-page {
  min-height: 100vh;
  background: #EEF0F6;
  padding-top: 60px;
  padding-bottom: 110px;
}
.quiz-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 20px;
}
.quiz-site-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-mid);
  letter-spacing: .05em;
  margin-bottom: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quiz-site-title span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
}

/* ── inputs ── */
.gq-input {
  width: 100%; padding: 15px 17px; border: none; border-radius: 12px;
  background: #E2E6EE; font-family: var(--font-body); font-size: .95rem;
  color: #1A2744; outline: none; margin-bottom: 11px;
  transition: box-shadow .2s;
}
.gq-input:focus { background: #fff; box-shadow: inset 0 0 0 2px var(--navy-mid); }
.gq-input::placeholder { color: #9AACCF; }

/* ── big button ── */
.gq-next-btn {
  width: 100%; padding: 17px; border: none; border-radius: 50px; background: var(--navy);
  color: #fff; font-family: var(--font-body); font-size: .97rem; font-weight: 600;
  cursor: pointer; margin-top: 18px; transition: background .2s, transform .15s;
}
.gq-next-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── error ── */
.gq-error {
  background: #FFEBEE; color: #c62828; border: 1px solid #FFCDD2; border-radius: 8px;
  padding: 10px 14px; font-size: .84rem; margin-bottom: 11px; display: none;
}

/* ── section tabs ── */
.section-tabs-bar { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.sec-tab {
  padding: 9px 16px; border-radius: 10px; border: 1.5px solid #C8D0E0; background: #DDE2EE;
  font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--navy-mid); white-space: nowrap;
}
.sec-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; box-shadow: 0 3px 12px rgba(26,39,68,.3); }
.sec-tab.done { background: #E8F5E9; border-color: #81C784; color: #2E7D32; }
.sec-prog-line { height: 3px; background: #C8D0E0; border-radius: 2px; margin-bottom: 22px; overflow: hidden; }
.sec-prog-fill { height: 100%; background: var(--copper); border-radius: 2px; transition: width .4s ease; }

/* ── question card ── */
.gq-card {
  background: #fff; border-radius: 18px; padding: 30px 26px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); margin-bottom: 18px;
  animation: slideUp .35s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: translateY(0) } }
.gq-q-label { font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--copper); margin-bottom: 9px; }
.gq-q-text { font-family: var(--font-display); font-size: 1.22rem; color: var(--navy); line-height: 1.4; margin-bottom: 20px; }

/* options */
.gq-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; border: 1.5px solid #E0E6F0; border-radius: 13px;
  cursor: pointer; margin-bottom: 9px; background: #F8F9FC;
  transition: all .2s; font-size: .91rem; color: #1A2744; font-weight: 500;
}
.gq-option:hover { border-color: var(--navy-mid); background: #EEF2FC; }
.gq-option.selected { border-color: var(--navy); background: #EAF0FD; color: var(--navy); }
.gq-checkbox {
  width: 22px; height: 22px; border: 2px solid #B0BDD8; border-radius: 5px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #fff; transition: all .2s;
}
.gq-option.selected .gq-checkbox { background: var(--navy); border-color: var(--navy); }
.gq-chk-mark { display: none; color: #fff; font-size: .73rem; font-weight: 700; }
.gq-option.selected .gq-chk-mark { display: block; }
.gq-textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid #E0E6F0; border-radius: 12px;
  font-family: var(--font-body); font-size: .91rem; color: var(--navy); background: #F8F9FC;
  outline: none; resize: vertical; min-height: 90px; transition: border-color .2s;
}
.gq-textarea:focus { border-color: var(--navy-mid); background: #fff; }

/* nav */
.gq-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.gq-back-btn {
  display: flex; align-items: center; gap: 6px; background: none; border: none;
  font-family: var(--font-body); font-size: .88rem; color: #888; cursor: pointer; padding: 6px 0; transition: color .2s;
}
.gq-back-btn:hover { color: var(--navy); }
.gq-next-inline {
  padding: 13px 32px; border: none; border-radius: 50px; background: var(--navy); color: #fff;
  font-family: var(--font-body); font-size: .93rem; font-weight: 600; cursor: pointer;
  transition: background .2s, transform .15s;
}
.gq-next-inline:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* spinner */
.gq-spinner { text-align: center; padding: 60px 20px; }
.gq-spin {
  width: 42px; height: 42px; border: 3px solid #DDE2EE; border-top-color: var(--navy);
  border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg) } }

/* ===================== INFO STEP ===================== */
.info-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(26,39,68,.08); border-radius: 100px;
  padding: 6px 14px; font-size: .75rem; font-weight: 600;
  color: var(--navy-mid); margin-bottom: 16px; border: 1px solid rgba(26,39,68,.12);
}
.info-hero-badge svg { flex-shrink: 0; }
.confidential-notice {
  background: linear-gradient(135deg, #EDF0F8, #E8EDF6);
  border: 1.5px solid rgba(26,39,68,.15);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 10px;
}
.confidential-notice .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.confidential-notice p { font-size: .8rem; color: var(--navy-mid); line-height: 1.5; }
.confidential-notice p strong { color: var(--navy); }

/* ===================== RESULT PAGE ===================== */
#step-result { animation: slideUp .5s ease; }

.res-header {
  background: #fff; border-radius: 18px; padding: 26px 22px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07); margin-bottom: 14px;
}
.res-greeting { font-size: .82rem; color: #888; margin-bottom: 4px; }
.res-name-big { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.res-you-exp { font-size: .82rem; color: #888; margin-bottom: 8px; }
.res-conditions { font-family: var(--font-display); font-size: 1.1rem; color: var(--copper); font-weight: 700; margin-bottom: 16px; line-height: 1.4; }

.relief-bar-wrap { background: var(--navy); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.relief-pct { color: var(--gold-light); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; white-space: nowrap; }
.relief-bar-inner { flex: 1; height: 8px; background: rgba(255,255,255,.15); border-radius: 4px; overflow: hidden; }
.relief-bar-fill { height: 100%; background: linear-gradient(90deg, var(--copper), var(--gold)); border-radius: 4px; transition: width 1.2s ease; }
.relief-label { color: #fff; font-size: .78rem; opacity: .7; white-space: nowrap; }
.relief-cta-btn {
  background: var(--copper); color: #fff; border: none; border-radius: 50px;
  padding: 8px 18px; font-size: .78rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  font-family: var(--font-body); transition: background .2s;
}
.relief-cta-btn:hover { background: #9B5520; }

.res-section-title {
  font-family: var(--font-display); font-size: 1rem; color: var(--navy);
  font-weight: 700; margin: 18px 0 10px;
}
.res-conditions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.res-cond-card {
  background: #fff; border-radius: 14px; padding: 16px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); display: flex; align-items: flex-start; gap: 10px;
}
.res-cond-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.res-cond-name { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.res-cond-desc { font-size: .72rem; color: #888; line-height: 1.4; }

/* timeline card */
.no-dep-card {
  background: var(--navy); border-radius: 18px; padding: 22px 20px; margin-bottom: 14px; color: #fff;
}
.no-dep-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.no-dep-steps { list-style: none; padding: 0; margin: 0 0 18px; }
.no-dep-steps li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .82rem; line-height: 1.4; }
.no-dep-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.no-dep-timeline { display: flex; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; }
.dep-time-item { font-size: .75rem; color: rgba(255,255,255,.6); }
.dep-time-item strong { color: var(--gold-light); display: block; font-size: .8rem; }

/* kit card */
.kit-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); margin-bottom: 14px;
}
.kit-header { padding: 18px 20px 14px; border-bottom: 1px solid #EEF0F6; }
.kit-header h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 2px; }
.kit-header h3 span { color: var(--copper); }
.kit-item { display: flex; align-items: center; gap: 12px; padding: 13px 20px; border-bottom: 1px solid #F0F2F8; }
.kit-item:last-child { border-bottom: none; }
.kit-dot { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.kit-item-name { flex: 1; font-size: .85rem; font-weight: 600; color: var(--navy); }
.kit-item-sub { font-size: .73rem; color: #888; }
.kit-item-price { font-size: .82rem; font-weight: 700; color: var(--copper); }
.kit-item-free { font-size: .72rem; background: #E8F5E9; color: #2E7D32; padding: 2px 8px; border-radius: 20px; font-weight: 600; }

/* compare */
.compare-card { background: var(--navy); border-radius: 18px; padding: 22px 20px; margin-bottom: 14px; }
.compare-card h3 { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 16px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { font-size: .75rem; color: rgba(255,255,255,.5); padding: 6px 8px; text-align: left; }
.compare-table th:nth-child(2) { color: var(--gold-light); text-align: center; }
.compare-table th:nth-child(3) { text-align: center; }
.compare-table td { font-size: .8rem; color: rgba(255,255,255,.8); padding: 8px 8px; border-top: 1px solid rgba(255,255,255,.07); }
.compare-table td:nth-child(2), .compare-table td:nth-child(3) { text-align: center; }
.chk-yes { color: #4CAF50; font-size: 1rem; }
.chk-no { color: rgba(255,255,255,.3); font-size: 1rem; }

/* testimonials */
.testimonials-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 14px; scrollbar-width: none; }
.testimonials-row::-webkit-scrollbar { display: none; }
.testi-card { min-width: 200px; background: #fff; border-radius: 14px; padding: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.06); flex-shrink: 0; }
.testi-name { font-size: .8rem; font-weight: 700; color: var(--navy); }
.testi-badge { font-size: .66rem; color: #25D366; font-weight: 600; }
.testi-stars { color: #FFB300; font-size: .75rem; margin: 3px 0; }
.testi-text { font-size: .75rem; color: #666; line-height: 1.5; }
.testi-before-after { display: flex; gap: 6px; margin-top: 8px; }
.tba-pill { font-size: .63rem; padding: 3px 8px; border-radius: 20px; }
.tba-before { background: #FFEBEE; color: #c62828; }
.tba-after { background: #E8F5E9; color: #2E7D32; }

/* FAQ */
.faq-card { background: #fff; border-radius: 18px; overflow: hidden; margin-bottom: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.faq-title { padding: 16px 20px 12px; font-family: var(--font-display); font-size: 1rem; color: var(--navy); font-weight: 700; }
.faq-item { border-top: 1px solid #EEF0F6; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 14px 20px;
  font-family: var(--font-body); font-size: .84rem; color: #1A2744; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 8px; font-weight: 500;
}
.faq-q span { flex: 1; }
.faq-chevron { transition: transform .25s; flex-shrink: 0; color: var(--copper); }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 14px; font-size: .8rem; color: #666; line-height: 1.6; }
.faq-a.open { display: block; }

/* ===================== FIXED BOTTOM BAR ===================== */
#buy-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  padding: 12px 20px;
  display: none;
  z-index: 9999;
}
.buy-bar-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
}
.buy-bar-price { flex: 1; }
.buy-bar-mrp { font-size: .78rem; color: #aaa; text-decoration: line-through; }
.buy-bar-actual { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.buy-bar-inclusive { font-size: .68rem; color: #888; }
.buy-bar-plan { font-size: .73rem; color: var(--copper); font-weight: 600; }
.btn-talk {
  padding: 12px 16px; border-radius: 50px; border: 2px solid #C8D0E0;
  background: #fff; color: var(--navy); font-family: var(--font-body); font-size: .82rem;
  font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .2s; flex-shrink: 0;
}
.btn-talk:hover { border-color: var(--navy); }
.btn-buy {
  padding: 12px 20px; border-radius: 50px; border: none; background: var(--navy);
  color: #fff; font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.btn-buy:hover { background: var(--navy-mid); }

/* ===================== OTP MODAL ===================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 10000;
  display: none; align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-sheet {
  background: #fff; border-radius: 24px 24px 0 0;
  padding: 28px 24px 36px; width: 100%; max-width: 640px;
  animation: sheetUp .35s ease;
}
@keyframes sheetUp { from { transform: translateY(100%) } to { transform: translateY(0) } }
.modal-close { float: right; background: none; border: none; font-size: 1.2rem; color: #aaa; cursor: pointer; margin-top: -4px; }
.modal-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.modal-sub { font-size: .82rem; color: #888; margin-bottom: 20px; }
.modal-input {
  width: 100%; padding: 15px 17px; border: 1.5px solid #DDE2EE; border-radius: 12px;
  font-family: var(--font-body); font-size: .97rem; color: var(--navy); outline: none; margin-bottom: 12px;
  transition: border-color .2s;
}
.modal-input:focus { border-color: var(--navy-mid); }
.modal-btn {
  width: 100%; padding: 16px; border: none; border-radius: 50px; background: var(--navy);
  color: #fff; font-family: var(--font-body); font-size: .97rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.modal-btn:hover { background: var(--navy-mid); }
.modal-btn:disabled { background: #ccc; cursor: not-allowed; }
.otp-row { display: flex; gap: 12px; margin-bottom: 16px; justify-content: center; }
.otp-box {
  width: 64px; height: 64px; border: 2px solid #DDE2EE; border-radius: 14px;
  text-align: center; font-size: 1.6rem; font-weight: 700; color: var(--navy);
  font-family: var(--font-body); outline: none; transition: all .2s;
  background: #F8F9FC; flex-shrink: 0;
}
.otp-box:focus { border-color: var(--navy-mid); background: #EEF2FC; box-shadow: 0 0 0 3px rgba(26,39,68,.12); }
.otp-box.filled { border-color: var(--navy); background: #EEF2FC; }
.otp-resend { font-size: .82rem; color: var(--copper); cursor: pointer; text-decoration: underline; background: none; border: none; font-family: var(--font-body); }

@media(max-width:480px){
  .res-conditions-grid { grid-template-columns: 1fr; }
  .buy-bar-inner { gap: 8px; }
  .btn-talk, .btn-buy { padding: 11px 13px; font-size: .78rem; }
}
@keyframes shake { 0%,100%{transform:translateX(0)}20%,60%{transform:translateX(-8px)}40%,80%{transform:translateX(8px)} }

/* ── TESTIMONIALS CAROUSEL ── */
.testi-carousel-wrap{position:relative;margin-bottom:6px;}
.testi-track-outer{overflow:hidden;border-radius:16px;width:100%;}
.testi-track{display:flex;transition:transform .45s cubic-bezier(.4,0,.2,1);will-change:transform;gap:0;}
.testi-card{
  min-width:100%;width:100%;flex-shrink:0;box-sizing:border-box;
  background:#fff;border-radius:16px;padding:22px 20px 18px;
  box-shadow:0 4px 20px rgba(26,39,68,.10);
  border-top:3px solid var(--copper,#B8692A);
}
.testi-header{display:flex;align-items:center;gap:12px;margin-bottom:13px}
.testi-avatar{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,#1A2744,#2E4280);
  color:#fff;font-size:1rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.testi-name{font-size:.9rem;font-weight:700;color:var(--navy,#1A2744)}
.testi-city{font-size:.75rem;font-weight:400;color:#aaa}
.testi-badge{font-size:.68rem;color:#25D366;font-weight:600;margin-top:2px}
.testi-stars{color:#F59E0B;font-size:.84rem;margin-top:3px}
.testi-text{
  font-size:.85rem;color:#444;line-height:1.7;
  margin-bottom:14px;font-style:italic;
  position:relative;padding-left:16px;
}
.testi-text::before{
  content:'"';position:absolute;left:0;top:-3px;
  font-size:2rem;color:var(--copper,#B8692A);opacity:.2;
  font-family:Georgia,serif;line-height:1;
}
.testi-before-after{display:flex;gap:7px;flex-wrap:wrap}
.tba-pill{font-size:.68rem;padding:4px 11px;border-radius:20px;font-weight:600}
.tba-before{background:#FFEBEE;color:#c62828}
.tba-after{background:#E8F5E9;color:#2E7D32}
.testi-nav-row{
  display:flex;align-items:center;justify-content:center;
  gap:16px;margin-top:14px;
}
.testi-arrow{
  width:36px;height:36px;border-radius:50%;
  border:1.5px solid #DDE2EE;
  background:#fff;color:var(--navy,#1A2744);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,.09);
  transition:background .2s,border-color .2s,transform .15s;
  flex-shrink:0;position:static;transform:none;
}
.testi-arrow:hover{background:var(--navy,#1A2744);color:#fff;border-color:var(--navy,#1A2744);transform:scale(1.08)}
.testi-prev,.testi-next{position:static;transform:none;margin:0}
.testi-dots{display:flex;justify-content:center;align-items:center;gap:7px}
.testi-dot{
  width:7px;height:7px;border-radius:50%;
  background:#DDE2EE;cursor:pointer;
  transition:background .25s,width .25s;
  border:none;padding:0;
}
.testi-dot.active{background:var(--copper,#B8692A);width:20px;border-radius:4px}

/* ── Textarea question ── */
.gq-textarea-wrap{margin-top:4px}
.gq-textarea{
  width:100%;border-radius:14px;border:2px solid var(--input-border,#DDE2EE);
  background:var(--gq-input-bg,#F4F6FB);color:var(--navy);
  font-family:'DM Sans',sans-serif;font-size:.95rem;line-height:1.6;
  padding:14px 16px;resize:vertical;min-height:120px;
  transition:border-color .2s,box-shadow .2s;outline:none;
  box-sizing:border-box;
}
.gq-textarea:focus{border-color:var(--copper,#B8692A);box-shadow:0 0 0 3px rgba(184,105,42,.12);}
.gq-textarea::placeholder{color:#aab;font-size:.88rem}
.gq-ta-hint{font-size:.74rem;color:#aab;margin-top:7px;text-align:right;font-style:italic}

/* ── WhatsApp-only buy bar mode ── */
.btn-wa-only{
  background:#25D366!important;border-color:#25D366!important;
  font-size:1rem;letter-spacing:.01em;
  box-shadow:0 4px 18px rgba(37,211,102,.35)!important;
}
.btn-wa-only:hover{background:#1DA851!important;border-color:#1DA851!important;transform:translateY(-1px)}

/* ── WhatsApp-only consult bar ── */
.buy-bar-wa{justify-content:space-between;gap:12px}
.buy-bar-wa .btn-wa-only{
  flex-shrink:0;padding:13px 20px;
  font-size:.95rem;font-weight:700;
  background:#25D366;border:none;border-radius:14px;color:#fff;
  box-shadow:0 4px 18px rgba(37,211,102,.4);
  cursor:pointer;transition:background .2s,transform .15s;
  white-space:nowrap;
}
.buy-bar-wa .btn-wa-only:hover{background:#1DA851;transform:translateY(-1px)}

/* ── Perfect Men Product Kit ── */
.kit-item-product{
  align-items:center;gap:14px;padding:14px 16px;
  border-bottom:1px solid rgba(26,39,68,.07);
}
.kit-item-product:last-of-type{border-bottom:none}
.kit-prod-img-wrap{
  width:64px;height:64px;border-radius:12px;
  overflow:hidden;flex-shrink:0;
  background:#f5f5f5;display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.10);
}
.kit-prod-img{width:100%;height:100%;object-fit:cover;display:block}

/* Combo price row */
.kit-combo-row{
  display:flex;align-items:center;justify-content:space-between;
  background:linear-gradient(135deg,var(--navy,#1A2744),#243566);
  border-radius:14px;padding:16px 18px;margin-top:14px;
  gap:12px;
}
.kit-combo-label{
  font-size:.9rem;font-weight:700;color:#fff;line-height:1.4;
}
.kit-combo-label span{
  font-size:.74rem;font-weight:400;color:rgba(255,255,255,.6);
}
.kit-combo-price{
  font-size:1.5rem;font-weight:800;color:var(--gold-light,#E8C97A);
  white-space:nowrap;flex-shrink:0;
  font-family:var(--font-display,Georgia,serif);
}

/* ── Perfect Men Combo Banner ── */
.kit-combo-banner{
  background:linear-gradient(135deg,#0D1B2A,#1A2744);
  border-radius:16px;overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:0 6px 24px rgba(26,39,68,.20);
}
.kit-combo-img{
  width:100%;height:200px;object-fit:cover;
  display:block;border-radius:12px 12px 0 0;
}
.kit-combo-info{
  padding:16px 18px 18px;
}
.kit-combo-title{
  font-size:1rem;font-weight:700;color:#fff;
  margin-bottom:4px;
}
.kit-combo-sub{
  font-size:.76rem;color:rgba(255,255,255,.55);
  margin-bottom:14px;
}
.kit-combo-pricing{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.kit-combo-mrp{
  font-size:.88rem;color:rgba(255,255,255,.4);
  text-decoration:line-through;
}
.kit-combo-final{
  font-size:1.6rem;font-weight:800;
  color:var(--gold-light,#E8C97A);
  font-family:var(--font-display,Georgia,serif);
  line-height:1;
}
.kit-combo-save{
  background:#22C55E;color:#fff;
  font-size:.7rem;font-weight:700;
  padding:3px 10px;border-radius:20px;
}
