/* OAcom Template - Components & Utilities */

/* Top toolbar (contact pill + favorites + share) — hidden by default,
   revealed when the page is scrolled (`body.is-toolbar-visible`), in sync
   with the hamburger menu container. Permanently hidden on dedicated
   contact pages via `body.hide-toolbar`. */
.oacom-contact-fab,
.oui-favorites-top-right,
.oui-share-top-right {
    opacity: 0;
    pointer-events: none;
}

/* Contact pill: fade + slide in from the left */
.oacom-contact-fab {
    transform: translateX(-8vw);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Favourites + share icons: scale up from center with a slight overshoot ("bump") */
.oui-favorites-top-right,
.oui-share-top-right {
    transform: scale(0);
    transform-origin: center center;
    transition: opacity 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.is-toolbar-visible .oacom-contact-fab,
body.is-toolbar-visible .oui-favorites-top-right,
body.is-toolbar-visible .oui-share-top-right {
    opacity: 1;
    pointer-events: auto;
}

body.is-toolbar-visible .oacom-contact-fab {
    transform: translateX(0);
}

body.is-toolbar-visible .oui-favorites-top-right,
body.is-toolbar-visible .oui-share-top-right {
    transform: scale(1);
}

/* Stagger: favourite first, share after a short beat */
body.is-toolbar-visible .oui-favorites-top-right {
    transition-delay: 0.15s;
}

body.is-toolbar-visible .oui-share-top-right {
    transition-delay: 0.30s;
}

/* On /rdv and /prise-de-contact (page wrappers add body.hide-toolbar via
   index.php) the toolbar never appears — display: none also removes the
   contact-fab DOM from interactive layout entirely. */
body.hide-toolbar .oacom-contact-fab,
body.hide-toolbar .oui-favorites-top-right,
body.hide-toolbar .oui-share-top-right {
    display: none !important;
}

/* ============================================================
   Light/dark adaptive toolbar — driven by JS that samples the
   background behind the toolbar and toggles `body.toolbar-on-light`.
   Default (dark / textured backgrounds): light glass + white icons.
   On light backgrounds: dark-tinted glass + dark icons so everything
   stays readable, like the OA logo's per-page colour swap.
   ============================================================ */
/* TRIGGER PILL — bump contrast on light bg: darker glass + dark icons */
body.toolbar-on-light .oacom-contact-fab__trigger {
    background: rgba(20, 24, 28, 0.32) !important;
    border-color: rgba(20, 24, 28, 0.32) !important;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

body.toolbar-on-light .oacom-contact-fab__main,
body.toolbar-on-light .oacom-contact-fab__icon,
body.toolbar-on-light .oacom-contact-fab__label,
body.toolbar-on-light .oacom-contact-fab__chevron {
    color: #ffffff !important;
    stroke: currentColor !important;
}

body.toolbar-on-light .oacom-contact-fab__caret {
    border-left-color: rgba(255, 255, 255, 0.30) !important;
    color: #ffffff !important;
}

body.toolbar-on-light .oacom-contact-fab__main:hover,
body.toolbar-on-light .oacom-contact-fab__caret:hover {
    background: rgba(255, 255, 255, 0.10) !important;
}

/* DROPDOWN PANEL — fully readable dark glass on light bg.
   Default panel uses white-translucent glass (rgba(255,255,255,0.12)) with
   white text; on a light page that's invisible. Swap to a near-opaque dark
   wash so the glass remains aesthetic but the items keep maximum contrast. */
body.toolbar-on-light .oacom-contact-fab__panel {
    background: rgba(28, 34, 38, 0.88) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.32),
        0 4px 10px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

body.toolbar-on-light .oacom-contact-fab__item {
    color: #ffffff !important;
}

body.toolbar-on-light .oacom-contact-fab__item:hover,
body.toolbar-on-light .oacom-contact-fab__item:focus-visible,
body.toolbar-on-light .oacom-contact-fab__item:active {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

/* Yellow icon inside each item already pops on dark glass — keep as-is. */
body.toolbar-on-light .oacom-contact-fab__item svg {
    color: var(--color-yellow-secondary, #F5C149) !important;
    stroke: var(--color-yellow-secondary, #F5C149) !important;
}

/* The a11y toggle is yellow at the top of the page regardless of background.
   Only swap to dark glass once the toolbar is revealed AND the bg is light. */
body.is-toolbar-visible.toolbar-on-light .oacom-a11y-toggle {
    background: rgba(20, 24, 28, 0.16) !important;
    border-color: rgba(20, 24, 28, 0.22) !important;
    color: #4A5458 !important;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

body.is-toolbar-visible.toolbar-on-light .oacom-a11y-toggle:hover {
    background: rgba(20, 24, 28, 0.24) !important;
}

body.is-toolbar-visible.toolbar-on-light .oacom-a11y-toggle svg,
body.toolbar-on-light #oui-favorites-button .oui-heart-icon,
body.toolbar-on-light #oui-share-button  .oui-share-icon {
    color: #4A5458 !important;
    stroke: #4A5458 !important;
    /* Dark drop-shadow on white bg looks like a halo — soften it. */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12)) !important;
}

/* Favourited heart keeps its pink colour regardless of bg detection. */
body.toolbar-on-light #oui-favorites-button.added .oui-heart-icon {
    color: #e91e63 !important;
    stroke: #e91e63 !important;
}

/* Smooth the swap so the toolbar doesn't flicker at section boundaries. */
.oacom-contact-fab__trigger,
.oacom-contact-fab__main,
.oacom-contact-fab__caret,
.oacom-contact-fab__icon,
.oacom-contact-fab__label,
.oacom-contact-fab__chevron,
.oacom-a11y-toggle,
.oacom-a11y-toggle svg,
#oui-favorites-button .oui-heart-icon,
#oui-share-button  .oui-share-icon {
    transition: background 0.3s ease, border-color 0.3s ease,
                color 0.3s ease, stroke 0.3s ease, box-shadow 0.3s ease,
                filter 0.3s ease;
}

/* Heart and share buttons live in the same horizontal row as the contact
   FAB pill and the always-visible accessibility toggle.
   Layout left → right: contact pill (220) → a11y toggle (~388) → heart → share. */
.oui-favorites-top-right {
    position: fixed !important;
    top: 32px !important;
    left: 468px !important;
    right: unset !important;
}

.oui-share-top-right {
    position: fixed !important;
    top: 34px !important;
    left: 516px !important;
    right: unset !important;
}

@media (max-width: 768px) {
    .oui-favorites-top-right { left: 20px !important; right: unset !important; top: 18px !important; }
    .oui-share-top-right    { left: 64px !important; right: unset !important; top: 20px !important; }
}

/* ============================================================
   OAcom accessibility toggle — custom replacement for the
   oui4all default open button. Always visible (NOT in the
   scroll-driven .is-toolbar-visible cascade) and survives the
   `body.hide-toolbar` rule so the a11y button is reachable
   everywhere, including on /rdv and /prise-de-contact.
   ============================================================ */
/* The template adds `show-oui4all` to <body> so the oui4all container/panel
   are revealed (the plugin hides them by default until that class is present).
   But we keep the plugin's OWN open button hidden — we drive the panel from our
   custom floating `.oacom-a11y-toggle`. This selector is specific enough to beat
   the plugin's `body.show-oui4all .oui4all__openbtn { display:flex !important }`. */
body.show-oui4all .oui4all-container .oui4all__openbtn,
.oui4all-container .oui4all__openbtn,
.oui4all__openbtn {
    display: none !important;
}

/* Hide the ConsentKit floating cookie icon site-wide. */
.ck-icon {
    display: none !important;
}

.oacom-a11y-toggle {
    position: fixed;
    /* Default (top of page, no toolbar visible): top-left corner, OAcom
       yellow disc. When body.is-toolbar-visible is set (after scrolling),
       the override below slides it to its toolbar slot AND morphs it into
       a glass disc with a smooth transition. */
    top: 18px;
    left: 18px;
    z-index: 9999;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc901;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #4A5458;
    cursor: pointer;
    box-shadow:
        0 8px 22px rgba(255, 201, 1, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition:
        top 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        left 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.45s ease,
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.oacom-a11y-toggle:hover {
    transform: scale(1.08);
    background: #ffd84d;
}

.oacom-a11y-toggle:focus-visible {
    outline: 2px solid rgba(255, 201, 1, 0.85);
    outline-offset: 2px;
}

.oacom-a11y-toggle svg {
    width: 22px;
    height: 22px;
    color: inherit;
    /* No drop-shadow at rest — would muddy the yellow. Re-introduced via
       the cascade below once the glass state kicks in. */
    filter: none;
    transition: filter 0.45s ease;
    /* Counter the global svg{position:absolute} rule in this file. */
    position: static !important;
    top: auto !important;
}

/* When the toolbar is revealed on scroll: slide to the toolbar slot AND
   morph from yellow to glass (light variant by default). */
body.is-toolbar-visible .oacom-a11y-toggle {
    top: 32px;
    left: 220px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.is-toolbar-visible .oacom-a11y-toggle:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.18);
}

body.is-toolbar-visible .oacom-a11y-toggle svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.30));
}

