/* =========================================================
   Sun Pumps FAQ — Elementor widget styles
   Recreates the design from /faq.html and /become-a-dealer.html
   All tokens scoped to .spfaq so the widget never collides
   with the host theme.
   ========================================================= */

.spfaq {
    /* ---- Brand tokens (scoped) ---- */
    --spfaq-brand-red:        #ED1C2B;
    --spfaq-brand-red-dark:   #C8101E;
    --spfaq-brand-red-darker: #A30D18;
    --spfaq-brand-yellow:     #FFDC16;

    /* Ink scale */
    --spfaq-ink-1: #0F1A1F;
    --spfaq-ink-2: #1F2D34;
    --spfaq-ink-3: #37464E;
    --spfaq-ink-4: #5C6B73;
    --spfaq-ink-5: #8A969D;

    /* Paper / hairlines */
    --spfaq-paper-1: #FFFFFF;
    --spfaq-paper-2: #FAFAF7;
    --spfaq-paper-3: #F2F1EB;
    --spfaq-line-1:  rgba(15, 26, 31, 0.08);
    --spfaq-line-2:  rgba(15, 26, 31, 0.14);
    --spfaq-line-3:  rgba(15, 26, 31, 0.24);

    /* Type */
    --spfaq-font-display: 'Geist', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --spfaq-font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --spfaq-font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

    /* Geometry */
    --spfaq-r-md:   8px;
    --spfaq-r-lg:   14px;
    --spfaq-r-pill: 999px;
    --spfaq-el-1: 0 1px 2px rgba(15,26,31,0.04), 0 1px 1px rgba(15,26,31,0.04);
    --spfaq-max-w: 1280px;

    /* Sidebar default width — overridable via Elementor control */
    --spfaq-sidebar-w: 280px;

    /* Animation */
    --spfaq-anim: 280ms;

    color: var(--spfaq-ink-2);
    font-family: var(--spfaq-font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.spfaq *,
.spfaq *::before,
.spfaq *::after {
    box-sizing: border-box;
}

.spfaq button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    color: inherit;
}

/* Reveal-on-scroll animation */
.spfaq.spfaq-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}
.spfaq.spfaq-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .spfaq.spfaq-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* SR-only utility for accessibility */
.spfaq .screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   Container + sections
   ========================================================= */
