/* ============================================================================
   LHR CONTENT SECTIONS — shared stylesheet.

   The About / suitability / comparison / before-after / benefits / how-it-works /
   appointment-tabs / reviews / FAQ / closing-CTA blocks, used by BOTH the shop
   at /treatments/laser-hair-removal and the LHR area pages
   (templates/lhr_area_page.html) via the FEONIX_LHR_CONTENT include.

   Lifted verbatim out of the area page's inline <style>, original class names
   kept, so this is a move rather than a rewrite. Most rules came from
   treatment.html in the first place.

   Link this BEFORE a page's own <style> so page-specific rules can still win.
   Depends on the palette tokens each LHR page declares.
   ============================================================================ */

  /* ── SHARED SECTION FURNITURE ── */
  .section-label { font-size: 8px; font-weight: 500; letter-spacing: 0.28em;
                   text-transform: uppercase; color: var(--rg-mid); margin-bottom: 20px; }
  .lhr-sec-heading { font-family: var(--font-display); font-weight: 300;
                     font-size: clamp(32px, 3.5vw, 52px); color: var(--dark);
                     margin-bottom: 18px; line-height: 1.05; }
  .lhr-sec-heading em { font-style: italic; color: var(--rg-dark); }


  /* ══ BIKINI PURCHASE BLOCK ═══════════════════════════════════════════════

  /* ── APPOINTMENT TABS ── (treatment.html, verbatim) ───────────────────── */
  .lhr-tabs-section { padding: 80px 60px; background: var(--white); }
  .lhr-tabs-inner   { max-width: 1400px; margin: 0 auto; }
  .lhr-tabs-nav     { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 0; }
  .lhr-tab {
    font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid); background: var(--white); cursor: pointer;
    padding: 12px 22px; border: 1px solid var(--border); border-radius: 999px;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
  }
  .lhr-tab:hover  { color: var(--rg-dark); border-color: var(--rg-mid); }
  .lhr-tab.active { color: #fff; border-color: var(--rg-dark);
                    background: linear-gradient(135deg, var(--rg-mid), var(--rg-dark)); }
  .lhr-tab-panel { display: none; background: var(--white); border: 1px solid var(--border);
                   margin-top: 20px; padding: 44px 40px; min-height: 190px; }
  .lhr-tab-panel.active { display: block; }
  .lhr-tab-title { font-family: var(--font-display); font-weight: 400; font-size: 20px;
                   color: var(--dark); margin-bottom: 12px; }
  .lhr-tab-intro { font-size: 13px; line-height: 1.95; color: var(--mid); margin-bottom: 24px; }
  .lhr-tab-note { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border);
                  font-size: 12.5px; line-height: 1.95; color: var(--muted); font-style: italic; }
  .lhr-tab-list { list-style: none; display: flex; flex-direction: column; gap: 18px;
                  margin: 0; padding: 0; }
  .lhr-tab-item { position: relative; padding-left: 22px; font-size: 13px;
                  line-height: 1.95; color: var(--mid); }
  .lhr-tab-item::before { content: ''; position: absolute; left: 0; top: 10px;
                          width: 7px; height: 7px; border-radius: 50%;
                          background: linear-gradient(135deg, var(--rg-mid), var(--rg-dark)); }

  /* ── RESULTS ── (treatment.html, verbatim) ────────────────────────────── */
  .lhr-results-section { padding: 80px 60px; background: var(--cream); }
  .lhr-results-inner   { max-width: 1400px; margin: 0 auto; }
  .lhr-results-intro   { font-size: 13px; line-height: 2; color: var(--mid);
                         max-width: 720px; margin-bottom: 24px; }
  .lhr-results-consent { background: var(--cream); border-left: 2px solid var(--rg-mid);
                         padding: 14px 20px; font-size: 12px; line-height: 1.9;
                         color: var(--muted); font-style: italic; margin-bottom: 36px;
                         max-width: 720px; }
  .lhr-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
                      align-items: start; }
  .lhr-result-card  { background: var(--white); border: 1px solid var(--border);
                      display: flex; flex-direction: column; overflow: hidden; }
  .lhr-result-frame { position: relative; aspect-ratio: 4 / 3; flex: 0 0 auto;
                      background: var(--light); }
  .lhr-result-frame img { position: absolute; inset: 0; width: 100%; height: 100%;
                          object-fit: cover; display: block; }
  .lhr-result-cap  { padding: 18px 20px 20px; }
  .lhr-result-area { font-size: 14px; font-weight: 400; color: var(--dark); }

  /* ── BENEFITS ── (treatment.html, verbatim) ───────────────────────────── */
  .lhr-benefits-section { padding: 80px 60px; background: var(--white); }
  .lhr-benefits-inner { max-width: 1400px; margin: 0 auto; display: grid;
                        grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .lhr-benefits-photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--light); }
  .lhr-benefits-photo img { width: 100%; height: 100%; object-fit: cover;
                            object-position: center 30%; display: block; }
  .lhr-benefits-list { list-style: none; display: flex; flex-direction: column; gap: 22px;
                       margin: 8px 0 0; padding: 0; }
  .lhr-benefit { display: flex; gap: 14px; }
  .lhr-benefit-icon { flex: none; width: 18px; height: 18px; color: var(--rg-mid); margin-top: 3px; }
  .lhr-benefit-title { font-size: 14px; color: var(--dark); margin-bottom: 5px; }
  .lhr-benefit-body  { font-size: 12.5px; line-height: 1.85; color: var(--mid); }
  .lhr-benefits-note { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--border);
                       font-size: 11.5px; line-height: 1.8; color: var(--muted); font-style: italic; }

  /* ── HOW IT WORKS ── (treatment.html, verbatim) ───────────────────────── */
  .lhr-steps-section { padding: 80px 60px; background: var(--cream); }
  .lhr-steps-inner   { max-width: 1400px; margin: 0 auto; }
  .lhr-steps-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
                       margin-top: 40px; }
  .lhr-step { background: var(--cream); padding: 32px 28px 34px; border-top: 2px solid var(--rg-mid); }
  .lhr-step-num { font-family: var(--font-display); font-weight: 300; font-size: 40px;
                  line-height: 1; color: var(--rg-light); margin-bottom: 16px; }
  .lhr-step-title { font-size: 14px; color: var(--dark); margin-bottom: 8px; }
  .lhr-step-body  { font-size: 12.5px; line-height: 1.85; color: var(--mid); }

  /* ── REVIEWS ── (treatment.html, verbatim) ────────────────────────────── */
  .lhr-reviews-section { padding: 80px 60px; background: var(--cream); }
  .lhr-reviews-inner   { max-width: 1400px; margin: 0 auto; }
  .lhr-reviews-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
                         margin-top: 40px; }
  .lhr-review { background: var(--white); padding: 32px 30px; display: flex;
                flex-direction: column; gap: 14px; }
  .lhr-review-stars { color: var(--rg-mid); letter-spacing: 2px; font-size: 12px; }
  .lhr-review-text  { font-size: 13px; line-height: 1.9; color: var(--mid); flex: 1; }
  .lhr-review-name  { font-size: 12px; letter-spacing: 0.06em; color: var(--dark); }
  .lhr-review-src   { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
                      color: var(--muted); }
  .lhr-reviews-note { margin-top: 28px; font-size: 11.5px; line-height: 1.8;
                      color: var(--muted); font-style: italic; }

  /* ── CLOSING CTA BAND ── (treatment.html, verbatim) ───────────────────── */
  .lhr-cta-section { padding: 0 60px 80px; background: var(--white); }
  .lhr-cta-band { max-width: 1400px; margin: 0 auto; background: var(--dark);
                  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
                  overflow: hidden; }
  .lhr-cta-photo { min-height: 340px; background: #211a2b; }
  .lhr-cta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .lhr-cta-copy { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
  .lhr-cta-label { font-size: 8px; font-weight: 500; letter-spacing: 0.28em;
                   text-transform: uppercase; color: var(--rg-light); margin-bottom: 18px; }
  .lhr-cta-title { font-family: var(--font-display); font-weight: 300;
                   font-size: clamp(28px, 3vw, 44px); line-height: 1.1;
                   color: var(--white); margin-bottom: 16px; }
  .lhr-cta-title em { font-style: italic; color: var(--rg-light); }
  .lhr-cta-body { font-size: 13px; line-height: 1.95; color: rgba(255,255,255,0.62);
                  margin-bottom: 30px; max-width: 460px; }
  .lhr-cta-btn { align-self: flex-start; display: inline-block; cursor: pointer;
                 font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
                 text-transform: uppercase; color: var(--white); text-decoration: none;
                 padding: 16px 40px;
                 background: linear-gradient(135deg, var(--rg-mid), var(--rg-dark));
                 border: 0; transition: opacity .3s ease; }
  .lhr-cta-btn:hover { opacity: 0.88; }
  .lhr-cta-note { margin-top: 16px; font-size: 11.5px; color: rgba(255,255,255,0.5);
                  font-style: italic; }

  /* ══ THERAPIE-PATTERN BLOCKS ═════════════════════════════════════════════
     Template shape borrowed from therapieclinic.com's laser hair removal page
     (hero with dual CTA → alternating image/text → hair-suitability matrix →
     us-vs-them comparison → results → FAQ accordion). ONLY the structure is
     borrowed. Every word and figure below is Feonix's own, already published
     on treatment.html or the LHR landing page — no competitor copy, and no new
     clinical claims. Styling stays in treatment.html's language throughout.
     ══════════════════════════════════════════════════════════════════════ */

  /* Hero dual CTA (Therapie puts two actions in the hero; the main LHR page
     has none, so this is additive and uses the existing button styles). */
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
                  margin-top: 8px; }
  .hero-btn { display: inline-block; cursor: pointer; font-family: var(--font-sans);
              font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
              text-transform: uppercase; text-decoration: none; padding: 15px 34px;
              border: 1px solid transparent; transition: opacity .3s ease, background .3s ease; }
  .hero-btn-primary { color: var(--white);
                      background: linear-gradient(135deg, var(--rg-mid), var(--rg-dark)); }
  .hero-btn-primary:hover { opacity: 0.88; }
  .hero-btn-ghost { color: var(--white); background: rgba(255,255,255,0.06);
                    border-color: rgba(255,255,255,0.45); }
  .hero-btn-ghost:hover { background: rgba(255,255,255,0.16); }

  /* About: narrow text column. No image — the only lifestyle photo on this page
     is the Benefits one, and running it twice was the duplication being removed. */
  .bk-about-section { padding: 80px 60px; background: var(--white); }
  .bk-about-inner   { max-width: 860px; margin: 0 auto; }
  .bk-about-body    { font-size: 13px; line-height: 2; color: var(--mid); margin-bottom: 18px; }
  .bk-about-body:last-child { margin-bottom: 0; }

  /* Hair-suitability matrix — Therapie's five-card grid. Every verdict here is
     taken from the published "What hair colours can be treated?" answer and
     nothing else. Light/mid brown is deliberately ABSENT: that answer does not
     cover it, and inventing a verdict for it would be a clinical claim. */
  .bk-suit-section { padding: 80px 60px; background: var(--cream); }
  .bk-suit-inner { max-width: 1400px; margin: 0 auto; }
  .bk-suit-intro { font-size: 13px; line-height: 2; color: var(--mid);
                   max-width: 720px; margin-bottom: 40px; }
  .bk-suit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .bk-suit-card { background: var(--white); border: 1px solid var(--border);
                  padding: 26px 22px 24px; display: flex; flex-direction: column; gap: 12px; }
  /* A card can carry more than one shade (dark & light brown share one). */
  .bk-suit-swatches { display: flex; gap: 8px; }
  .bk-suit-swatch { width: 44px; height: 44px; border-radius: 50%; flex: none;
                    border: 1px solid rgba(11,11,12,0.12); }
  .bk-suit-name { font-size: 14px; color: var(--dark); }
  .bk-suit-badge { align-self: flex-start; font-size: 8px; font-weight: 600;
                   letter-spacing: 0.16em; text-transform: uppercase;
                   padding: 6px 11px; border: 1px solid; }
  .bk-suit-badge.yes { color: #3F5C3F; border-color: #3F5C3F; background: #F1F5F1; }
  .bk-suit-badge.no  { color: #8A2B2B; border-color: #8A2B2B; background: #FBEDED; }
  .bk-suit-badge.maybe { color: var(--rg-dark); border-color: var(--rg-dark); background: #FAF3ED; }
  .bk-suit-note { font-size: 11.5px; line-height: 1.75; color: var(--muted); }
  .bk-suit-foot { margin-top: 32px; background: var(--white);
                  border-left: 2px solid var(--rg-mid); padding: 18px 24px;
                  font-size: 12px; line-height: 1.9; color: var(--mid); font-style: italic; }

  /* Us-vs-them comparison. Framed as MEDICAL LASER vs SALON IPL — a technology
     comparison, which is what the site already publishes — rather than as a
     claim about any named competitor. */
  .bk-compare-section { padding: 80px 60px; background: var(--white); }
  .bk-compare-inner { max-width: 1100px; margin: 0 auto; }
  .bk-compare { width: 100%; border-collapse: collapse; margin-top: 36px;
                border: 1px solid var(--border); }
  .bk-compare th, .bk-compare td { padding: 18px 20px; text-align: left;
                                   border-bottom: 1px solid var(--border);
                                   font-size: 12.5px; line-height: 1.8; }
  .bk-compare thead th { background: var(--cream); font-size: 9px; font-weight: 600;
                         letter-spacing: 0.18em; text-transform: uppercase;
                         color: var(--muted); }
  .bk-compare thead th.is-us { color: var(--rg-dark); }
  .bk-compare tbody th { font-weight: 400; color: var(--dark); width: 30%; }
  .bk-compare td { color: var(--mid); }
  .bk-compare td.is-us { color: var(--dark); background: #FCF9F6; }
  .bk-compare-mark { display: inline-block; width: 15px; color: var(--rg-dark);
                     margin-right: 8px; }
  .bk-compare-mark.off { color: var(--muted); }
  .bk-compare-note { margin-top: 20px; font-size: 11.5px; line-height: 1.8;
                     color: var(--muted); font-style: italic; }

  /* FAQ accordion — native <details>, collapsed by default, keyboard-operable
     with no JS. */
  .bk-faq-section { padding: 80px 60px; background: var(--white); }
  .bk-faq-inner { max-width: 900px; margin: 0 auto; }
  .bk-faqs { margin-top: 36px; border-top: 1px solid var(--border); }
  .bk-faq { border-bottom: 1px solid var(--border); background: var(--white); }
  .bk-faq summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 22px;
                    position: relative; font-size: 13.5px; color: var(--dark); }
  .bk-faq summary::-webkit-details-marker { display: none; }
  .bk-faq summary::after { content: '+'; position: absolute; right: 20px; top: 17px;
                           font-size: 20px; color: var(--rg-mid); line-height: 1; }
  .bk-faq[open] summary::after { content: '\2212'; }
  .bk-faq summary:focus-visible { outline: 2px solid var(--rg-dark); outline-offset: -2px; }
  .bk-faq-a { padding: 0 22px 22px; }
  .bk-faq-a p { font-size: 12.5px; line-height: 1.95; color: var(--mid); margin-bottom: 12px; }
  .bk-faq-a p:last-child { margin-bottom: 0; }

  /* ── RESPONSIVE ── (treatment.html breakpoints) ───────────────────────── */
  /* ── RESPONSIVE ── (treatment.html breakpoints) ───────────────────────── */
  @media (max-width: 1100px) { .lhr-steps-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 1100px) { .bk-suit-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 900px) {
    .lhr-results-grid   { grid-template-columns: 1fr; }
    .lhr-benefits-inner { grid-template-columns: 1fr; gap: 36px; }
    .lhr-benefits-photo { aspect-ratio: 4 / 3; }
    .lhr-reviews-grid   { grid-template-columns: 1fr; }
    .lhr-cta-band       { grid-template-columns: 1fr; }
    .lhr-cta-photo      { min-height: 240px; }
    /* Purchase block stacks with the DIAGRAM FIRST (source order already puts
       it first) and the sticky panel released — nothing to stick to once the
       columns are one column. */
    .bk-buy-grid { grid-template-columns: 1fr; gap: 32px; }
    .bk-diagram-col .bk-sticky { position: static; }
    .bk-diagram { padding: 28px 28px 22px; }
    .bk-diagram img { max-height: 420px; }
    .bk-suit-grid       { grid-template-columns: repeat(2, 1fr); }
    /* The comparison table becomes a stacked card list: a 3-column table at
       390px either scrolls sideways or crushes to unreadable columns. */
    .bk-compare, .bk-compare tbody, .bk-compare tr, .bk-compare th, .bk-compare td { display: block; width: auto; }
    .bk-compare thead { display: none; }
    .bk-compare tr { border-bottom: 1px solid var(--border); padding: 6px 0 14px; }
    .bk-compare tr:last-child { border-bottom: 0; }
    .bk-compare tbody th { width: auto; padding-bottom: 6px; border-bottom: 0; font-size: 13.5px; }
    .bk-compare td { border-bottom: 0; padding-top: 6px; padding-bottom: 6px; }
    .bk-compare td::before { display: block; font-size: 8px; font-weight: 600;
                             letter-spacing: 0.18em; text-transform: uppercase;
                             color: var(--muted); margin-bottom: 4px; }
    .bk-compare td.is-us::before  { content: 'Feonix — medical laser'; color: var(--rg-dark); }
    .bk-compare td.is-them::before { content: 'Salon IPL'; }
  }
  @media (max-width: 768px) {
    .treatment-hero { height: 340px; }
    .treatment-hero.hero-image-prominent { height: 420px; }
    .hero-name { font-size: clamp(36px, 10vw, 56px); }
    .hero-tagline { font-size: var(--font-size-body); }
    .facts-inner { display: grid; grid-template-columns: 1fr 1fr; }
    .fact-item { border-right: none; border-bottom: 1px solid var(--border); }
    .fact-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .fact-item:last-child { border-bottom: none; }
    .bk-buy-section       { padding: 60px 24px; }
    .lhr-tabs-section     { padding: 60px 24px; }
    .lhr-tab-panel        { padding: 32px 24px; }
    .lhr-results-section  { padding: 60px 24px; }
    .lhr-benefits-section { padding: 60px 24px; }
    .lhr-steps-section    { padding: 60px 24px; }
    .lhr-reviews-section  { padding: 60px 24px; }
    .lhr-cta-section      { padding: 0 24px 60px; }
    .lhr-cta-copy         { padding: 44px 28px; }
    .bk-about-section     { padding: 60px 24px; }
    .bk-suit-section      { padding: 60px 24px; }
    .bk-compare-section   { padding: 60px 24px; }
    .bk-faq-section       { padding: 60px 24px; }
  }
  @media (max-width: 480px) {
    .treatment-hero.hero-image-prominent { height: 360px; }
    .hero-content { padding: 0 20px 40px; }
    .bk-pills { grid-template-columns: repeat(4, 1fr); gap: 5px; }
    .bk-pill { padding: 11px 2px 9px; }
    .bk-pill[aria-pressed="true"] { padding: 10px 1px 8px; }
    .bk-pill-count { font-size: 19px; }
    .bk-pill-save  { font-size: 8px; }
    .bk-area { padding: 13px 14px; gap: 12px; }
    .bk-area-from { font-size: 16px; }
  }