@media (max-width: 768px) {
    /* On mobile, sit at the very top-right corner above the heart cluster. */
    .oacom-a11y-toggle {
        top: 16px;
        left: auto;
        right: 16px;
        width: 34px;
        height: 34px;
    }

    .oacom-a11y-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================
   OAcom Contact FAB — glassmorphic split-button pill
   Mirrors the oacom_mobile template's `.oa-mob-contact-dropdown`:
   left half is a "Contact" link with envelope icon; right half is
   a chevron caret that toggles the panel.
   Sits BEFORE the heart icon (heart at left:220 / top:30).
   ============================================================ */
.oacom-contact-fab {
    position: fixed;
    top: 28px;
    left: 268px;
    z-index: 9999;
    line-height: 0;
}

.oacom-contact-fab__trigger {
    display: inline-flex;
    align-items: stretch;
    height: 44px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    overflow: hidden;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.oacom-contact-fab.is-open .oacom-contact-fab__trigger {
    background: rgba(255, 255, 255, 0.16);
}

/* Left half: default-action link (Contact form) — icon + label MUST sit
   inline. Use !important on display because some template/Bootstrap rules
   set svg { display: block } which would push the label below the icon. */
.oacom-contact-fab__main {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 14px 0 16px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    background: transparent !important;
    white-space: nowrap;
    transition: background 0.22s ease, color 0.22s ease;
}

.oacom-contact-fab__main:hover,
.oacom-contact-fab__main:focus-visible {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
    outline: none;
}

.oacom-contact-fab__icon {
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: 18px !important;
    height: 18px !important;
    /* Counter the global `svg { position: absolute; top: 0 }` rule below in
       this same file — without this, the envelope is pinned to the top-left
       of its positioned ancestor and detaches from the label. */
    position: static !important;
    top: auto !important;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    vertical-align: middle;
}

.oacom-contact-fab__label {
    display: inline-block !important;
    line-height: 1;
    white-space: nowrap;
}

/* Right half: chevron caret (separated by thin divider) */
.oacom-contact-fab__caret {
    flex: 0 0 auto;
    width: 44px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.22s ease;
}

.oacom-contact-fab__caret:hover,
.oacom-contact-fab__caret:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    outline: none;
}

.oacom-contact-fab__chevron {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.22s ease;
    pointer-events: none;
}

.oacom-contact-fab.is-open .oacom-contact-fab__chevron {
    transform: translateY(2px) rotate(-135deg);
}

/* Panel — glass card opening below the trigger */
.oacom-contact-fab__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.32),
        0 4px 10px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 2px;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.oacom-contact-fab.is-open .oacom-contact-fab__panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.oacom-contact-fab__item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 10px !important;
    text-transform: none !important;
    text-shadow: none !important;
    transition: background 0.22s ease;
}