.spfaq-container {
    max-width: var(--spfaq-max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.spfaq-hero {
    padding: 48px 32px 36px;
}

.spfaq-body {
    padding: 32px 32px 96px;
    background: var(--spfaq-paper-2);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* =========================================================
   Typography helpers
   ========================================================= */
.spfaq-eyebrow {
    display: inline-block;
    font-family: var(--spfaq-font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--spfaq-brand-red);
}
.spfaq-eyebrow--muted { color: var(--spfaq-ink-4); }

.spfaq-h-display {
    font-family: var(--spfaq-font-display);
    font-size: clamp(48px, 5.4vw, 78px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.035em;
    color: var(--spfaq-ink-1);
    margin: 18px 0 18px;
    text-wrap: balance;
}

.spfaq-h-2 {
    font-family: var(--spfaq-font-display);
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.022em;
    color: var(--spfaq-ink-1);
    margin: 0;
    text-wrap: balance;
}

.spfaq-accent { color: var(--spfaq-brand-red); }

.spfaq-lede {
    font-size: 22px;
    line-height: 1.45;
    color: var(--spfaq-ink-4);
    max-width: 60ch;
    margin: 0;
}

.spfaq-mono { font-family: var(--spfaq-font-mono); }
.spfaq-mono--small {
    font-size: 13px;
    color: var(--spfaq-ink-4);
}

/* Hero copy clamp */
.spfaq-hero-copy { max-width: 780px; }

/* =========================================================
   Search bar
   ========================================================= */
.spfaq-search {
    margin-top: 36px;
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 680px;
    background: var(--spfaq-paper-1);
    border: 1.5px solid var(--spfaq-line-2);
    border-radius: var(--spfaq-r-pill);
    overflow: hidden;
    box-shadow: var(--spfaq-el-1);
    min-width: 0;
}
.spfaq-search-icon {
     padding: 0px 0px 0px 18px;
    display: flex;
    align-items: center;
    color: var(--spfaq-ink-4);
    flex-shrink: 0;
}
.spfaq-search-icon svg { width: 18px; height: 18px; }

.spfaq-search-input {
    flex: 1;
    padding: 16px 0;
    border: 0 !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-family: var(--spfaq-font-body);
    background: transparent !important;
    background-color: transparent !important;
    color: var(--spfaq-ink-1);
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
}

.spfaq-search-input::placeholder { color: var(--spfaq-ink-5); }
.spfaq-search-input:focus,
.spfaq-search-input:active {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.spfaq-search-btn {
    margin: 6px;
    padding: 10px 20px !important;
    border-radius: var(--spfaq-r-pill) !important;
    background: var(--spfaq-brand-red) !important;
    background-color: var(--spfaq-brand-red) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--spfaq-brand-red) !important;
    font-family: var(--spfaq-font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: background 180ms ease, transform 120ms ease, box-shadow 180ms ease;
    box-shadow: var(--spfaq-el-1);
    flex-shrink: 0;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
}
.spfaq-search-btn:hover {
    background: var(--spfaq-brand-red-dark) !important;
    background-color: var(--spfaq-brand-red-dark) !important;
    border-color: var(--spfaq-brand-red-dark) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}
.spfaq-search-btn:active,
.spfaq-search-btn:focus {
    background: var(--spfaq-brand-red-darker) !important;
    background-color: var(--spfaq-brand-red-darker) !important;
    color: #FFFFFF !important;
    transform: none;
}
.spfaq-search-btn:focus-visible {
    outline: 3px solid var(--spfaq-brand-yellow);
    outline-offset: 2px;
}

/* =========================================================
   Body grid (sidebar + content)
   ========================================================= */
.spfaq-grid {
    display: grid;
    grid-template-columns: var(--spfaq-sidebar-w) 1fr;
    gap: 48px;
    align-items: start;
    /* Prevent any grid child from pushing the track wider than 1fr.
       Without this, a long word / wide flex child can blow out the layout. */
    min-width: 0;
}
.spfaq-grid--no-sidebar {
    grid-template-columns: 1fr;
}

/* Both grid columns must be allowed to shrink below content's intrinsic size. */
.spfaq-grid > .spfaq-sidebar,
.spfaq-grid > .spfaq-content {
    min-width: 0;
    max-width: 100%;
}

/* =========================================================
   Sidebar
   ========================================================= */
.spfaq-sidebar {
    position: sticky;
    top: 24px;
    /* Belt-and-suspenders: long words inside the help card never push wider. */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.spfaq-sidebar > .spfaq-eyebrow {
    margin-bottom: 16px;
    display: block;
}

.spfaq-cat-list {
    display: grid;
    gap: 4px;
}

.spfaq-cat-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--spfaq-ink-2);
    border: 0 !important;
    box-shadow: none !important;
    border-radius: var(--spfaq-r-md) !important;
    font-family: var(--spfaq-font-body);
    font-size: 14.5px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    line-height: 1.3;
    transition: background 160ms ease, color 160ms ease;
    -webkit-appearance: none;
    appearance: none;
}
.spfaq-cat-btn:not(.is-active):hover {
    background: rgba(15, 26, 31, 0.06) !important;
    background-color: rgba(15, 26, 31, 0.06) !important;
    color: var(--spfaq-ink-1);
}
.spfaq-cat-btn.is-active,
.spfaq-cat-btn.is-active:hover,
.spfaq-cat-btn.is-active:focus,
.spfaq-cat-btn.is-active:active {
    background: var(--spfaq-ink-1) !important;
    background-color: var(--spfaq-ink-1) !important;
    color: #FFFFFF !important;
    font-weight: 600;
}
.spfaq-cat-btn:focus-visible {
    outline: 3px solid var(--spfaq-brand-yellow);
    outline-offset: 2px;
}

.spfaq-cat-count {
    font-family: var(--spfaq-font-mono);
    font-size: 11.5px;
    opacity: 0.65;
    flex-shrink: 0;
    margin-left: 12px;
}

/* =========================================================
   Help card
   ========================================================= */
.spfaq-help {
    margin-top: 32px;
    padding: 24px 22px;
    background: var(--spfaq-brand-red);
    color: #FFFFFF;
    border-radius: var(--spfaq-r-lg);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.spfaq-help-eyebrow {
    font-family: var(--spfaq-font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}
.spfaq-help h4 {
    font-family: var(--spfaq-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px;
    line-height: 1.2;
}
.spfaq-help p {
    margin: 0px 20px 10px 0px;;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}
.spfaq-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 18px;
    background: var(--spfaq-brand-yellow);
    color: var(--spfaq-ink-1);
    border: 1px solid var(--spfaq-brand-yellow);
    border-radius: var(--spfaq-r-md);
    font-family: var(--spfaq-font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 120ms ease, box-shadow 180ms ease, filter 160ms ease;
    box-shadow: var(--spfaq-el-1);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.spfaq-help-btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.97);
}
.spfaq-help-btn:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 2px;
}

/* =========================================================
   Content column
   ========================================================= */
.spfaq-content {
    min-width: 0; /* prevents grid column overflow on long words */
}
.spfaq-content-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spfaq-panel { display: none; }
.spfaq-panel.is-active { display: block; }

/* =========================================================
   FAQ list (the heart of the widget)
   ========================================================= */
.spfaq-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--spfaq-line-2);
}

.spfaq-item {
    border-bottom: 1px solid var(--spfaq-line-2);
    padding: 22px 0;
}

/* Question (button) */
.spfaq-q {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    text-align: left;
    font-family: var(--spfaq-font-display);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.35;
    color: var(--spfaq-ink-1);
    cursor: pointer;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    transition: color 160ms ease;
}
/* All interactive states — prevents theme button:hover colors bleeding in */
.spfaq-q:hover,
.spfaq-q:focus,
.spfaq-q:active,
.spfaq-q:visited,
.spfaq-item.is-open .spfaq-q,
.spfaq-item.is-open .spfaq-q:hover,
.spfaq-item.is-open .spfaq-q:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--spfaq-ink-1);
    text-decoration: none;
}

.elementor-6001 .elementor-element.elementor-element-ee1ef83 .spfaq-q {
    text-wrap: auto;
}

.spfaq-q:focus-visible {
    outline: 3px solid var(--spfaq-brand-yellow) !important;
    outline-offset: 4px;
    border-radius: 4px;
}
.spfaq-q-text {
    flex: 1;
    min-width: 0;
}

/* Plus / minus icon */
.spfaq-q-icon {
    color: var(--spfaq-brand-red);
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--spfaq-anim) ease;
}

