/* =============================================
   Advanced Mobile Menu — style.css
   ============================================= */

/* Trigger Button */
.ammob-trigger-btn-4af2743e {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 24px;
    color: #1A2B38;
}

/* Fullscreen Overlay */
.ammob-fullscreen-4af2743e {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ammob-fullscreen-4af2743e.ammob-is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.ammob-header-4af2743e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    flex-shrink: 0;
}
.ammob-logo-4af2743e {
    height: 30px;
    width: auto;
    object-fit: contain;
}
.ammob-close-btn-4af2743e {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border-radius: 8px;
    border: none;
    background: #F4F2FA;
    color: #5F55A4;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Body */
.ammob-body-4af2743e {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 100px 24px;
}

/* Accordions */
.ammob-accordions-4af2743e {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.ammob-acc-item-4af2743e {
    border-bottom: 1px solid #F3F4F6;
}
.ammob-acc-header-4af2743e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
}
.ammob-acc-header-4af2743e h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1A2B38;
    line-height: 1.3;
}
.ammob-acc-icon-4af2743e {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(95, 85, 164, 0.1);
    color: #5F55A4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.ammob-acc-icon-4af2743e svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
.ammob-acc-item-4af2743e.ammob-active .ammob-acc-icon-4af2743e svg {
    transform: rotate(180deg);
}
.ammob-acc-content-4af2743e {
    display: none;
    padding-bottom: 20px;
}

/* ── Cards Grid ─────────────────────────────────────────────── */
.ammob-cards-grid-4af2743e {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0;
}

/* Card */
.ammob-card-4af2743e {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    text-decoration: none;
}

/* Image / Icône carrée */
.ammob-card-thumb-4af2743e {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #F3F4F6;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ammob-card-thumb-4af2743e img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.ammob-card-thumb-4af2743e i {
    font-size: 20px;
    color: #5F55A4;
}

/* Placeholder quand pas d'image */
.ammob-card-thumb-placeholder-4af2743e {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #F3F4F6;
    flex-shrink: 0;
}

/* Texte */
.ammob-card-text-4af2743e {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ammob-card-text-4af2743e h5 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1A2B38;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ammob-card-text-4af2743e p {
    margin: 0;
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Badge */
.ammob-card-badge-4af2743e {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    background: rgba(95,85,164,0.1);
    color: #5F55A4;
    margin-bottom: 5px;
    width: fit-content;
}

/* Footer Actions */
.ammob-footer-actions-4af2743e {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.ammob-btn-4af2743e {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
}

.ammob-btn-outline-4af2743e {
    background: transparent;
    border: 1.5px solid rgba(95,85,164,0.25);
    color: #5F55A4;
}

.ammob-btn-solid-4af2743e {
    background: #5F55A4;
    color: #ffffff;
    border: 1.5px solid transparent;
}

/* Floating Help Btn */
.ammob-help-btn-4af2743e {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #ffffff;
    border: 1.5px solid rgba(0,0,0,0.08);
    color: #5F55A4;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