.oacom-contact-fab__item:hover,
.oacom-contact-fab__item:focus-visible,
.oacom-contact-fab__item:active {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
    outline: none;
}

.oacom-contact-fab__item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-yellow-secondary, #F5C149);
    /* Counter the global `svg { position: absolute; top: 0 }` rule. */
    position: static !important;
    top: auto !important;
}

.oacom-contact-fab__item span {
    flex: 1 1 auto;
    min-width: 0;
}

@media (max-width: 768px) {
    /* On the desktop OAcom template at narrow viewports, hide the FAB —
       the dedicated mobile template (oacom_mobile / .oa-mob) ships its
       own contact dropdown inside the menu drawer. */
    .oacom-contact-fab { display: none; }
}

.container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.layout-perspectives h1.policeprincipale {
    font-family: "PolicePrincipale" !important;
    text-transform: uppercase !important;
    font-size: 6rem;
    line-height: 6.5rem;
}

.article.enjeux p {
    line-height: 1.4rem;
}

.com_contact h1 {
    font-size: 4.5rem;
}

.gris-bleu {
    color: #717F85;
}

.font-meutas-black {
    font-family: 'PolicePrincipale';
}

.btn-oaplay-yellow {
    position: relative;
    color:#FFF;
}

.btn-oaplay-yellow:before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    background-color: #ffc901;
    z-index: -1;
    border-radius: 999px;
    transition: all 1s;
}

