/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #4a4c70;
}

a {
    color: #4a4c70;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center; 
   font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 8px;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 30px #FDBE33;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FDBE33;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #FDBE33;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text i {
    font-size: 16px;
    color: #FDBE33;
    margin-right: 5px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 45px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    font-size: 16px;
    color: #FDBE33;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #FDBE33;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px 8px 15px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #FDBE33;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 45px;
        padding: 20px 60px;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #20212B !important;
        border-bottom: none;
    }
    
    .page .navbar {
        background: #20212B !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #20212B !important;
    }
    
    .navbar .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-toggler {
        order: 2;
        margin-left: auto;
        transform: scale(0.9);  /* Réduit de 10% */
        position: relative;
        top: -20px;  /* Remonte le bouton */
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

/*******************************/
/********** CAROUSEL CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: #20212B;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	width: 100vw;  /* Force 100% de la largeur de la fenêtre */
    margin-left: calc(-50vw + 50%);  /* Centre si dans un container */
}

/* Écrans moyens (tablettes et petits laptops) : zoomer pour éviter les bandes grises */
@media (min-width: 769px) and (max-width: 1366px) {
    .page-header {
        background-attachment: scroll;
        background-size: cover; /* Force à couvrir toute la largeur */
        background-position: center top;
    }
}

/* Petits écrans (mobile) : afficher l'image entière */
@media (max-width: 768px) {
    .page-header {
        background-attachment: scroll !important;
        background-size: contain;
        background-position: center top;
        padding: 150px 0 50px 0;
        min-height: 300px;
    }
}


.page-header-nouveaute {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img2/page-header-nouveaute.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.page-header h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FDBE33;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** section-yggdrasil CSS **********/
/*******************************/
.section-yggdrasil {
    position: relative;
    width: 100%;
    padding: 45px 0;
}


.section-yggdrasil .section-yggdrasil-img {
    width: 100%;
    height: 100vh;
	 background-repeat: no-repeat;
}

.section-yggdrasil .section-yggdrasil-tab {
    width: 100%;
}

.section-yggdrasil .section-yggdrasil-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.section-yggdrasil .section-yggdrasil-tab .nav.nav-pills .nav-link:hover,
.section-yggdrasil .section-yggdrasil-tab .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    padding-bottom: 7px;
    border-bottom: 3px solid #FDBE33;
}

.section-yggdrasil .section-yggdrasil-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.section-yggdrasil .section-yggdrasil-tab .tab-content .container {
    padding: 0;
}

}

/*******************************/
/********** les-illustrations CSS *********/
/*******************************/
.les-illustrations {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.les-illustrations .les-illustrations-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.les-illustrations .les-illustrations-item {
    margin: 0 15px;
    overflow: hidden;
    background: #f3f6ff;
}

.les-illustrations .les-illustrations-img {
    overflow: hidden;
}

.les-illustrations .les-illustrations-img img {
    width: 100%;
    transition: .3s;
}

.les-illustrations .les-illustrations-item:hover img {
    transform: scale(1.1);
}


.les-illustrations .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.les-illustrations .les-illustrations-text {
    padding: 0 30px;
}

.les-illustrations .les-illustrations-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.les-illustrations .les-illustrations-text p {
    margin: 0;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -220px;
    padding: 30px;
    background: #f3f6ff;
}

@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
    }
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
/*
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border: 15px solid #ffffff;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
}

.single .post-item .post-text a:hover {
    color: #FDBE33;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4c70;
    background: #FDBE33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #FDBE33;
    background: #4a4c70;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 0;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #FDBE33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #FDBE33;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
/*
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #FDBE33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #FDBE33;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #FDBE33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #4a4c70;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #FDBE33;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    background: #4a4c70;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FDBE33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
    border-radius: 0;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 5px;
    padding-top: 0px;
    background: #20212B;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 5px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #FDBE33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #dddddd;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #FDBE33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    padding: 6px 0;
}

.footer .footer-social a {
    margin-top: 5px;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #FDBE33;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}



/*******************************/
/*********CSS pour la navigation des expositions **********/
/*******************************/

.expo-nav {
    background-color: #ddd;
    padding: 10px 0;
    margin-bottom: 40px;
    position: sticky;
    top: 56px;
    z-index: 999;
}

.expo-nav .nav-pills .nav-link {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 30px;
    margin: 0 10px;
    border-radius: 5px;
    transition: all 0.3s;
}



.expo-nav .nav-pills .nav-link:hover {
    background-color: #f9fcef;
}

.expo-nav .nav-pills .nav-link.active {
    background-color: #666;
    color: #FDBE33;
}


/* ===== STYLES GALERIE D'IMAGES ===== */

/* ===== GALERIE AMÉLIORÉE - Alignement par hauteur + Titres ===== */

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    align-items:  flex-end;
    justify-content: center;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
} 

