@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    padding-top: 38px;
    margin: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* Fallback */
@supports not (height: 100dvh) {
  #root {
    min-height: 100vh;
  }
}


.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}



html {
    /*scroll-behavior: smooth;*/
    /* Color definition */
    --dark-blue: #23366b;
    --light-blue: #88c9ef;
    --light-blue-opacity: #88c9efab;
    --grey: #878787;
    --light-grey: #f3f3f3;
    --ultra-light-grey: #fafafa;
    --dark-grey: #595959;
    --water-green: #4CD4AA;
    --white: #fff;
    --light-orange: #edce7b;
    --light-green: #99d87d;
    --light-purple: #946cdd;
    --light-pink: #F6C2DB;
    --ultra-light-blue: #CCEDFF;
    --light-red: #dc3545;
    --shido-color-red: #f44336;
    --shido-color-blue: #03a9f4;
    --shido-color-green: #4caf50;
    --shido-color-orange: #ff9800;
    --light-yellow: #ebd93b;
}

.light-green {
    color: var(--light-green);
}

.light-orange {
    color: var(--light-orange);
}

.light-purple {
    color: var(--light-purple);
}

.light-pink {
    color: var(--light-pink);
}

.h1-override {
    font-size: 48px !important;
}

.h2-override-2 {
    font-size: 28px !important;
}

.h2-override-3 {
    font-size: 22px !important;
}

.h2-override {
    font-size: 38px !important;
}

.h3-override {
    font-size: 20px !important;
}

.h3-override-1 {
    font-size: 18px !important;
}


.h3-override-2 {
    font-size: 16px !important;
}



.shadow-text {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}


.light-green-bg {
    background-color: var(--light-green);
    border-color: var(--light-green);
}

.light-green-bg:hover {
    background-color: var(--light-green);
    border-color: var(--light-green);
}

.light-orange-bg {
    background-color: var(--light-orange);
    border-color: var(--light-orange);
}

.light-orange-bg:hover {
    background-color: var(--light-orange);
    border-color: var(--light-orange);
}

.light-red-bg {
    background-color: var(--light-red);
    border-color: var(--light-red);
}

.light-red-bg:hover {
    background-color: var(--light-red);
    border-color: var(--light-red);
}

.light-orange {
    color: var(--light-orange);
}

.light-green {
    color: var(--light-green);
}

.light-orange {
    color: var(--light-orange);
}

.light-orange {
    color: var(--light-orange);
}

.light-red {
    color: var(--light-red);
}

.ultra-light-blue-bg {
    background-color: var(--ultra-light-blue);
}

.light-purple-bg {
    background-color: var(--light-purple);
    border-color: var(--light-purple);
}

.light-purple-bg:hover {
    background-color: var(--light-purple);
    border-color: var(--light-purple);
}

.affilies-map {
    border-radius: 1em;
}

.shadow-card {
    border-width: 0px;
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.25);
}

.radius-card {
    border-width: 0px;
    border-radius: 1em;
}



.scroll-downs {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 55px;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.leaflet-container {
    width: 100%;
    height: 50vh;
}

.small-underline {
    position: relative;
    line-height: 1.2em;
}

.small-underline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2em;
    height: 0;
    width: 100px;
    border-top: 5px solid var(--light-blue);
}

.small-underline-center {
    position: relative;
    line-height: 1.2em;
}

.small-underline-center:before {
    content: '';
    position: absolute;
    left: calc(50% - 50px);
    top: 1.5em;
    height: 0;
    width: 100px;
    border-top: 5px solid var(--light-blue);
}

.phone-div {
    position: fixed;
    top: 0px;
    right: 6em;
    margin-bottom: 0px !important;
    z-index: 9995;
}

.fixed-banner {
    position: fixed;
    bottom: 0px;
    z-index: 9998;
}

/* Cookie card */

.cookie-card {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: white;
    color: white;
    width: 25%;
    min-width: 400px;
    z-index: 9999;
}

.cookie-title {
    color: #666;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    box-sizing: border-box;
}

.cookie-modal-header {
    display: block;
    width: 100%;
}


.cookie-icon {
    display: inline-block;
    text-align: center;
    color: #666;
}

.cookie-line {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.cookie-modal {
    font-size: 10pt;
    line-height: unset !important;
}

.cookie-input {
    text-align: right;
}

.cookie-footer {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: white;
}

.modal-dialog {
    padding-top: 3em;
}


.btn-close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: #666;
    cursor: pointer;
}

.btn-close-modal:hover {
    color: #000;
}

/* Fin cookie card */

.grey {
    color: var(--grey);
}

.i-popover {
    cursor: pointer;
    color: var(--grey);
}

path {
    pointer-events: none;
}

.pricing-slider {
    background-color: var(--ultra-light-blue);
    border-radius: 1em;
}

.btn-pricing-slider,
.btn-pricing-slider:hover {
    background-color: #fff !important;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-pricing-slider:hover {
    -webkit-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.25);
    text-decoration: underline !important;
}