/* Plus/minus swap (text-based, matches original) */
.spfaq-q-icon--plus .spfaq-plus-closed,
.spfaq-q-icon--plus .spfaq-plus-open {
    grid-area: 1 / 1;
    transition: opacity 180ms ease, transform 180ms ease;
}
.spfaq-q-icon--plus {
    display: inline-grid;
}
.spfaq-q-icon--plus .spfaq-plus-open { opacity: 0; transform: scale(0.6); }
.spfaq-item.is-open .spfaq-q-icon--plus .spfaq-plus-closed { opacity: 0; transform: scale(0.6); }
.spfaq-item.is-open .spfaq-q-icon--plus .spfaq-plus-open   { opacity: 1; transform: scale(1); }

/* Chevron / arrow / caret rotate when open */
.spfaq-q-icon--chevron svg,
.spfaq-q-icon--arrow svg,
.spfaq-q-icon--caret svg {
    width: 100%; height: 100%;
    transition: transform var(--spfaq-anim) ease;
}
.spfaq-item.is-open .spfaq-q-icon--chevron svg { transform: rotate(180deg); }
.spfaq-item.is-open .spfaq-q-icon--arrow   svg { transform: rotate(90deg); }
.spfaq-item.is-open .spfaq-q-icon--caret   svg { transform: rotate(90deg); }

/* Answer wrapper handles smooth height animation via JS-set max-height */
.spfaq-a-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--spfaq-anim) ease, opacity var(--spfaq-anim) ease;
    opacity: 0;
}
.spfaq-item.is-open .spfaq-a-wrap {
    opacity: 1;
}
.spfaq-a-wrap[hidden] { display: none; }