.gallery-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


.gallery-item.clicked {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


.gallery-item-title {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #4a4c70;
    background: #f8f9fa;
     min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

.gallery-error {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
    font-size: 16px;
}

/* ===== LIGHTBOX AMÉLIORÉE ===== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #4a4c70;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(253, 190, 51, 0.8);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.lightbox-nav:hover {
    background: rgba(253, 190, 51, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        gap: 15px;
        padding: 15px;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .gallery-item-title {
        font-size: 14px;
        padding: 12px;
        min-height: 45px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .lightbox-title {
        font-size: 16px;
        padding: 8px 15px;
        margin-top: 15px;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .gallery-item-title {
        font-size: 13px;
        padding: 10px;
    }
    
    .lightbox-title {
        font-size: 14px;
    }
}

/* ===== GALERIE COUV BD AVEC  DESCRIPTIONS ===== */

.gallery-desc {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

.gallery-desc-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-desc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-desc-item img {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 800px;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

/* Modal avec description */
.modal-desc {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-desc.active {
    display: flex;
}

.modal-desc-content {
    background: rgba(240, 240, 240, 0.65);
    border-radius: 12px;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    display: flex;
    gap: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.modal-desc-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-desc-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal-desc-text {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-desc-text h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
}

.modal-desc-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.modal-desc-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.modal-desc-close:hover {
    background: #e0e0e0;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .gallery-desc {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-desc-content {
        flex-direction: column;
        padding: 20px;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .modal-desc-image-container {
        flex: none;
    }
    
    .modal-desc-image {
        max-height: 50vh;
    }
    
    .modal-desc-text {
        flex: none;
    }
    
    .modal-desc-close {
        top: 10px;
        right: 10px;
    }
}


//* ===== GALERIE BOUTIQUE ===== */

.gallery-vente {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    align-items: flex-end;
    justify-content: center;
}

.gallery-vente-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 350px;
	width: 100%;
}

.gallery-vente-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-vente-image {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-vente-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.gallery-vente-info {
    padding: 15px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.gallery-vente-title {
    font-size: 18px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 15px;
    text-align: center;
}

.gallery-vente-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

.gallery-vente-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-size: 14px;
    flex: 1;
}

.gallery-vente-specs-col1,
.gallery-vente-specs-col2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-line {
    min-height: 20px;
    color: #555;
    line-height: 1.4;
}

.gallery-vente-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.gallery-vente-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
	accent-color: #7d7da9;
}

/* Checkbox N/B verrouillée - noire et non cliquable */
.checkbox-locked {
    cursor: not-allowed;
}

.checkbox-locked input[type="checkbox"] {
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
}

.checkbox-label {
    user-select: none;
}

.gallery-vente-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.gallery-vente-prix {
    font-size: 20px;
    font-weight: 700;
    color: #4a4c70;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-vente-commander {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    background: transparent;
	border: 2px solid #FDBE33; /* Filet jaune */
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
	color: #777777; /* Couleur du texte */
    font-weight: 500;
    min-height: 48px;
}

.gallery-vente-commander:hover {
    background: #e5aa2d;
}

.gallery-vente-commander:has(input[type="checkbox"]:checked) {
    background: #FDBE33 !important;
}

.gallery-vente-commander input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
	accent-color: #7d7da9;	
}

.checkbox-label-commander {
    font-size: 14px;
    font-weight: 600;
    color: #4a4c70;
    user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-vente {
        gap: 15px;
        padding: 15px;
    }
    
    .gallery-vente-item {
        max-width: 100%;
    }
    
    .gallery-vente-specs {
        gap: 10px;
    }
    
    .gallery-vente-title {
        font-size: 16px;
    }
    
    .gallery-vente-bottom {
        gap: 10px;
    }
}

/* Section Commissions */
.commissions-box {
	background-color: #FDBE33;
	padding: 30px;
	border-radius: 12px;
	border: 6px solid #4a4c70;
}

.commissions-box h2 {
	color: #4a4c70;
	margin-bottom: 20px;
}

.commissions-text p {
	color: #4a4c70;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.commissions-text ul,
.commissions-text li {
    color: #4a4c70;
}.

/* Section Commissions Bouton gris*/
.commissions-button {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-commissions {
    background-color: #4a4c70 !important;
    border-color: #4a4c70 !important;
    color: #ffffff !important;
}

.btn-commissions:hover {
    background-color: #FFE099 !important; /* Jaune clair */
    border-color: #4a4c70 !important; /* Filet gris */
    color: #4a4c70 !important;
	box-shadow: none !important; /* ← Annule l'effet inset */
}

/* PAGE NOUVEAUTE */

.product-in-grid {
    /* Prend 1 cellule de la grille comme les autres blocs */
}

.container-fluid .container {
    max-width: 100% !important;
    padding: 0 30px !important;
}

/* Conteneur principal - grille CSS */
.story-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 400px)) !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
	align-items: center !important; /* ← Aligne tous les blocs en bas */
    /* border: 3px solid red !important;*/
}


/* Chaque bloc image+texte */
.story-section {
    /* max-width enlevé */
    overflow: hidden !important;
    padding: 10px !important;
	  /*   border: 2px solid blue !important; */
}

.story-image-left,
.story-image-right {
    float: left !important;
    height: 220px !important;
    width: auto !important;
    margin-right: 15px !important;
    margin-bottom: 10px !important;
   /* border: 1px solid green !important;*/
}

.story-image-left img,
.story-image-right img {
    height: 100% !important;
    width: auto !important;
    border-radius: 8px;
    object-fit: contain;
}

.story-text,
.story-text-wrap {
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: #4a4c70 !important;
    /*border: 1px solid orange !important;*/
}

/* Texte centré */
.story-centered-text {
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    color: #4a4c70;
    padding: 15px;
	background: linear-gradient(to bottom, #d8dce0, #fff); /* ← Dégradé haut→bas */
    border-radius: 0px;
   /* border: 2px solid purple !important;*/
   }
   
   /* Visionneuse BD */
#flipbook-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Important pour mobile */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

#flipbook {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 100%;
	 margin: 0;
}

#flipbook .page img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

   /* Mentions Légales */

.page-mentions .page-header {
    background: #555555 !important;
}

.page-mentions .page-header h2 {
    color: #EEEEEE !important;
}

/**********************************************************************************************************************/          
/* ADAPTATION MOBILES ADAPTATION MOBILES ADAPTATION MOBILES ADAPTATION MOBILES */
/**********************************************************************************************************************/
@media (max-width: 768px) {
    #flipbook-container {
        padding: 10px;
    }
}

.row.align-items-start {
    align-items: flex-start !important;
}

/* ADAPTATION MOBILES navbar et carousel */
@media (max-width: 991px) {
	
    /* Navbar */
	.navbar {
		padding: 0 10px !important;
		height: 45px !important;
		display: flex !important;
		align-items: center !important;
		position: relative !important;
		z-index: 1000 !important;
	}

	.navbar-brand {
		font-size: 26px !important;
		padding: 0 !important;
		line-height: 26px !important; /* Même valeur que font-size */
		margin: -20px 0 0 0 !important;
	}

	.navbar-toggler {
		padding: 4px 8px !important;
		margin-top: 0 !important; /* Enlève le margin, flexbox centre */
	}
	
	.navbar .container-fluid {
		padding: 0 10px !important;
		height: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
}
	
	#navbarCollapse {
		position: absolute !important;
		top: 45px !important; /* Même valeur que height navbar */
		left: 0 !important;
		width: 100% !important;
		z-index: 999 !important;
		background-color: #343a40 !important;
}

/* Textes globaux mobile */
	body {
		font-size: 14px !important;
	}
	
	p {
    font-size: 14px !important;
}

h2 {
    font-size: 24px !important;
}

h3 {
    font-size: 20px !important;
}


    /* Carousel */
    .carousel-text h1 {
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }
    
    .carousel-text p {
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    .carousel-text {
        padding: 15px 12px !important;
    }
    
    /* Boutons carousel - réduire pour tenir sur 1 ligne */
    .carousel-btn .btn {
        padding: 8px 12px !important;
        font-size: 13px !important;
        margin: 0 4px 8px 4px !important;
    }
	
    .carousel-img {
        height: 250px !important;
    }
	
	/* Centrer verticalement le hamburger */
	.navbar-toggler {
		padding: 4px 8px !important;
		margin-top: 22px !important;
	}
 
	/* Réduire les carrés des chevrons carousel */
	.carousel .owl-nav .owl-prev,
	.carousel .owl-nav .owl-next {
		width: 30px !important;
		height: 30px !important;
		font-size: 16px !important;
	}
	
	/* Chevrons carousel - positionnement vertical */
	.carousel .owl-nav {
		top: 80px !important; /* Ajuste cette valeur */
	}
	
	/* Réduire espace entre carousel et Yggdrasil */
	.carousel {
		margin-bottom: 15px !important;
	}

	.section-yggdrasil {
		padding-top: 15px !important;
	    margin-bottom: 0px !important;
	}

	.les-illustrations {
		padding-top: 0px !important;
	}

/* Page BD - corrections mobile */
.page-header {
    min-height: 150px !important;
    padding: 15px 0 !important;
	margin-bottom: 15px !important;
}

.page-header h2 {
    font-size: 32px !important;
    white-space: nowrap !important;
    padding-top: 15px !important;	
}

.container-fluid.pt-2 {
    padding-top: 5px !important;
}

.section-header {
    margin-bottom: 10px !important;
}

/* Textes page BD */
.text-center.mb-4 {
    font-size: 14px !important;
}

.section-header h2 {
    font-size: 28px !important;
}

/* Albums sur 2 colonnes */
.row.pb-3 > div[class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

/* Modals albums - réduire police */
.modal-body {
    font-size: 13px !important;
}

.modal-body h5,
.modal-body h6 {
    font-size: 16px !important;
}

.modal-body p {
    font-size: 13px !important;
}

.modal-title {
    font-size: 18px !important;
}


/* Images expo en mobile */
.section-yggdrasil .section-yggdrasil-img {
    height: 350px !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* Masquer "Expo " en mobile */
.expo-text {
    display: none !important;
}

/* Réduire padding boutons expo */
.expo-nav .nav-link {
    padding: 8px 10px !important;
    font-size: 15px !important;
}


/* Ajuster sticky expo-nav */
.expo-nav {
    position: sticky !important;
    top: 0px !important; /* Hauteur de la navbar */
    z-index: 100 !important;
}

/* Ajuster image de contact*/

.contact {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.contact + .page-header,
body .page-header + .contact {
    margin-bottom: 0 !important;
}

.contact .section-header {
    margin-bottom: 5px !important;
}

.contact .section-header p {
    margin-bottom: 5px !important;
}

.contact .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact .contact-img {
    overflow: hidden !important;
}

.contact .contact-img img {
    margin-top: 0 !important;
    height: auto !important;
    width: 120% !important;
    max-width: 120% !important;
    margin-left: -20% !important;
    object-fit: contain !important;
}

.contact .contact-form {
    margin-top: -60px !important;
    padding: 20px !important;
}

/* Ajuster titre de nouveau*/
.page-nouveau .page-header h2 {
    padding-top: 60px !important;
}

body.page-nouveau div.text-center.mb-4 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Page nouveauté - forcer empilement vertical en mobile  */
.page-nouveau .row.align-items-start > div[class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}	

.page-nouveau .col-lg-3 .card {
    margin-left: 15px !important;
    margin-right: 15px !important;
}
	
/* Page nouveauté - agrandir visionneuse pleine largeur */
.page-nouveau .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page-nouveau .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.page-nouveau .row > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#flipbook-container {
    width: 100% !important;
    max-width: 100% !important;
}

#flipbook {
    width: 100% !important;
}	


/* Page nouveauté - Section Résumé mobile */
.page-nouveau .story-section {
    overflow: visible !important;
    margin-bottom: 0px !important;
    padding: 0 10px !important;
    clear: both !important;
}

.page-nouveau .story-image-left {
    float: left !important;
    width: 40% !important;
    max-width: 180px !important;
    margin: 0 15px 10px 0 !important;
}

.page-nouveau .story-image-right {
    float: left !important;
    width: 40% !important;
    max-width: 180px !important;
    margin: 0 15px 10px 0 !important;
}

.page-nouveau .story-text,
.page-nouveau .story-text-wrap {
    overflow: visible !important;
    display: block !important;
}

.page-nouveau .story-text p,
.page-nouveau .story-text-wrap p {
    text-align: left !important;
    margin: 0 0 10px 0 !important;
}

.page-nouveau .story-centered-text {
    clear: both !important;
    padding: 0 15px !important;
    text-align: left !important;
}

.page-nouveau .story-centered-text p {
    text-align: left !important;
}

.page-nouveau .container-fluid.pt-5.pb-5 .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Partie 2 - Fureteurs : image centrée, texte dessous */
.page-nouveau #section-fureteurs .story-image-right {
    float: none !important;
    display: block !important;
    margin: 0 auto 15px auto !important;
    width: 70% !important;
    max-width: 280px !important;    float: none !important;
    display: block !important;
    margin: 0 auto 15px auto !important;
    width: 70% !important;
    max-width: 280px !important;
}

/* Partie 4 - Axelle : garde le float */
.page-nouveau #section-axelle .story-image-right {
    float: left !important;
}

/* Partie 6 - Brigh : à vérifier selon le problème */
.page-nouveau #section-brigh .story-image-left {
    float: none !important;
    display: block !important;
    margin: 0 auto 15px auto !important;
    width: 70% !important;
    max-width: 280px !important;
}

/* Page nouveauté - Réduire espace après section Résumé */
.page-nouveau .container-fluid.pt-5.pb-5 {
    padding-bottom: 0px !important;
}

/* Page mentions legales */
.page-mentions p img {
    max-width: 160px;
    height: auto;
}


/* FOOTER */
/* Footer - réduire police */
.footer {
    font-size: 12px !important;
}

.footer p {
    font-size: 12px !important;
    margin-bottom: 5px !important;
}
	


}
