/* =============================================================
   MP-Plus Formation Widget — widget-formation.css  v2.6.0
   Default colors match mp-plus.com: primary #013f5e, CTA #018fd5
   Colors injected as CSS custom properties on .mpp-formation
   ============================================================= */

.mpp-formation *, .mpp-formation *::before, .mpp-formation *::after { box-sizing: border-box; }
.mpp-formation { font-family: inherit; color: #333; }

/* ═══════════════════════════════════════════════════════════
   OUTER GRID  2/3 left + 1/3 right (hero → content → sidebar)
══════════════════════════════════════════════════════════ */
.mpp-outer {
    display: grid;
    /* Right (calendar) column needs a guaranteed minimum width, otherwise the
       mp-event-manager app falls back to its unskinned/compact layout instead of
       the 3-column date|info|image card skin. minmax(0,…) lets the left column
       shrink instead of squeezing the calendar. */
    grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) { .mpp-outer { grid-template-columns: 1fr; } }

/* Left col: hero + infobar + actions + content, stacked flush */
.mpp-left { display: flex; flex-direction: column; gap: 0; }

/* Right col: calendar + sidebar stacked */
.mpp-right { display: flex; flex-direction: column; gap: 12px; }

/* Hero */
.mpp-hero-wrap { position: relative; border-radius: 8px 8px 0 0; overflow: hidden; background: #000; border: 1px solid #dde3ea; border-bottom: none; }
.mpp-hero-img  { width: 100%; height: auto; display: block; }

/* Video */
.mpp-video-thumb,
.mpp-sidebar-video { position: relative; overflow: hidden; background: #000; cursor: pointer; }
.mpp-video-thumb { border-radius: 0; /* inherits from mpp-hero-wrap */ }
.mpp-sidebar-video { border-radius: 8px; aspect-ratio: 16/9; }
.mpp-video-thumb img,
.mpp-sidebar-video img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .92; transition: opacity .2s; }
.mpp-video-thumb:hover img,
.mpp-sidebar-video:hover img { opacity: 1; }
.mpp-video-iframe-wrap { position: absolute; inset: 0; }
.mpp-video-iframe-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Play button */
.mpp-play-btn {
    position: absolute; inset: 0; margin: auto;
    width: 64px; height: 64px;
    background: rgba(255,255,255,.88); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 2; transition: transform .2s, background .2s;
}
.mpp-play-btn:hover  { background: #fff; transform: scale(1.1); }
.mpp-play-icon       { font-size: 22px; color: var(--mpp-primary); margin-left: 4px; }
.mpp-play-btn--small { width: 44px; height: 44px; }
.mpp-play-btn--small .mpp-play-icon { font-size: 16px; }

/* Satisfaction badge */
.mpp-satisfaction-badge {
    position: absolute; top: 12px; right: 12px;
    width: 92px; height: 92px;
    display: flex; align-items: center; justify-content: center;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
    z-index: 3;
}
.mpp-satisfaction-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mpp-badge-circle-text {
    font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
    fill: var(--mpp-primary); text-transform: uppercase;
}
.mpp-badge-percent {
    position: relative; z-index: 1;
    font-size: 20px; font-weight: 800; color: var(--mpp-primary);
    background: rgba(255,255,255,.92);
    border-radius: 50%; width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    border: 2px dashed var(--mpp-primary);
}

/* Calendar */
.mpp-calendar-box {
    background: #fff; border: 1px solid #dde3ea;
    border-radius: 8px; padding: 20px 10px; text-align: center;
}
.mpp-calendar-icon {
    background: var(--mpp-primary); color: #fff;
    width: 68px; height: 68px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 12px;
}
.mpp-calendar-box h4 {
    font-size: 17px; font-weight: 800; color: var(--mpp-primary);
    text-transform: uppercase; letter-spacing: .5px; margin: 0 0 6px;
}
.mpp-calendar-sub { font-size: 13px; color: var(--mpp-primary); font-weight: 600; margin: 0 0 14px; }
/* The calendar is rendered by an external app (mp-event-manager) inside its own
   shadow DOM. `text-align`, `color`, `line-height` etc. are INHERITED and cross
   the shadow boundary, so the centered/coloured box styles above were leaking in
   and distorting the date cards. Reset inherited props here so the app renders
   with its own native layout (matching the standalone shortcode). */
.mpp-cal-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    color: #6e6b7b;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: normal;
    text-transform: none;
    font-weight: 400;
}
.mpp-cal-inner #mp-app-wrapper,
.mpp-cal-inner #mp-event-manager-app { width: 100% !important; max-width: 100% !important; }

/* ═══════════════════════════════════════════════════════════
   INFO BAR  — mapped from .training-info-grid / .training-module
══════════════════════════════════════════════════════════ */
.mpp-infobar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    border: 1px solid #dde3ea;
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin: 0;
    overflow: hidden;
}

/* .training-module */
.mpp-infobar-item {
    flex: 1 1 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 16px 12px;
    font-size: 15px; /* matches .training-module font-size */
    border-right: 1px solid #dde3ea;
}
.mpp-infobar-item:last-child { border-right: none; }

@media (max-width: 600px) {
    /* .training-info-grid mobile */
    .mpp-infobar {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 15px;
        display: grid; /* switch to grid at mobile like training-info-grid */
    }
    /* .training-module mobile */
    .mpp-infobar-item {
        font-size: 15px;
        flex-basis: 100%;
        border-right: none;
        border-bottom: 1px solid #dde3ea;
    }
    .mpp-infobar-item:last-child { border-bottom: none; }
}

.mpp-infobar-icon { width: 44px; height: 44px; margin-bottom: 4px; }
.mpp-infobar-icon img { width: 44px; height: 44px; display: block; object-fit: contain; }
.mpp-infobar-label    { font-size: 11px; text-transform: uppercase; color: #888; font-weight: 600; letter-spacing: .5px; margin: 0; }
.mpp-infobar-value    { font-size: 14px; font-weight: 700; color: #1a1a2e; margin: 0; }
.mpp-infobar-sub      { font-size: 11px; color: #666; margin: 0; }
.mpp-infobar-badge    { font-size: 13px; font-weight: 700; color: var(--mpp-primary); text-transform: uppercase; letter-spacing: .3px; }
.mpp-infobar-badge-sm { font-size: 11px; font-weight: 700; color: var(--mpp-primary); text-transform: uppercase; letter-spacing: .5px; margin: 0; }
.mpp-infobar-promo    { color: #c0392b; }

/* ═══════════════════════════════════════════════════════════
   ACTION BUTTONS  — mapped from .training-button
══════════════════════════════════════════════════════════ */
.mpp-actions {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; margin: 12px 0 8px; /* tight gap below infobar */
}
.mpp-ordres-wrap { position: relative; width: 100%; text-align: center; }

/* .training-button — full-width, max 240px on mobile */
.mpp-btn-ordres {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 14px 24px;
    background: var(--mpp-primary); color: #fff;
    border: none; border-radius: 6px; cursor: pointer;
    font-size: 16px; font-weight: 700; letter-spacing: .3px;
    transition: opacity .2s;
}
.mpp-btn-ordres:hover { opacity: .88; }
.mpp-btn-ordres-icon { font-size: 18px; }

@media (max-width: 600px) {
    /* .training-button mobile */
    .mpp-btn-ordres {
        width: 100%;
        max-width: 240px;
    }
}

/* Ordres popup — slides in from the left (matches Elementor off-canvas style) */
.mpp-ordres-popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 99998;
    background: var(--mpp-primary);
    color: #fff;
    width: 280px;
    max-width: 85vw;
    padding: 48px 24px 24px;
    box-shadow: 4px 0 20px rgba(0,0,0,.35);
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mpp-ordres-popup.is-open { transform: translateX(0); }
/* Overlay behind the panel */
.mpp-ordres-popup::before {
    content: '';
    position: fixed;
    inset: 0;
    left: 280px;
    background: rgba(0,0,0,.5);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}
.mpp-ordres-popup.is-open::before { opacity: 1; pointer-events: auto; }

.mpp-ordres-popup-close {
    position: absolute; top: 12px; right: 12px;
    background: none; color: #fff;
    border: 2px solid rgba(255,255,255,.6); border-radius: 4px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; font-weight: 700;
    line-height: 1; padding: 0;
    transition: background .15s, border-color .15s;
}
.mpp-ordres-popup-close:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.mpp-ordres-list {
    list-style: none; margin: 4px 0 0; padding: 0;
    text-align: center;
}
.mpp-ordres-list li {
    padding: 5px 0;
    font-size: 14px; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.1);
    line-height: 1.4;
}
.mpp-ordres-list li:last-child { border-bottom: none; }

.mpp-formation .mpp-btn-register {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 36px;
    background: var(--mpp-cta) !important; color: #fff !important;
    border: none; border-radius: 6px; cursor: pointer;
    font-size: 16px; font-weight: 700;
    text-decoration: none !important; transition: opacity .2s;
}
.mpp-formation .mpp-btn-register:hover { opacity: .88; color: #fff !important; }

@media (max-width: 600px) {
    /* .training-button mobile */
    .mpp-btn-register {
        width: 100%;
        max-width: 240px;
    }
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTENT + SIDEBAR  (inside mpp-left / mpp-right)
══════════════════════════════════════════════════════════ */
.mpp-main-content { font-size: 15px; line-height: 1.75; color: #333; margin-top: 8px; }
.mpp-course-title {
    font-size: 26px; font-weight: 800;
    color: var(--mpp-primary); margin: 0 0 12px; line-height: 1.3;
}

/* Sidebar */
.mpp-sidebar { display: flex; flex-direction: column; gap: 10px; }

.mpp-sidebar-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 16px; border-radius: 6px; border: none; cursor: pointer;
    font-size: 14px; font-weight: 600; text-decoration: none;
    text-align: center; transition: opacity .2s;
}
.mpp-sidebar-btn--dark { background: var(--mpp-primary); color: #fff; }
.mpp-sidebar-btn--dark:hover { opacity: .88; color: #fff; }

.mpp-sidebar-formateur { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mpp-sidebar-formateur-name { font-size: 16px; font-weight: 700; color: var(--mpp-primary); margin: 4px 0 0; text-align: center; }
.mpp-sidebar-formateur-photo { width: 100%; max-width: 240px; height: auto; border-radius: 4px; display: block; }

/* Social share — navy square buttons with white icons (matches site design) */
.mpp-formation .mpp-social-share { display: flex; gap: 10px; justify-content: center; padding: 4px 0; }
.mpp-formation .mpp-share-btn {
    display: inline-flex !important; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 6px;
    background: var(--mpp-primary) !important;
    color: #fff !important; text-decoration: none !important;
    transition: opacity .2s;
}
.mpp-formation .mpp-share-btn:hover { opacity: .85; color: #fff !important; }
.mpp-formation .mpp-share-btn svg { width: 18px; height: 18px; fill: currentColor; }
.mpp-formation .mpp-share-btn.mpp-share-email svg,
.mpp-formation .mpp-share-btn svg[stroke] { stroke: currentColor; }

/* Social links in formateur tab */
.mpp-formation .mpp-social-links { display: flex; gap: 10px; margin-top: 16px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   TABS  — scoped from .custom-tabs / .custom-tab
══════════════════════════════════════════════════════════ */
.mpp-tabs { margin-top: 32px; }

/* .custom-tabs */
.mpp-tab-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    font-family: inherit;
    border-bottom: none; /* overridden by gap-based grid layout */
}

/* wrapper div — invisible, just fills the grid cell */
.mpp-tab-item {
    display: contents; /* let .mpp-tab-btn be the actual grid child */
}

/* .custom-tab */
.mpp-tab-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 55px !important;
    width: 100% !important;
    padding: 14px 20px !important;
    background: #f0f1f2 !important;
    color: #082947 !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

/* .custom-tab:hover */
.mpp-tab-btn:hover {
    background: #e3e6e8 !important;
    color: #082947 !important;
}

/* .custom-tab.active */
.mpp-tab-btn.active,
.mpp-tab-btn[aria-selected="true"] {
    background: #213f5d !important;
    color: #ffffff !important;
}

/* .custom-tab.active:hover */
.mpp-tab-btn.active:hover,
.mpp-tab-btn[aria-selected="true"]:hover {
    background: #213f5d !important;
    color: #ffffff !important;
}

/* Panels container */
.mpp-tab-panels {
    border: 1px solid #dde3ea;
    border-top: none;
    margin-top: 0;
}
.mpp-tab-panel {
    display: none;
    padding: 28px 24px;
    font-size: 15px; line-height: 1.75;
    background: #fff;
}
.mpp-tab-panel.active { display: block; }

/* @media (max-width: 767px) — .custom-tabs + .custom-tab */
@media (max-width: 767px) {
    .mpp-tab-nav {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .mpp-tab-btn {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 15px;
    }
}

/* @media (max-width: 480px) — .custom-tabs single column */
@media (max-width: 480px) {
    .mpp-tab-nav {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION  — scoped from .custom-faq-accordion styles
   Targets Elementor's Nested Accordion widget (<details>/<summary>
   markup with e-n-accordion* classes) rendered inside the
   Description tab
══════════════════════════════════════════════════════════ */
.mpp-formation .e-n-accordion {
    border: none !important;
}
.mpp-formation .e-n-accordion-item {
    border: 1px solid #d5dbe1 !important;
    background: #ffffff;
    margin-bottom: 10px;
}
.mpp-formation .e-n-accordion-item + .e-n-accordion-item {
    border-top: 1px solid #d5dbe1 !important;
}
.mpp-formation .e-n-accordion-item-title {
    padding: 9px 12px !important;
    background: #ffffff !important;
    color: #0d2f50 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    border: none !important;
}
.mpp-formation .e-n-accordion-item-title-text {
    color: #0d2f50 !important;
    font-weight: 700 !important;
    font-size: inherit !important;
    margin: 0 !important;
}
.mpp-formation .e-n-accordion-item-title-icon {
    color: #0d2f50 !important;
    font-size: 20px !important;
    margin-right: 10px;
}
.mpp-formation .e-n-accordion-item > [role="region"] {
    border: none !important;
    padding: 0 14px 14px 42px !important;
    color: #23384d !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    background: #ffffff !important;
}

@media (max-width: 767px) {
    .mpp-formation .e-n-accordion-item-title {
        font-size: 15px !important;
        padding: 10px 12px !important;
    }
    .mpp-formation .e-n-accordion-item-title-icon {
        font-size: 18px !important;
        margin-right: 8px;
    }
    .mpp-formation .e-n-accordion-item > [role="region"] {
        padding: 0 12px 14px 36px !important;
        font-size: 14px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM ACCORDION (Title / Boite)
   Self-contained accordion built into the widget — does not
   rely on any Elementor accordion widget/markup. Content comes
   from ACF fields titre_1/boite_1 … titre_4/boite_4.
══════════════════════════════════════════════════════════ */
.mpp-formation .mpp-accordion-wrap { margin-top: 24px; }
.mpp-formation .mpp-accordion-heading {
    font-size: 22px !important; font-weight: 800 !important; color: var(--mpp-primary) !important;
    margin: 0 0 14px !important;
}
.mpp-formation .mpp-accordion { display: flex; flex-direction: column; }
.mpp-formation .mpp-accordion-item {
    border: 1px solid #e2e6ea !important;
    background: #ffffff;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
}
.mpp-formation .mpp-accordion-title {
    display: flex; align-items: center; justify-content: flex-start;
    width: 100%; text-align: left;
    margin: 0;
    padding: 12px 16px;
    background: #ffffff !important;
    color: var(--mpp-primary) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    border: none;
    cursor: pointer;
    gap: 12px;
    transition: background .15s ease;
}
.mpp-formation .mpp-accordion-title:hover,
.mpp-formation .mpp-accordion-title:focus { background: #f6f8fa !important; color: var(--mpp-primary) !important; }
.mpp-formation .mpp-accordion-title:hover .mpp-accordion-title-text,
.mpp-formation .mpp-accordion-title:hover .mpp-accordion-icon { color: var(--mpp-primary) !important; }
.mpp-formation .mpp-accordion-title-text { flex: 1; color: var(--mpp-primary) !important; }
.mpp-formation .mpp-accordion-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    color: var(--mpp-primary);
    font-size: 20px; font-weight: 400; line-height: 1;
    flex-shrink: 0;
}
.mpp-formation .mpp-accordion-icon-minus { display: none; }
.mpp-formation .mpp-accordion-title[aria-expanded="true"] .mpp-accordion-icon-plus  { display: none; }
.mpp-formation .mpp-accordion-title[aria-expanded="true"] .mpp-accordion-icon-minus { display: inline; }
.mpp-formation .mpp-accordion-item.is-open .mpp-accordion-title { background: #f6f8fa; border-bottom: 1px solid #e2e6ea; }
.mpp-formation .mpp-accordion-panel { background: #ffffff; }
.mpp-formation .mpp-accordion-body {
    padding: 16px;
    color: #23384d;
    font-size: 15px;
    line-height: 1.6;
}
.mpp-formation .mpp-accordion-body > *:first-child { margin-top: 0; }
.mpp-formation .mpp-accordion-body > *:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
    .mpp-formation .mpp-accordion-heading { font-size: 19px !important; }
    .mpp-formation .mpp-accordion-title { font-size: 15px; padding: 11px 12px; }
    .mpp-formation .mpp-accordion-body  { padding: 12px; font-size: 14px; }
}

/* Formateur tab – 2 columns */
.mpp-formateur-layout {
    display: grid; grid-template-columns: 220px 1fr;
    gap: 40px; align-items: start;
}
@media (max-width: 700px) { .mpp-formateur-layout { grid-template-columns: 1fr; } }
.mpp-formateur-left  { text-align: center; }
.mpp-formateur-photo { width: 100%; max-width: 220px; height: auto; border-radius: 4px; display: block; margin: 0 auto 12px; }
.mpp-formateur-photo-name { font-size: 15px; font-weight: 700; color: var(--mpp-primary); margin: 0; }
.mpp-formateur-bio-label  { display: block; font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.mpp-formateur-title { font-size: 28px; font-weight: 800; color: var(--mpp-primary); margin: 0 0 16px; }

/* ═══════════════════════════════════════════════════════════
   VIDEO LIGHTBOX
══════════════════════════════════════════════════════════ */
.mpp-lightbox {
    position: fixed; inset: 0; z-index: 999999;
    display: flex; align-items: center; justify-content: center;
}
.mpp-lightbox-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.85);
}
.mpp-lightbox-content {
    position: relative; z-index: 1;
    width: 90vw; max-width: 900px;
}
.mpp-lightbox-close {
    position: absolute; top: -40px; right: 0;
    background: none; border: none; color: #fff;
    font-size: 32px; cursor: pointer; line-height: 1; padding: 0;
    opacity: .8; transition: opacity .2s;
}
.mpp-lightbox-close:hover { opacity: 1; }
.mpp-lightbox-iframe-wrap {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    background: #000; border-radius: 4px;
}
.mpp-lightbox-iframe-wrap iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* Hero play button (lightbox trigger) */
.mpp-hero-wrap .mpp-lightbox-trigger {
    position: absolute; inset: 0; margin: auto;
    width: 72px; height: 72px;
    background: rgba(255,255,255,.9); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 3; transition: transform .2s, background .2s;
}
.mpp-hero-wrap .mpp-lightbox-trigger:hover { background: #fff; transform: scale(1.1); }
.mpp-hero-wrap .mpp-lightbox-trigger .mpp-play-icon { font-size: 26px; color: var(--mpp-primary); margin-left: 6px; }

/* ═══════════════════════════════════════════════════════════
   TÉMOIGNAGES CAROUSEL
══════════════════════════════════════════════════════════ */
.mpp-carousel { position: relative; padding: 10px 48px 48px; }

.mpp-carousel-track { overflow: hidden; }

.mpp-carousel-slide { display: none; text-align: center; padding: 20px 40px; }
.mpp-carousel-slide.active { display: block; }

.mpp-temoignage-quote {
    font-size: 16px; font-style: italic;
    color: #444; line-height: 1.75;
    margin-bottom: 20px;
}
.mpp-temoignage-quote p { margin: 0; }

.mpp-temoignage-author { font-size: 15px; }
.mpp-temoignage-author strong { display: block; font-weight: 700; color: var(--mpp-primary); margin-bottom: 4px; }
.mpp-temoignage-author span  { color: #666; font-size: 14px; }

/* Prev / Next arrows */
.mpp-carousel-prev,
.mpp-carousel-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    font-size: 36px; color: #bbb; line-height: 1;
    padding: 0 8px; transition: color .2s;
}
.mpp-carousel-prev:hover,
.mpp-carousel-next:hover { color: var(--mpp-primary); }
.mpp-carousel-prev { left: 0; }
.mpp-carousel-next { right: 0; }

/* Dot pagination */
.mpp-carousel-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
}
.mpp-carousel-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #ccc; border: none; cursor: pointer;
    padding: 0; transition: background .2s;
}
.mpp-carousel-dot.active { background: var(--mpp-primary); }