.spfaq-a {
    padding-top: 12px;
    color: var(--spfaq-ink-4);
    font-size: 15px;
    line-height: 1.6;
    max-width: 78ch;
}
.spfaq-a p:first-child { margin-top: 0; }
.spfaq-a p:last-child  { margin-bottom: 0; }
.spfaq-a a {
    color: var(--spfaq-brand-red-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.spfaq-a a:hover { color: var(--spfaq-brand-red-darker); }

/* Empty state */
.spfaq-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--spfaq-ink-4);
    border: 1px dashed var(--spfaq-line-2);
    border-radius: var(--spfaq-r-md);
}

/* =========================================================
   Search states (live filter + highlighting + empty)
   ========================================================= */
.spfaq-item.is-hidden { display: none !important; }

.spfaq-mark {
    background: var(--spfaq-brand-yellow);
    color: var(--spfaq-ink-1);
    padding: 0 2px;
    border-radius: 3px;
    font-weight: inherit;
}

.spfaq-empty {
    grid-column: 1 / -1;
    padding: 28px 16px;
    text-align: center;
    color: var(--spfaq-ink-4);
    font-size: 14.5px;
    font-style: italic;
    border-bottom: 1px solid var(--spfaq-line-2);
}

.spfaq-cat-btn.has-no-matches {
    opacity: 0.45;
}
.spfaq-cat-btn.has-no-matches .spfaq-cat-count {
    color: var(--spfaq-ink-5);
}

.spfaq-search-input:focus { outline: none; }
.spfaq.spfaq-is-searching .spfaq-search {
    border-color: var(--spfaq-brand-red);
    box-shadow: 0 0 0 3px rgba(237, 28, 43, 0.12);
}

/* Subtle highlight wash for matched items so reorder is obvious */
.spfaq.spfaq-is-searching .spfaq-search-hit {
    animation: spfaq-pulse 360ms ease;
}
@keyframes spfaq-pulse {
    0%   { background: rgba(255, 220, 22, 0.18); }
    100% { background: transparent; }
}
@media (prefers-reduced-motion: reduce) {
    .spfaq.spfaq-is-searching .spfaq-search-hit { animation: none; }
}

/* =========================================================
   Responsive
   Strategy: NO negative margins anywhere — they cause
   horizontal overflow on mobile regardless of overflow:hidden.
   Chip nav scrolls inside its own padded area instead.
   ========================================================= */

/* ── Wide tablet (keep 2-col, tighten spacing) ── */
@media (max-width: 1100px) {
    .spfaq { --spfaq-sidebar-w: 240px; }
    .spfaq-grid { gap: 32px; }
    .spfaq-hero { padding: 40px 24px 28px; }
    .spfaq-body { padding: 28px 24px 80px; }
    .spfaq-h-display { font-size: clamp(40px, 5.6vw, 64px); }
    .spfaq-lede { font-size: 20px; }
}

/* ── Tablet / small desktop (collapse to 1-col) ── */
@media (max-width: 900px) {
    .spfaq-hero { padding: 32px 20px 20px; }
    .spfaq-body { padding: 24px 20px 56px; }

    .spfaq-h-display {
        font-size: clamp(30px, 6vw, 44px);
        margin: 12px 0 12px;
        line-height: 1.0;
    }
    .spfaq-h-2   { font-size: clamp(22px, 4vw, 30px); }
    .spfaq-lede  { font-size: 17px; }

    .spfaq-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .spfaq-sidebar {
        position: static;
        top: auto;
        width: 100%;
        max-width: 100%;
    }
    .spfaq-sidebar > .spfaq-eyebrow { margin-bottom: 10px; }

    /* ---- Chip nav: horizontal scroll, NO negative margins ---- */
    .spfaq-cat-list {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        /* padding instead of negative margins — stays inside container */
        padding: 4px 0 8px;
        width: 100%;
        box-sizing: border-box;
    }
    .spfaq-cat-list::-webkit-scrollbar { display: none; }
    .spfaq-cat-btn {
        flex: 0 0 auto;
        padding: 10px 14px;
        white-space: nowrap;
        font-size: 14px;
        scroll-snap-align: start;
    }
    .spfaq-cat-count { font-size: 11px; margin-left: 8px; }

    /* ---- Search ---- */
    .spfaq-search {
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
    }
    .spfaq-search-icon { padding: 0 12px; }
    .spfaq-search-icon svg { width: 16px; height: 16px; }
    .spfaq-search-input {
        padding: 13px 0 !important;
        font-size: 16px; /* prevent iOS Safari zoom */
    }
    .spfaq-search-btn { padding: 9px 14px; font-size: 13px; }

    /* ---- FAQ items ---- */
    .spfaq-q { font-size: 16px; gap: 12px; }
    .spfaq-a { font-size: 14px; }
    .spfaq-q-icon { font-size: 20px; width: 20px; height: 20px; }
    .spfaq-item { padding: 18px 0; }
    .spfaq-content-head { margin-bottom: 12px; }
    .spfaq-content-head .spfaq-mono--small { font-size: 12px; }

    /* ---- Help card ---- */
    .spfaq-help { padding: 18px 16px; margin-top: 20px; }
    .spfaq-help h4 { font-size: 17px; }
    .spfaq-help p { font-size: 13px; margin-bottom: 12px; }

    .spfaq-empty { padding: 20px 12px; font-size: 14px; }
}