.btn-oaplay-yellow:hover:before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: #ffc901;
    z-index: -1;
    border-radius: 8px;
    transition: all 1s;
}

h1.hero-visual__title {
    color: #FFF;
}

.layout-perspectives main {
    max-width: 1280px;
    margin: auto;
}

.article-banniere h3 {
    font-size: 2rem !important;
    line-height: 2.1rem;
    color: #FFF !important;
}

svg {
    position: absolute;
    top: 0;
}

/* Counter the legacy global `svg { position: absolute; top: 0 }` rule above
   for plugins / components that need their inline icons to flow normally.
   Add new wrappers here whenever a third-party plugin breaks. */
.oui4all svg,
.oui4all-popup svg,
.oui4all-toolbar svg,
.oacom-contact-fab svg,
.oacom-a11y-toggle svg,
#oui-favorites-button svg,
#oui-share-button svg {
    position: static !important;
    top: auto !important;
}

#svg-right {
    display: block;
    fill: #7b00e0;
    opacity: 0.5;
    right: 0;
    width: 60%;
    z-index: -10;
}

#svg-left {
    fill: #ff006a;
    margin: 0;
    width: 60%;
    z-index: -10;
}

.social_platform_icons {
    position: relative;
}

.social_platform_icons svg {
    position: relative;
}

.social_platform_icons a {
    clear: none;
    display: block;
    margin-right: 0;
    margin-bottom: 1.5rem;
}

.oui-assistant-button svg {
    margin-top: 0.6rem;
}

#oui-assistant-button svg {
    width: unset;
    height: unset;
}

#oa_play .w-66 a.btn-oaplay {
    font-size: 2rem;
    text-align: center;
}

#social a svg {
    float: right;
}

#social a {
    clear: both !important;
    margin: 2rem 0 !important;
    overflow: hidden;
}

/* Z-index hierarchy for main content sections */
#bloc-global {
    z-index: 1001;
}

#blog {
    z-index: 0;
}

@media all and (max-width: 980px) {
    h1 {
        font-size: 3em;
        font-family: 'Titan One', san-serif;
    }
}

@media all and (max-width: 480px) {
    h1 {
        font-size: 2em;
        font-family: 'Titan One', san-serif;
    }
}

/* ============================================================
   OUI4ALL accessibility panel — OAcom palette
   Plugin CSS loads after template CSS, hence !important on
   color/background overrides. Targets `.oui4all--dark` (default
   theme); the same values are mostly applied to `.oui4all--light`
   too since OAcom only has one branded look.
   Palette tokens (from design-tokens.css):
     --oa-color-primary:    #ffc901  (yellow)
     --oa-color-dark:       #4A5458  (grey-blue)
     --oa-color-grey-blue:  #717F85
     --oa-color-white:      #ffffff
   ============================================================ */

/* Panel body */
.oui4all .oui4all__panel,
.oui4all--dark .oui4all__panel,
.oui4all--light .oui4all__panel {
    background: #4A5458 !important;
    color: #ffffff !important;
    border-radius: 16px !important;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.32),
        0 6px 14px rgba(0, 0, 0, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-family: 'New Atten', 'Roboto', sans-serif !important;
}

/* Header — yellow accent strip */
.oui4all .oui4all__header,
.oui4all--dark .oui4all__header,
.oui4all--light .oui4all__header {
    background: #ffc901 !important;
    color: #4A5458 !important;
    border-bottom: none !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    padding: 12px 14px !important;
}

