/* =====================================================
   Fun & Calm – FAQ Immers-Sens  |  fcfi-style.css
   ===================================================== */

.fcfi-wrap {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #fff;
    box-sizing: border-box;
}

.fcfi-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #A89F98;
    margin: 0 0 12px;
}

.fcfi-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    color: #2C2420;
    line-height: 1.15;
    margin: 0 0 12px;
}

.fcfi-intro {
    font-size: 16px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    max-width: 580px;
    margin: 0 0 40px;
}

/* ── Filtres ── */
.fcfi-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.fcfi-cat {
    padding: 7px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid #DDD5C8;
    background: #fff;
    color: #7A6F68;
    cursor: pointer;
    font-family: 'Mulish', sans-serif;
    transition: all .2s;
    line-height: 1;
}

.fcfi-cat:hover {
    border-color: #2C2420;
    color: #2C2420;
}

.fcfi-cat-active {
    background: #2C2420;
    color: #fff !important;
    border-color: #2C2420;
}

/* ── Liste FAQ ── */
.fcfi-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fcfi-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #DDD5C8;
    overflow: hidden;
    transition: border-color .2s;
}

.fcfi-item.fcfi-open {
    border-color: #C4856A;
}

/* Question */
.fcfi-q {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
    transition: background .2s;
    box-sizing: border-box;
}

.fcfi-q:hover,
.fcfi-item.fcfi-open .fcfi-q { background: #F5EFE6; }

.fcfi-q-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.fcfi-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 40px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .3px;
    line-height: 1.4;
}

.fcfi-q-text {
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    line-height: 1.4;
}

.fcfi-icon {
    font-size: 20px;
    color: #A89F98;
    flex-shrink: 0;
    transition: transform .3s;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
}

.fcfi-item.fcfi-open .fcfi-icon { transform: rotate(45deg); }

/* Réponse */
.fcfi-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: 14px;
    color: #7A6F68;
    line-height: 1.8;
    font-weight: 300;
    padding: 0 22px;
    box-sizing: border-box;
}

.fcfi-item.fcfi-open .fcfi-answer {
    max-height: 600px;
    padding: 0 22px 20px;
}

.fcfi-answer p    { margin: 0 0 10px; }
.fcfi-answer p:last-child { margin-bottom: 0; }
.fcfi-answer strong { color: #2C2420; font-weight: 600; }
.fcfi-answer a    { color: #C4856A; text-decoration: none; }
.fcfi-answer a:hover { text-decoration: underline; }

/* ── Footer ── */
.fcfi-footer {
    margin-top: 32px;
    background: #EFE9E0;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border: 1px solid #DDD5C8;
    box-sizing: border-box;
}

.fcfi-footer p {
    font-size: 14px;
    color: #7A6F68;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.fcfi-footer p strong { color: #2C2420; font-weight: 600; }

.fcfi-footer-btn {
    display: inline-block;
    background: #2C2420;
    color: #fff !important;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
    line-height: 1;
}

.fcfi-footer-btn:hover { background: #C4856A; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcfi-wrap { padding: 56px 24px; }
    .fcfi-tag  { display: none; }
    .fcfi-footer { flex-direction: column; }
}
