/* treatment-page.css — shared styles for all treatments/*.html pages */

.t-hero-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.t-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 64px 48px; align-items: start; }
.t-content { min-width: 0; }
.t-sidebar { position: sticky; top: 100px; }
.t-section { margin-bottom: 40px; }
.t-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--purple-l); }
.t-section-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.t-section-icon.purple { background: var(--purple-l); }
.t-section-icon.green  { background: var(--green-l); }
.t-section-icon.red    { background: #fdeeed; }
.t-section-icon.brown  { background: #f5ede4; }
.t-section-icon.blue   { background: #eef4ff; }
.t-section-icon.gold   { background: #fff8e1; }
.t-section h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy); font-weight: 700; }
.t-section p { font-size: 15px; color: var(--muted); line-height: 1.82; margin-bottom: 10px; }
.t-section p strong { color: var(--text); }
.t-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.t-section ul li { font-size: 14px; color: var(--muted); line-height: 1.65; padding-left: 20px; position: relative; }
.t-section ul li::before { content: '›'; position: absolute; left: 0; color: var(--green); font-weight: 800; font-size: 16px; line-height: 1.4; }
.outcome-box { background: linear-gradient(135deg, var(--green-l) 0%, #fff 100%); border: 2px solid var(--green-m); border-radius: 16px; padding: 24px 28px; }
.outcome-box p { color: var(--text); font-size: 15px; line-height: 1.8; }
.sidebar-card { background: var(--white); border: 2px solid var(--purple-l); border-radius: 20px; overflow: hidden; margin-bottom: 24px; box-shadow: 0 4px 24px rgba(124,49,119,.06); }
.sidebar-card-head { background: linear-gradient(135deg, var(--navy) 0%, #3B1A5E 100%); padding: 20px 22px; }
.sidebar-card-head img { height: 40px; width: auto; margin-bottom: 10px; display: block; }
.sidebar-card-head h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: #fff; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.sidebar-card-head span { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 600; }
.sidebar-card-body { padding: 18px 22px; }
.sidebar-card-body p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.sidebar-cta { display: flex; flex-direction: column; gap: 10px; }
.sidebar-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; }
.cta-call { background: var(--purple-l); color: var(--purple); }
.cta-call:hover { background: var(--purple); color: #fff; }
.cta-book { background: var(--purple); color: #fff; box-shadow: 0 4px 14px rgba(124,49,119,.3); }
.cta-book:hover { background: var(--purple-d); transform: translateY(-2px); }
.related-treatments h4 { font-size: 13px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.related-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.related-list li a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-size: 13px; font-weight: 600; color: var(--text); background: var(--bg); border: 1px solid var(--border); transition: all .15s; }
.related-list li a:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-l); }
.related-list li a span { font-size: 16px; }

@media (max-width: 900px) {
  .t-layout { grid-template-columns: 1fr; padding: 48px 20px; }
  .t-sidebar { position: static; }
}
@media (max-width: 768px) {
  .t-hero-img { height: 200px; }
}
