/* 
 * StoveShield FAQ Section Styles
 */

.ss-block {
    box-sizing: border-box;
    color: #2C3E50;
    font-family: "Poppins", system-ui, sans-serif;
    line-height: 1.62;
}
.ss-block * {
    box-sizing: border-box;
}

.ss-faq-section .ss-wrap{
    max-width: 1180px;
    margin: auto;

}
/* Frontend Styles */
.ss-faq-section {
    padding: 80px 0;
    border-top: 1px solid #ECEDEF;
}
.ss-faq-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #F0B800;
    margin-bottom: 12px;
}
.ss-faq-section .eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: #FFD700;
}
.ss-faq-section h2 {
    font-size: clamp(23px, 2.8vw, 31px);
    margin-bottom: 8px;
    font-weight: 800;
    color: #14161a;
}
.ss-faqwrap {
    margin-top: 24px;
    max-width: 820px;
}
.ss-acc {
    border: 1px solid #E2E4E7;
    border-radius: 14px;
    margin-bottom: 10px;
    background: #fff;
    transition: box-shadow .2s cubic-bezier(.2,.7,.3,1);
}
.ss-acc[open] {
    box-shadow: 0 1px 2px rgba(20,22,26,.05);
}
.ss-acc summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 15.5px;
    color: #14161a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.ss-acc summary::-webkit-details-marker {
    display: none;
}
.ss-acc summary .plus {
    width: 24px;
    height: 24px;
    flex: none;
    color: #F0B800;
    transition: transform .2s cubic-bezier(.2,.7,.3,1);
}
.ss-acc[open] summary .plus {
    transform: rotate(45deg);
}
.ss-acc .body {
    padding: 0 20px 18px;
    color: #2C3E50;
    font-size: 14.5px;
    max-width: 72ch;
    white-space: pre-line;
}

/* Editor Specific Styles */
.ss-faq-edit-mode h2,
.ss-faq-edit-mode .eyebrow,
.ss-faq-edit-mode .ss-acc summary span,
.ss-faq-edit-mode .ss-acc .body div {
    border: 1px dashed rgba(0,0,0,0.1);
    padding: 2px;
}
.preview-hint {
    font-size: 11px;
    color: #F0B800;
    margin-bottom: 4px;
    margin-top: 4px;
    font-weight: 500;
    border: none !important;
}

@media (max-width: 640px) {
    .ss-faq-section {
        padding: 48px 0 !important;
    }
    .ss-faq-section .ss-wrap {
        padding: 0 16px !important;
    }
    .ss-faqwrap {
        margin-top: 18px !important;
    }
    .ss-acc {
        margin-bottom: 8px !important;
    }
    .ss-acc summary {
        padding: 16px !important;
    }
    .ss-acc .body {
        padding: 0 16px 16px !important;
    }
}