.oui4all .oui4all__title,
.oui4all--dark .oui4all__title,
.oui4all--light .oui4all__title {
    color: #4A5458 !important;
    font-family: 'New Atten', 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Header action buttons (reset, close) — dark on yellow */
.oui4all .oui4all__reset,
.oui4all .oui4all__close,
.oui4all--dark .oui4all__reset,
.oui4all--dark .oui4all__close,
.oui4all--light .oui4all__reset,
.oui4all--light .oui4all__close {
    background: rgba(74, 84, 88, 0.10) !important;
    color: #4A5458 !important;
    border: 0 !important;
    border-radius: 50% !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.oui4all .oui4all__reset:hover,
.oui4all .oui4all__close:hover,
.oui4all--dark .oui4all__reset:hover,
.oui4all--dark .oui4all__close:hover,
.oui4all--light .oui4all__reset:hover,
.oui4all--light .oui4all__close:hover {
    background: rgba(74, 84, 88, 0.20) !important;
    transform: scale(1.06) !important;
}

.oui4all .oui4all__reset svg,
.oui4all .oui4all__close svg,
.oui4all--dark .oui4all__reset svg,
.oui4all--dark .oui4all__close svg,
.oui4all--light .oui4all__reset svg,
.oui4all--light .oui4all__close svg {
    color: #4A5458 !important;
}

/* Option buttons (toggles) inside the panel */
.oui4all .oui4all__btn,
.oui4all--dark .oui4all__btn,
.oui4all--light .oui4all__btn {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 12px !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

.oui4all .oui4all__btn:hover,
.oui4all--dark .oui4all__btn:hover,
.oui4all--light .oui4all__btn:hover {
    background: rgba(255, 201, 1, 0.18) !important;
    border-color: rgba(255, 201, 1, 0.55) !important;
    color: #ffffff !important;
}

.oui4all .oui4all__btn svg,
.oui4all--dark .oui4all__btn svg,
.oui4all--light .oui4all__btn svg {
    color: #ffffff !important;
}

/* Active toggle — full yellow accent */
.oui4all .oui4all__btn--active,
.oui4all--dark .oui4all__btn--active,
.oui4all--light .oui4all__btn--active {
    background: #ffc901 !important;
    color: #4A5458 !important;
    border-color: #ffc901 !important;
}

.oui4all .oui4all__btn--active:hover,
.oui4all--dark .oui4all__btn--active:hover,
.oui4all--light .oui4all__btn--active:hover {
    background: #ffd84d !important;
    border-color: #ffd84d !important;
}

.oui4all .oui4all__btn--active svg,
.oui4all--dark .oui4all__btn--active svg,
.oui4all--light .oui4all__btn--active svg {
    color: #4A5458 !important;
}

.oui4all .oui4all__btn-label,
.oui4all--dark .oui4all__btn-label,
.oui4all--light .oui4all__btn-label {
    color: inherit !important;
    font-family: 'New Atten', 'Roboto', sans-serif !important;
    font-weight: 500 !important;
}

/* Slider rows — zoom / font-size / line-height / letter-spacing */
.oui4all .oui4all__arrows,
.oui4all--dark .oui4all__arrows,
.oui4all--light .oui4all__arrows {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
}

.oui4all .oui4all__arrows .oui4all__label,
.oui4all .oui4all__arrows .oui4all__size,
.oui4all--dark .oui4all__arrows .oui4all__label,
.oui4all--dark .oui4all__arrows .oui4all__size,
.oui4all--light .oui4all__arrows .oui4all__label,
.oui4all--light .oui4all__arrows .oui4all__size {
    color: #ffffff !important;
}

.oui4all .oui4all__bar,
.oui4all--dark .oui4all__bar,
.oui4all--light .oui4all__bar {
    background: rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    overflow: hidden;
}

.oui4all .oui4all__bar::after,
.oui4all--dark .oui4all__bar::after,
.oui4all--light .oui4all__bar::after {
    background: #ffc901 !important;
    border-radius: 999px !important;
}

.oui4all .oui4all__inc,
.oui4all .oui4all__dec,
.oui4all--dark .oui4all__inc,
.oui4all--dark .oui4all__dec,
.oui4all--light .oui4all__inc,
.oui4all--light .oui4all__dec {
    color: #ffc901 !important;
    background: transparent !important;
    border: 0 !important;
    transition: transform 0.2s ease !important;
}

.oui4all .oui4all__inc:hover,
.oui4all .oui4all__dec:hover,
.oui4all--dark .oui4all__inc:hover,
.oui4all--dark .oui4all__dec:hover {
    transform: scale(1.15) !important;
}

/* Footer */
.oui4all .oui4all__footer,
.oui4all--dark .oui4all__footer,
.oui4all--light .oui4all__footer {
    background: rgba(0, 0, 0, 0.18) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.oui4all .oui4all__footer-text,
.oui4all .oui4all__footer a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.oui4all .oui4all__footer a:hover {
    color: #ffc901 !important;
}

/* Custom-link rows (pulled from plugin params) */
.oui4all .oui4all__btn--custom-link {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}
.oui4all .oui4all__btn--custom-link:hover {
    background: rgba(255, 201, 1, 0.18) !important;
}