/* ── Compact phone ── */
@media (max-width: 640px) {
    .spfaq-hero { padding: 24px 16px 16px; }
    .spfaq-body { padding: 20px 16px 44px; }

    .spfaq-h-display {
        font-size: clamp(26px, 7.5vw, 36px);
        line-height: 1.02;
        letter-spacing: -0.02em;
    }
    .spfaq-lede { font-size: 15px; line-height: 1.5; }

    .spfaq-search { margin-top: 16px; }
    .spfaq-search-icon { padding: 0 10px; }
    .spfaq-search-input { padding: 12px 0; }
    .spfaq-search-btn  { padding: 8px 12px; font-size: 12px; }

    .spfaq-q     { font-size: 15px; gap: 10px; }
    .spfaq-a     { font-size: 13.5px; padding-top: 8px; }
    .spfaq-q-icon { font-size: 18px; width: 18px; height: 18px; }
    .spfaq-item  { padding: 16px 0; }

    .spfaq-help  { padding: 16px 14px; }
    .spfaq-help h4 { font-size: 16px; margin-bottom: 8px; }
    .spfaq-help p  { font-size: 12.5px; margin-bottom: 10px; }
    .spfaq-help-btn { font-size: 13px; padding: 10px 14px; }

    .spfaq-cat-btn { padding: 9px 12px; font-size: 13px; }
}

/* ── Tiny phone (≤420px) — stacked search button ── */
@media (max-width: 420px) {
    .spfaq-hero { padding: 20px 14px 14px; }
    .spfaq-body { padding: 16px 14px 36px; }

    .spfaq-h-display {
        font-size: clamp(23px, 8.5vw, 30px);
        letter-spacing: -0.018em;
    }
    .spfaq-lede { font-size: 14px; }

    /* Stack the search button below the input row */
    .spfaq-search {
        flex-wrap: wrap;
        border-radius: var(--spfaq-r-lg);
        max-width: 100%;
    }
    .spfaq-search-icon  { padding: 0 10px; flex-shrink: 0; }
    .spfaq-search-input {
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 6px 12px 0;
        font-size: 15px;
    }
    .spfaq-search-btn {
        order: 3;
        margin: 3px;
        width:92px;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: var(--spfaq-r-md);
        white-space: normal;
    }

    .spfaq-cat-btn  { padding: 8px 10px; font-size: 12.5px; }
    .spfaq-cat-count { margin-left: 6px; }

    .spfaq-q     { font-size: 14.5px; gap: 8px; }
    .spfaq-a     { font-size: 13px; }
    .spfaq-q-icon { font-size: 17px; width: 17px; height: 17px; }
    .spfaq-item  { padding: 14px 0; }

    .spfaq-help   { padding: 14px 12px; margin-top: 16px; }
    .spfaq-help h4 { font-size: 15px; margin-bottom: 6px; }
    .spfaq-help p  { font-size: 12px; margin-bottom: 8px; }
    .spfaq-help-btn { font-size: 13px; padding: 10px 12px; border-radius: var(--spfaq-r-md); }

    .spfaq-empty { font-size: 13px; }
}
