/* ── Section Title (ShopWise-style) ─────────────────────────────────────── */

.nexab-section-title { text-align: center; }
.nexab-section-title--left { text-align: left; }
.nexab-section-title__inner { max-width: 720px; }
.nexab-section-title--left .nexab-section-title__inner { max-width: 100%; }

/* Background variants */
.nexab-section-title--light  { background: var(--nx-surface, #f4f7f6); }
.nexab-section-title--dark   { background: var(--nx-dark-bg, #112946); }
.nexab-section-title--accent { background: var(--nx-accent, #0d9488); }

/* Eyebrow label */
.nexab-section-title__label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nx-accent, #0d9488);
    margin-bottom: .625rem;
}
.nexab-section-title--dark .nexab-section-title__label,
.nexab-section-title--accent .nexab-section-title__label {
    color: rgba(255,255,255,.75);
}

/* Heading */
.nexab-section-title__heading {
    font-size: clamp(1.625rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--nx-heading, #10243d);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin: 0 0 .875rem;
    display: inline-block;
    position: relative;
}
.nexab-section-title--dark .nexab-section-title__heading,
.nexab-section-title--accent .nexab-section-title__heading {
    color: #fff;
}

/* Accent underline */
.nexab-section-title__heading::after {
    content: '';
    display: block;
    height: 3px;
    width: 48px;
    background: var(--nx-accent, #0d9488);
    border-radius: 2px;
    margin: .75rem auto 0;
}
.nexab-section-title--left .nexab-section-title__heading::after { margin-left: 0; }
.nexab-section-title--accent .nexab-section-title__heading::after { background: rgba(255,255,255,.6); }
.nexab-section-title--no-line .nexab-section-title__heading::after { display: none; }

/* Subtitle */
.nexab-section-title__sub {
    font-size: 1.0625rem;
    color: var(--nx-text, #5a6577);
    max-width: 620px;
    margin: .25rem auto 0;
    line-height: 1.7;
}
.nexab-section-title--left .nexab-section-title__sub { margin-left: 0; }
.nexab-section-title--dark .nexab-section-title__sub,
.nexab-section-title--accent .nexab-section-title__sub { color: rgba(255,255,255,.8); }

/* Legacy class — hide old markup if still on page */
.nexa-title-block { display: none; }
