/* Sharp Woo Category Extra – Styles */

/* ── Wrapper ─────────────────────────────────────────── */
.sharp-woo-category-extra-wrapper {
    margin: 40px 0;
}

/* ── Extra Beschreibung ──────────────────────────────── */
.sharp-woo-category-extra {
    margin-bottom: 40px;
    line-height: 1.7;
    color: #333;
}

/* ── FAQ Bereich ─────────────────────────────────────── */
.sharp-woo-category-faq {
    margin-top: 40px;
}

.sharp-woo-category-faq h2 {
    margin: 0 0 24px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--e-global-color-text, #7A7A7A);
}

/* ── FAQ Item ────────────────────────────────────────── */
.swce-faq-item {
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* ── Frage-Button ────────────────────────────────────── */
.swce-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: #D8E9D6;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease;
    gap: 12px;
}

.swce-faq-question:hover,
.swce-faq-question:focus {
    background: #c6dfc3 !important;
    color: #1a1a1a !important;
    text-decoration: none;
}

.swce-faq-question.active,
.swce-faq-question.active:hover,
.swce-faq-question.active:focus {
    background: #f6611a !important;
    color: #fff !important;
}

/* ── Plus / Minus Icon ───────────────────────────────── */
.swce-faq-question::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 200ms ease;
}

.swce-faq-question.active::after {
    content: "−";
}

/* ── Antwort ─────────────────────────────────────────── */
.swce-faq-answer {
    display: none;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #D8E9D6;
    border-top: none;
    line-height: 1.7;
    color: #444;
}