/* ═══════════════════════════════════════════════════════
   ACCORDION SECTION — Volets repliables page produit
   ═══════════════════════════════════════════════════════ */

/* ── Conteneur ────────────────────────────────────────── */
.vp-acc {
    border-bottom: 1px solid var(--vp-border);
    margin-bottom: 0;
}

/* ── Bouton trigger ───────────────────────────────────── */
.vp-acc__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 0;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    font-family: var(--vp-font);
    outline: none;
}

.vp-acc__trigger:focus,
.vp-acc__trigger:focus-visible {
    outline: none;
}

.vp-acc__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vp-black);
    line-height: 1.2;
}

/* ── Icône + ──────────────────────────────────────────── */
.vp-acc__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--vp-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--vp-black);
    line-height: 1;
    transition: transform 0.25s ease, background 0.2s;
    user-select: none;
}

.vp-acc--open .vp-acc__icon {
    transform: rotate(45deg);
    background: var(--vp-black);
    color: var(--vp-white);
}

/* ── Corps repliable ──────────────────────────────────── */
.vp-acc__body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding-bottom 0.4s ease;
}

.vp-acc--open .vp-acc__body {
    max-height: 4000px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

/* ── Suppression du titre interne (évite doublon) ─────── */
.vp-acc__body .vp-heading {
    display: none;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .vp-acc__trigger {
        padding: 1.1rem 0;
        min-height: 52px;
    }

    .vp-acc__title {
        font-size: 1rem;
    }
}
