/* ============================================================
   FAQ plugin  (#10002)  — scoped to .plugin-10002
   Clean accordion matching the Mokai theme.
   ============================================================ */

.plugin-10002 .faq-plugin {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* When the FAQ is the first section on the page, add extra top space so it
   clears the fixed site header (≈100px) instead of tucking under the logo. */
.ocs-section:first-child .plugin-10002 .faq-plugin {
    padding-top: 150px;
}

/* ---- optional heading ---- */
.plugin-10002 .faq-head {
    text-align: center;
    margin-bottom: 34px;
}
.plugin-10002 .faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange, #ee6f08);
    margin-bottom: 10px;
}
.plugin-10002 .faq-eyebrow::before,
.plugin-10002 .faq-eyebrow::after {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--orange, #ee6f08);
}
.plugin-10002 .faq-heading {
    font-family: var(--font-head, 'Poppins', sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark, #3b2a56);
    margin: 0;
}

/* ---- accordion list ---- */
.plugin-10002 .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plugin-10002 .faq-item {
    background: var(--white, #fff);
    border: 1px solid rgba(30, 95, 70, 0.12);
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.plugin-10002 .faq-item.is-open {
    border-color: rgba(238, 111, 8, 0.35);
    box-shadow: 0 6px 22px rgba(238, 111, 8, 0.10);
}

/* ---- question row (button) ---- */
.plugin-10002 .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    margin: 0;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font, 'Poppins', sans-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark, #3b2a56);
    transition: color .2s ease;
}
.plugin-10002 .faq-q:hover { color: var(--orange, #ee6f08); }
.plugin-10002 .faq-item.is-open .faq-q { color: var(--orange, #ee6f08); }

.plugin-10002 .faq-q-text { flex: 1; }

/* ---- plus / minus icon ---- */
.plugin-10002 .faq-q-icon {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(238, 111, 8, 0.10);
    transition: background .25s ease, transform .25s ease;
}
.plugin-10002 .faq-q-icon::before,
.plugin-10002 .faq-q-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--orange, #ee6f08);
    transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .25s ease;
}
.plugin-10002 .faq-q-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.plugin-10002 .faq-item.is-open .faq-q-icon {
    background: var(--orange, #ee6f08);
}
.plugin-10002 .faq-item.is-open .faq-q-icon::before,
.plugin-10002 .faq-item.is-open .faq-q-icon::after {
    background: var(--white, #fff);
}
.plugin-10002 .faq-item.is-open .faq-q-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

/* ---- answer (animated) ---- */
.plugin-10002 .faq-a-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.plugin-10002 .faq-a {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-mid, #444);
}
.plugin-10002 .faq-a > *:first-child { margin-top: 0; }
.plugin-10002 .faq-a > *:last-child { margin-bottom: 0; }
.plugin-10002 .faq-a a { color: var(--orange, #ee6f08); text-decoration: underline; }
.plugin-10002 .faq-a ul,
.plugin-10002 .faq-a ol { padding-left: 20px; margin: 10px 0; }
.plugin-10002 .faq-a li { margin-bottom: 6px; }

/* ---- responsive ---- */
@media (max-width: 600px) {
    .plugin-10002 .faq-heading { font-size: 23px; }
    .plugin-10002 .faq-q { padding: 16px 18px; font-size: 15px; }
    .plugin-10002 .faq-a { padding: 0 18px 18px; }
}