.btn-pricing-slider.selected {
    background-color: var(--dark-blue) !important;
    color: #fff;
    border-color: var(--dark-blue);
}

.pricing-card {
    border: 1px;
    box-shadow: 0 10px 12px 0 rgba(51, 91, 130, 0.12), 0 0 1px 0 rgba(10, 31, 68, 0.1);
    border-radius: 1em;
}

.pricing-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.big {
    font-size: 1.7em;
}

.price {
    font-size: 1.5em;
    font-weight: 500
}

.no-border {
    border: 0px;
}

.cookie-consent {
    z-index: 999;
    position: fixed;
    width: 100%;
    background: var(--white) none repeat scroll 0% 0% !important;
    -webkit-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.25);
}

.cookie-consent-content {
    color: black;
    text-align: center;
}

.cookie-consent-small-btn {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9997;
    cursor: pointer;
}

ul.no-bullet {
    list-style: none;
}

ul.blue-bullet {
    list-style: none;
    /* Remove default bullets */
}

ul.blue-bullet li::before {
    /*font-size: 2em;*/
    content: "\2022";
    color: var(--light-blue);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

ul.small-bullet {
    list-style: none;
    /* Remove default bullets */
}

ul.small-bullet li::before {
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

ul.check-bullet {
    list-style: none;
    /* Remove default bullets */
}

ul.check-bullet li::before {
    content: "✓";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

button.cookie-btn {
    background-color: var(--dark-blue) !important;
    color: var(--white) !important;
    border-color: var(--dark-blue) !important;
}

.btn-nah {
    letter-spacing: 2px;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
    padding-right: 2em !important;
    padding-left: 2em !important;
    border-width: 1px !important;
    color: var(--white);
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: 0.3s;
    opacity: 1;
    background-color: var(--dark-blue);
}

.btn-nah:hover {
    color: var(--dark-blue) !important;
    background-color: var(--white) !important;
    border-color: var(--dark-blue) !important;
    text-decoration: underline !important;
}


.btn-nahi {
    letter-spacing: 2px;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
    padding-right: 2em !important;
    padding-left: 2em !important;
    border-width: 1px !important;
    border-color: var(--dark-blue);
    background-color: var(--white);
    border-radius: 100px !important;
    transition: 0.3s;
    opacity: 1;
    color: var(--dark-blue);
}

.btn-nahi:hover {
    background-color: var(--dark-blue) !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
    text-decoration: underline !important;
}

.btn-sm:hover {
    color: var(--dark-blue) !important;
    background-color: var(--white) !important;
}



.btn-analyse {
    letter-spacing: 1.2px;
    padding-top: 0.7em !important;
    padding-bottom: 0.7em !important;
    padding-right: 1em !important;
    padding-left: 1em !important;
    border-width: 1px !important;
    color: var(--white);
    border-radius: 20px !important;
    transition: 0.3s;
    opacity: 1;
    border: solid;
    background-color: var(--dark-blue);
    position: relative;
    top: 0.5em;
}

.btn-analyse:hover {
    color: var(--dark-blue) !important;
    background-color: var(--white) !important;
    border-color: var(--dark-blue) !important;
    text-decoration: none;
}

.btn-analyse .underline-hover {
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.btn-analyse:hover .underline-hover {
    text-decoration: underline;
}


.btn-pricing-slider-2 .underline-hover {
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.btn-pricing-slider-2 .underline-hover {
    text-decoration: underline;
}

.btn-nah .underline-hover {
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.btn-nah .underline-hover {
    text-decoration: underline;
}



button.btn-find-map {
    letter-spacing: 2px;
    border-width: 1px !important;
    border-color: var(--dark-blue) !important;
    color: var(--white) !important;
    border-radius: 100px !important;
    transition: 0.3s;
    opacity: 1;
    background-color: var(--dark-blue) !important;
    /*    box-shadow: 0px 5px 20px 1px var(--grey);*/
}

button.btn-map {
    background-color: var(--dark-blue) !important;
    /*    box-shadow: 0px 5px 20px 1px var(--grey);*/
}

.btn-cc {
    font-size: 12px;
    border-radius: 5px !important;
    /*    padding: 0px 0px 0px 0px;*/
    background-color: var(--dark-blue) !important;
    color: var(--white) !important;
    text-align: center;
}



button.white {
    background-color: var(--white) !important;
    color: var(--dark-blue) !important;
    border-color: var(--white) !important;
    /*    box-shadow: 0px 0px 0px 1px var(--grey);*/
}


.light-grey {
    color: var(--light-grey);
}

.badge-nah {
    background-color: var(--light-blue);
}

.gradiant-nah {
background: linear-gradient(120deg, #273a74, #83c7f9);

}

.gradiant-bot-gray {
    background: linear-gradient(180deg, #fff 75%, #f3f3f3 100%) repeat-x;
}

.gradiant-top-gray {
    background: linear-gradient(0deg, #fff 75%, #f3f3f3 100%) repeat-x;
}

.margin-auto {
    margin: auto !important;
}

.align-right {
    text-align: right;
}

.card-nah {
    border-radius: 5px;
    box-shadow: 0px 5px 10px 1px var(--grey);
}

.img-circle {
    border-radius: 50%;
}

.italic {
    font-style: italic;
}

.faq {
    border: 1px solid var(--grey);
    border-radius: 3px;
    background-color: var(--light-grey);
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 1em;
    cursor: pointer;
}

.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.bold {
    font-weight: 500;
}

.featured {
    overflow: hidden;
}

.size-80 {
    font-size: 80%;
}

.popular-banner {
    display: block;
    background: var(--light-green);
    color: #fff;
    transform: rotate(-45deg);
    transform-origin: top left;
    position: absolute;
    top: 75px;
    left: -22px;
    padding: 2px 50px 0 40px;
    font-size: 14px;
    text-transform: uppercase;
}

.uppercase {
    text-transform: uppercase;
}

.entry-content {
    margin-top: 0;
}

.green {
    color: var(--water-green) !important;
}

.grey-text {
    color: var(--grey);
}

.green-quote {
    border-left: 5px solid;
    padding-left: 20px;
    font-size: 14px;
    color: var(--water-green) !important;
    border-color: var(--water-green);
}



.same-size {
    padding-bottom: 20px;
}

.same-size>div {
    height: 100%;
}

.center-btn {
    justify-content: center;
    display: flex;
}

.right-btn {
    justify-content: right;
    display: flex;
}



.btn-nahibu,
.btn-nahibu-simple {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nahibu:hover,
.btn-nahibu-simple:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dropdown a propos produits */

.dropdown-menu {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item:active {
    background-color: var(--light-grey);
}






/* NAVBAR */



.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px 10px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif !important;
}

.navbar:hover {
    background-color: rgba(255, 255, 255, 1);

}


.nav-bold {
    font-family: 'Poppins', sans-serif !important;
}

.nav-tabs {
    cursor: pointer;
}

.navbar-image{
    width: 80px;
    height:auto;

}

@media screen and (max-width: 768px) {
    .navbar-image {
        width: 75px;
    }
    
}


.badge-custom-danger {
  background-color: #f77263; /* rouge personnalisé */
  color: white;
  font-size: 0.65rem;
  padding: 0.25em 0.4em;
}

.badge-custom-secondary {
  background-color: #7F7F7F; /* gris clair personnalisé */
  color: white;
  font-size: 0.65rem;
  padding: 0.25em 0.4em;
}



.navbar-brand-span[role=button] {
    padding: 15px;
    display: inline-block;
    line-height: 20px;
}

.dropdown-item {
    cursor: default !important;
}

.phone-div:hover .navbar-mail {
    color: var(--dark-blue) !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.icon-mail {
    color: grey;
}






.nav-bold:after {
    content: '';
    position: absolute;
    width: 0;
    height: 5px !important;
    border: none !important;
    /*enleve bordure dropdown*/
    display: none;
    background: var(--light-blue);
    transition: width 0.3s ease;
    top: -10px;
    left: 0;
    border-radius: 4px;
}

.nav-bold:hover {
    color: var(--light-blue);
}

.nav-bold:hover:after {
    width: 100%;
    display: block;
}

.nav-link {
    position: relative;
    display: inline-block;
    color: #7F7F7F;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif !important;
}

.nahibucom {
    font-weight: 500;
}

.nahibucom:hover {
    text-decoration: underline;
}

.underline {
    text-decoration: underline;
}

.underline-hover-all {
    text-decoration: none;
    transition: text-decoration 0.5s;
}

.underline-hover-all:hover {
    text-decoration: underline;
    transition: text-decoration 0.5s;
}



.nav-item {
    margin-left: 15px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    .nav-bold:after {
        background: transparent !important;
    }


}


/* FIN NAVBAR */

/* Prix */

.pricing-container {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Espace entre les prix */
}

.old-price {
    text-decoration: line-through;
    color: red;
}

.old-price-gray {
    text-decoration: line-through;
    color: gray;
}


.current-price {
    font-weight: bold;
}


/* FIN PRIX* */

.poppins {
    font-family: 'Poppins', sans-serif !important;
}

.capitalize {
    text-transform: uppercase !important;
}

/* Language*/

.custom-dropdown-item {
    cursor: pointer !important;
}


/* Fin language*/

#logo {
    max-height: 50px
}

.anchor {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}

.footer {
    margin-bottom: 15px;
    margin-top: 15px;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);

}

.center-flex {
    justify-content: center;
    display: flex;
}

.footer-title {
    color: var(--dark-blue) !important;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
}

.new-div {
    position: relative;
    display: inline-block;
}

.new-badge {
    position: absolute;
    right: -15px;
    top: -8px;
}

.pricing-floating-img {
    position: absolute;
    right: 5px;
    top: 5px;
}

.social {
    font-size: 30px;
    width: 30px;
    height: 30px;
    position: relative;
    object-fit: cover;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    color: #3B5998;
}

.fa-twitter {
    color: #55ACEE;
}

.fa-youtube {
    color: #bb0000;
}

.fa-instagram {
    color: #ea2c59;
}

.fa-pinterest {
    color: #cb2027;
}

.no-padding {
    padding: 0 0 0 0;
}

.no-margin {
    margin: 0 0 0 0;
}

.pb {
    padding-bottom: 5%;
}

.pt {
    padding-top: 5%;
}

.main-content {
    /*height: 100vh;*/
    width: 100%;
    padding: 0;
    border: 0;
}

.youtube-frame {
    width: 460;
    height: 260;
}

.full-page-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    min-height: 400px;
}

@media (max-height: 950px),
screen and (orientation: portrait) {
    .full-page-center {
        height: 70vh;
    }
}

.small-page-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    min-height: 350px;
}

.page-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-div {
    cursor: pointer;
}

.waiting-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65vh;
}

.full-page {
    min-height: 75vh;
    min-height: 750px;
}

.pill {
    color: var(--white) !important;
    background-color: var(--light-blue);
    border-radius: 0.25em;
}

.light-blue-bg {
    background-color: var(--light-blue);
}

.light-blue-bg-opacity {
    background-color: var(--light-blue-opacity);
}

.white-bg {
    background-color: var(--white);
}

.pill:hover {
    color: var(--white)
}

.highlight-card {
    box-shadow: 0 20px 30px -10px #333;
    z-index: 999;
}

.mobile-only {
    visibility: hidden;
    display: none;
}

.noo {
    text-decoration: line-through;
}

.quote-char {
    font-size: 3em;
    font-family: Georgia, serif;
}

.quote {
    font-size: 2em;
}

.right {
    text-align: right;
}

.crop {
    max-height: 200px;
    overflow: hidden;
}

.crop>img {
    max-height: initial;
}

.bottom {
    position: absolute;
    bottom: 0;
    margin-bottom: 1em;
}

.card-clickable {
    cursor: pointer;
}

.blue-grandient-bg {
    background-image: linear-gradient(75deg, var(--light-blue) 0%, #44bdff 100%) !important;
}

.white-grey-gradiant-bg {
    background: linear-gradient(180deg, #fff 0%, #fff 75%, #f3f3f3 100%) repeat-x;
}

.light-grey-background {
    background-color: var(--light-grey);
}

.ultra-light-grey-background {
    background-color: var(--ultra-light-grey);
}

.nahibu-bg {
    background-image: url('../locales/images/background/index-background.png');
    background-repeat: no-repeat;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-image-main {
    background: radial-gradient(circle at 20% 30%, #88c9ef 0%, #23366b 100%);
    margin-top:32px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



.background-image-mobile {
    background-size: cover;
}

.background-image {
    position: absolute;
    top: 50px;
    /*left: 0;*/
    transition: 1s;
}

.background-image-transparent {
    opacity: 0;
}

.background-image-opacity {

    opacity: 1;
}

.background-image-z-index-1 {
    z-index: -10;
}

.background-image-z-index-2 {
    z-index: -20;
}

.background-image-z-index-3 {
    z-index: -30;
}


.bg-image-scientist {
    margin-top: 35px;
    background-image: linear-gradient(rgba(35, 54, 107, 0.4), rgba(35, 54, 107, 0.4)), url("../locales/images/background/nahibu-scientist.jpg");
}


.bg-image-running {
    background-image: linear-gradient(rgba(35, 54, 107, 0.4), rgba(35, 54, 107, 0.4)), url("../locales/images/background/running.png");
}

.bg-image-consulting {
    background-image: linear-gradient(rgba(35, 54, 107, 0.4), rgba(35, 54, 107, 0.4)), url("../locales/images/background/spenahibu.png");
}

.bg-image-affilies {
    background-image: linear-gradient(rgba(35, 54, 107, 0.4), rgba(35, 54, 107, 0.4)), url("../locales/images/background/prosantenahibu.png");
    background-position: center 30%;
    margin-top: 35px;
}

.bg-image-graph {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../locales/images/background/graph-bg.png");
}


.bg-image-microbiote-intestinal {
    background-image: linear-gradient(rgba(35, 54, 107, 0.4), rgba(35, 54, 107, 0.4)), url("../locales/images/background/microbiote-intestinal.jpg");
}







.jumbotron {
    border-radius: 1em;
}

.jumbotron-light-blue {
    background-color: rgba(136, 201, 239, 0.4);
}


.bg-center {
    background-position: center center;
}

.lightblue-bg {
    background-color: #ccedff !important;
}

.blue-bg {
    background-color: var(--light-blue);
}


.blue-wave-top-bg {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxNDJweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDUxLjc2YzM2LjIxLTIuMjUgNzcuNTctMy41OCAxMjYuNDItMy41OCAzMjAgMCAzMjAgNTcgNjQwIDU3IDI3MS4xNSAwIDMxMi41OC00MC45MSA1MTMuNTgtNTMuNFYwSDB6IiBmaWxsLW9wYWNpdHk9Ii4zIi8+PHBhdGggZD0iTTAgMjQuMzFjNDMuNDYtNS42OSA5NC41Ni05LjI1IDE1OC40Mi05LjI1IDMyMCAwIDMyMCA4OS4yNCA2NDAgODkuMjQgMjU2LjEzIDAgMzA3LjI4LTU3LjE2IDQ4MS41OC04MFYwSDB6IiBmaWxsLW9wYWNpdHk9Ii41Ii8+PHBhdGggZD0iTTAgMHYzLjRDMjguMiAxLjYgNTkuNC41OSA5NC40Mi41OWMzMjAgMCAzMjAgODQuMyA2NDAgODQuMyAyODUgMCAzMTYuMTctNjYuODUgNTQ1LjU4LTgxLjQ5VjB6Ii8+PC9nPjwvc3ZnPg==);
    display: block;
    pointer-events: none;
    width: 100%;
    margin-top: -1px;
    background-size: 100% 142px;
    top: 0;
    height: 142px;
    z-index: 1;
}

.blue-wave-bottom-bg {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI0ODBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDE0MGgxMjgwQzU3My4wOCAxNDAgMCAwIDAgMHoiIGZpbGwtb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAxNDBoMTI4MEM1NzMuMDggMTQwIDAgMzAgMCAzMHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMCAxNDBoMTI4MEM1NzMuMDggMTQwIDAgNjAgMCA2MHoiLz48L2c+PC9zdmc+);
    display: block;
    pointer-events: none;
    width: 100%;
    margin-top: -1px;
    background-size: 100% 142px;
    top: 0;
    height: 142px;
    z-index: 1;
}

.bg-blend-grey {
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, .5) !important;
    background-size: cover;
}

.bg-blend-blue {
    background-blend-mode: overlay;
    background-color: rgba(136, 201, 239, 0.9) !important;
    background-size: cover;
    opacity: 0.7
}

.opacity {
    opacity: 0.5;
}

.margin {
    margin-right: 100%;
    margin-left: 100%;
}

.main-title {
    font-size: 80px;
    color: var(--white);
    padding-bottom: 10px;
}


.main-title-2 {
    font-size: 70px;
    color: var(--white);
    padding-bottom: 5px;
}

.main-title-3 {
    font-size: 55px !important;
    color: var(--white);
    padding-bottom: 5px;
}

.main-title-3 {
    font-size: 55px;
    color: var(--white);
    padding-bottom: 5px;
}

@media (max-width: 768px) {


    .main-title-3 {
        font-size: 35px !important;
    }
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.full-size {
    height: 100vh;
    width: 100%;
}

.main-title-div {
    margin-top: 25vh;
    margin-bottom: 25vh;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.second-title {
    font-size: 45px !important;
    display: block;
    margin-bottom: 20px;
}

.narrow {
    width: 90vh;
}

.dark-blue {
    color: var(--dark-blue) !important;
}

.light-blue {
    color: var(--light-blue) !important;
}

.white {
    color: var(--white);
}

.dark-grey {
    color: #666 !important
}

.btn-nahibu {
    letter-spacing: 5px;
    text-transform: uppercase !important;
    background-color: var(--dark-blue);
    padding-top: 18px !important;
    padding-right: 34px !important;
    padding-bottom: 18px !important;
    padding-left: 34px !important;
    box-shadow: 0 20px 30px -10px #333;
    border-width: 0px !important;
    font-size: 14px;
    color: var(--white);
    transition: all 300ms ease 0ms;
}


/* Bouton mot de passe oeil */
.password-input-wrapper {
    position: relative;
    height: 50px;
}

.password-toggle-button:focus {
    outline: none;
    background-color: transparent;
}

.form-feedback {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.password-toggle-button {
    position: absolute;
    right: 35px;
    top: 39%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.password-toggle-button:hover {
    background-color: rgba(15, 111, 201, 0.288);
}


/* Bouton début réinitialisation du mot de passe */

.btn-nahibu-simple {
    letter-spacing: 1px;
    background-color: #23366B !important;
    font-size: 14px;
    color: var(--white) !important;
    border: 1px solid transparent;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-nahibu-simple:hover {
    background-color: var(--white) !important;
    color: #23366B !important;
    border-color: #23366B !important;
    text-decoration: underline;
}

.btn-nahibu-simple:disabled,
.btn-nahibu-simple:disabled:hover {
    background-color: #ccc !important;
    color: #666 !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
    box-shadow: none;
    text-decoration: none;
}







.btn-light-blue {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    transition: all 300ms ease 0ms;
}

.btn-light-blue:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    letter-spacing: 1px;
}



.btn-pricing {
    transition: all 300ms ease 0ms;
}

.btn-pricing:hover {
    letter-spacing: 1px;
}

.btn-nahibu,
.btn-nahibu:active,
.btn-nahibu:visited {
    background-color: var(--dark-blue) !important;
}





.small {
    font-size: 14px;
}



.btn-nahibu:hover {
    letter-spacing: 5.5px;
}

.align-right-large-screen {
    text-align: right;
}

.nahibu-card {
    font-weight: 300;
    line-height: 1.8em;
    background-color: var(--white);
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    padding-top: 30px !important;
    padding-right: 20px !important;
    padding-bottom: 40px !important;
    padding-left: 20px !important;
    margin-bottom: 15px;
    box-shadow: 0 2px 70px 0 rgba(110, 130, 208, .18);
}

.shadow {
    box-shadow: 0 2px 50px 0 rgba(110, 130, 208, .18);
}


.fix-icon-taille{
    transform: translateY(-6px);
}

.card-text {
    font-weight: 300;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.card-pict {
    height: 75px;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    position: relative;
    text-align: center;
    width: 75px;
    background-color: #bbb;
    border-radius: 50%;
    margin-bottom: 10%;
}

.card-title {
    text-align: center;
}

/* Tablette */

@media screen and (max-width: 980px) {
    .main-title {
        font-size: 40px;
    }

    .second-title {
        font-size: 30px !important;
    }

    .personas-bg-1 {
        background-image: none;
    }

    .small-underline {
        position: relative;
        line-height: 1.2em;
    }

    .small-underline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 1.3em;
        height: 0;
        width: 70px;
        border-top: 2px solid var(--light-blue);
    }

    .circle-number {
        font-size: 1em;
    }

    .bg-image-personas {
        background-image: none;
    }

    .mobile-center {
        text-align: center;
        margin: 0 auto;
    }
}

/* Phone */

@media screen and (max-width: 767px) {
    .desktop-only {
        display: none;
        visibility: hidden;
    }

    .bg-image {
        background-position: center center;
    }

    .mobile-only {
        visibility: visible;
        display: block;
    }

    .main-title {
        font-size: 32px;
    }

    .second-title {
        font-size: 1.5rem;
    }

    .personas-bg-1 {
        background-image: none;
    }

    .small-screen-center {
        text-align: center;
    }

    .blue-wave-top-bg {
        background-image: none;
    }

    .blue-wave-bottom-bg {
        background-image: none;
    }

    .small-phone {
        width: 50%;
    }

    .align-right-large-screen {
        text-align: left;
    }

    .mobile-padding {
        padding-top: 20%;
    }

    .cookie-card {
        position: fixed;
        bottom: 0px;
        left: 0px;
        background: white;
        color: white;
        width: 100%;
        min-width: 100%;
        z-index: 9999;
    }

}

.circle {
    border-radius: 100%;
    min-width: 100px;
    min-height: 100px;
}

.elevation {
    z-index: 10;
}

.collapse-children {
    border-radius: 0px 0px 5px 5px;
    z-index: 0;
    border-color: transparent;
}

.card-hover:hover {
    box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.4);
    transform: all 0.3s;
}

.avis-client {
    height: 200px;
}

.avis-affilies {
    height: 500px;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.carousel-button-group {
    position: absolute;
    width: 110%;
    top: 53%;
    left: -5%;
}

.foreground {
    z-index: 1000;
}

.right-arrow {
    right: 0% !important;
}

.left-arrow {
    left: 0% !important;
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 360px) {
    .size-60 {
        width: 82% !important;
        margin-left: 14% !important;
        padding-top: 5% !important;
    }
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (min-width: 360px) {
    .size-60 {
        width: 80% !important;
        margin-left: 3.5rem !important;
        padding-top: 1.2rem !important;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
    .size-60 {
        width: 76% !important;
        margin-left: 5.8rem !important;
        padding-top: 1.5rem !important;
    }
}

/* Medium devices (landscape tablets, 768px and up) */

@media only screen and (min-width: 768px) {
    .size-60 {
        width: 82% !important;
        margin-left: 3.5rem !important;
        padding-top: 1rem !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    .size-60 {
        width: 76% !important;
        margin-left: 5.9rem !important;
        padding-top: 1.5rem !important;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    .size-60 {
        width: 75% !important;
        margin-left: 7.5rem !important;
        padding-top: 1.6rem !important;
    }
}

.size-60 {
    width: 76%;
    margin-left: 7.5rem;
}

.shido-super-food {
    color: var(--shido-color-green);
}

.shido-bon {
    color: var(--shido-color-blue);
}

.shido-eviter {
    color: var(--shido-color-red);
}

.shido-moderer {
    color: var(--shido-color-orange);
}

.title-404 {
    font-size: 8rem;
}

.bg-nahibu {
  background: radial-gradient(
    circle at 20% 30%,
    #3a5caa 0%,
    #1c2f66 60%,
    #152552 100%
  );
    /* Bleu Nahibu */
}


.image-404 {
    width: 100%;
    opacity: 1;
    display: block;
    position: absolute;
    transition: all 0.3s;
}

.image-404-hover {
    opacity: 0;
    width: 100%;
    display: block;
    position: absolute;
    transform: rotate(-3deg);
    transition: all 0.3s;
}

.image2-404 {
    opacity: 0;
    width: 100%;
    display: block;
    position: absolute;
    transform: rotate(2deg);
    transition: all 0.3s;
}

.image2-404-hover {
    width: 100%;
    opacity: 1;
    display: inherit;
    position: absolute;
    transform: rotate(-2deg);
    transition: all 0.3s;
}

.bg-opacity {
    margin-top: 35px;
    background-image: linear-gradient(rgba(35, 54, 107, 0.4), rgba(35, 54, 107, 0.4)), url('../locales/images/background/index-background.png');
    background-repeat: no-repeat;
    background-size: cover;

}


.consulting-banner {
    top: 80px;
    left: 0;
    margin-bottom: 0 !important;
    z-index: 999;
    font-size: 1rem;
}

.right {
    right: 0;
}

.word-spacing {
    word-spacing: 100em;
}

.bg-video {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    min-width: 100%;
}

@media only screen and (max-width: 768px) {
    .bg-video {
        max-height: 100%;
    }
}

.h1.text-home {
    font-size: 5em;
}

.text-home {
    font-size: 4em;
}

@media only screen and (max-width: 768px) {
    .h1.text-home {
        font-size: 2.5em;
    }

    .text-home {
        font-size: 2em;
    }
}

.overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}





.bg-brown {
    background-color: #4e2e1d;
}


.responsiv-anim {
    padding-left: 50vw;
}

@media only screen and (max-width: 768px) {
    .responsiv-anim {
        padding-left: 0;
    }
}

.brightness-80 {
    background-image: linear-gradient(rgba(35, 54, 107, 0.4), rgba(35, 54, 107, 0.4)), url("../locales/images/background/home-background.webp");
}

.rounded-25 {
    border-radius: 25px;
}

.rounded-15 {
    border-radius: 15px;
}

.border-light-grey {
    border-color: #e9e9e9;
}

.color-vitalite {
    color: #FCEF71;
}

.color-immunite {
    color: #98CCEE;
}

.color-confort-intestinal {
    color: #95BE98;
}

.bg-vitalite {
    background-color: #FCEF71;
    border: 3px solid #fff
}

.bg-immunite {
    background-color: #98CCEE;
    border: 3px solid #fff
}

.bg-confort-intestinal {
    background-color: #95BE98;
    border: 3px solid #fff
}


.btn-nahibu-outline {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: large;
    text-decoration: none;
    background-color: #fff;
    color: #333;
}

.btn-nahibu-outline:hover {
    background-color: transparent;
    color: #fff;
    transition: all 0.3;
    text-decoration: none;
}

.home-title {
    font-size: 3.5em;
    color: var(--white);
}

.shadow-0 {
    box-shadow: none;
}

.card-grey-light {
    background: rgb(248, 248, 248);
    background: linear-gradient(111deg, rgba(248, 248, 248, 1) 28%, rgb(239, 239, 239) 100%);
    padding: 120px 40px 40px 40px;
    border: none;
    border-radius: 0 !important;
}

.kit-absolute {
    top: -75px !important;
    left: 50% !important
}

@media screen and (max-width: 767px) {
    .kit-absolute {
        top: -75px;
        left: 35% !important;
        right: 15% !important
    }
}

.gradiant-text-1 {
    color: #23366b !important;
}

.gradiant-text-2 {
    color: #314b7d !important;
}

.gradiant-text-3 {
    color: #3f6090 !important;
}

.gradiant-text-4 {
    color: #4e76a4 !important;
}

.gradiant-text-5 {
    color: #5c8ab6 !important;
}

.gradiant-text-6 {
    color: #6a9fc9 !important;
}

.gradiant-text-7 {
    color: #78b3db !important;
}

.gradiant-text-8 {
    color: #88c9ef !important;
}

.hover-product {
    cursor: pointer;
    height: 80px;
    width: 80px;
}

.hover-product:hover {
    background-color: #33333384 !important;
    transition: all 0.3s;
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.hover-opacity:hover {
    background-color: #33333330 !important;
    transition: all 0.3s;
}



.responsive-main {
    font-size: calc(2vw + 30px);
    line-height: 1;
}


.responsive-main-2 {
    font-size: calc(2vw + 20px);
    line-height: 1;
}

.responsive-sub-main {
    font-size: calc(0.8vw + 10px);
}

.responsive-global {
    font-size: calc(0.5vw + 10px);
}

@media screen and (max-width: 767px) {
    .responsive-main {
        font-size: 7vw;
    }
    .responsive-main-2 {
        font-size: 6vw;
    }
}

.btn-hover.disabled {
    color: var(--dark-blue) !important;
    opacity: 0.5;
}

.btn-hover.disabled:hover {
    background-color: white !important;
    cursor: default;
    box-shadow: none;
}

.btn-hover:focus {
    color: darkblue;
}

.btn-hover:hover {
    text-decoration: underline !important;
    color: white !important;
    background-color: var(--dark-blue) !important;
    transition: all 0.3s;
}


.btn-pricing-slider-2 {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-pricing-slider-2:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: var(--dark-blue);
    text-decoration: underline !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-pricing-slider-2.selected {
    background-color: var(--dark-blue) !important;
    color: #fff;
    border-color: var(--dark-blue);
}


.lh-1 {
    line-height: 1;
}

.notif-container{
    width: 70px;
}

@media screen and (max-width: 768px) {
    .notif-container{
        width: 50px;
    }
    
}


.event-banner-animation {
    animation: 5s anim-lineUp ease-out infinite;
    overflow: hidden;
    display: block;
}


@keyframes anim-lineUp {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }

    20% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: translateY(0%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}


.contact-card-title {
    font-size: 1.2rem;
}

.contact-card-list {
    list-style-type: none;
    padding: 0;

    li {
        margin-top: 5px;
    }
}

.separator-vertical {
  width: 1px;
  height: 100%;
  background-color: #ccc;
}



.mobile-text p,
.mobile-text ul,
.mobile-text li {
    font-size: 16px;
    line-height: 1.7;
}

.mobile-text h5 {
    font-size: 18px;
    margin-top: 2rem;
}

.mobile-text ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {

    .mobile-text p,
    .mobile-text ul,
    .mobile-text li {
        font-size: 15px;
    }

    .mobile-text h2 {
        font-size: 22px;
    }
}

.checklist li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
}

.accordion-title {
    font-weight: 500;
    color: #002b5b;
    cursor: pointer;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.accordion-title:hover {
    background-color: #f5f5f5;
}

.accordion-title.open {
    background-color: #e9f5ff;
    font-weight: bold;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-icon.rotate {
    transform: rotate(180deg);
}


.consultation-card {
    transition: all 0.3s ease;
}

.consultation-card.selected {
    background-color: #a1c8f063 !important;
    cursor: default !important;
    /* fond pour sélection */
    border: 2px solid #003366;
}

.consultation-card:hover {
    background-color: #f9fbfe;
}

.bg-dark-blue {
    background-color: #0b113b !important;
}

.sticky-sidebar {
    position: sticky;
    top: 8em;
    align-self: flex-start;
    z-index: 10;

    max-height: calc(100vh - 8em);
    overflow-y: auto;
    padding-right: 1rem;
}

.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

.responsive-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 2px solid white;
    background: #ffffff42;
    border-radius: 10px;
}

.responsive-video {
    max-width: 400px;
    margin-left: 0 !important;
    padding-left: 0 !important;
    
    margin-right: auto !important;

    padding: 0 1rem;
    box-sizing: border-box;
}


@media screen and (max-width: 768px) {
    .responsive-video {
        max-width: 80%;
        padding: 0;
    }
    
}
.icon-fix {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fix-icon-pad {
    padding-bottom: 2px;
}

ul.kit-list li {
    list-style-type: none;
    margin-bottom: 0.5rem;
}


.icon-fix-small {
    width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-quantity {
    background-color: var(--dark-blue);
    color: white;
    border: 1px solid transparent;
    padding: 0.2rem 0.6rem;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s ease-in-out;
}

.btn-quantity-phone {
    background-color: var(--dark-blue);
    color: white;
    border: 1px solid transparent;
    padding: 0.2rem 0.6rem;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s ease-in-out;
}

.btn-quantity:hover {
    background-color: transparent !important;
    border: 1px solid var(--dark-blue) !important;
    color: var(--dark-blue);
}

.white-hover:hover{
    background-color: white !important;
    color: var(--dark-blue) !important;
}


@media screen and (max-width: 768px) {
    .btn-quantity {
        padding: 0.4em 0.8rem;
    }

}

.product-border {
    border: 1px solid var(--dark-blue);
    border-radius: 5px;
    padding: 1rem;
    
}

.shop-border {
    border: 1px solid var(--dark-blue);
    border-radius: 5px;
    padding: 0.5rem;
}


.kit-code-highlight {
  background-color: #f0f8ff; 
  border-left: 4px solid #007bff; 
  padding: 6px 10px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}


.image-responsive-width {
  width: 60%;
}

@media (min-width: 768px) {
  .image-responsive-width {
    width: 80%;
  }
}

/* Quand la modale est ouverte, on empêche de scroller derrière */
body.maintenance-lock {
  overflow: hidden !important;
}

/* Overlay qui couvre l'écran */
.maintenance-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2147483647; /* énorme pour passer devant tout */
  padding: 1.5rem;

  pointer-events: all;
}

/* Boîte centrale */
.maintenance-modal {
  position: relative;
  background: #fff;
  color: #0a0a0a;
  border-radius: 1rem;
  max-width: 420px;
  width: 100%;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.18),
    0 4px 12px rgba(0,0,0,0.12);
  padding: 1.75rem 1.5rem 1.25rem;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", Roboto, "Segoe UI", sans-serif;
}

/* Bouton de fermeture (croix) */
.maintenance-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;

  appearance: none;
  background: transparent;
  border: none;
  line-height: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}

.maintenance-close:hover {
  color: #000;
}

.maintenance-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.maintenance-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.maintenance-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

@media (min-width: 480px) {
  .maintenance-title {
    font-size: 1.25rem;
  }
}

.maintenance-text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  margin: 0 0 0.75rem;
}

.maintenance-strong {
  font-weight: 600;
  color: #000;
}

.maintenance-smallprint {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #666;
  margin: 0;
}
