    #lightbox {
        position: fixed;
        z-index: 1000;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        .lightbox-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.7);
        }
        .lightbox-img {
        position: relative;
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 8px;
        box-shadow: 0 4px 32px rgba(0,0,0,0.5);
        z-index: 1;
        cursor: pointer;
        }
        #lightbox { display: none; }
        #lightbox[style*="display: flex"] { display: flex; }

.cookie-banner-desktop {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #999;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.cookie-banner-mobile {
    display: none;
}
.cookie-banner a {
    color: #999;
    text-decoration: underline;
}

.cookie-banner p {
    color: #999;
    margin-right: 20px;
}

.cookie-banner button {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    width: fit-content;
}

#cookie-buttons {
    display: flex;
    gap: 20px;
}

#accept-cookies-desktop, #accept-cookies-mobile {
    background-color: #f1d600;
    font-size: 1rem;
    color: #000;
}

#decline-cookies-desktop, #decline-cookies-mobile {
    background-color: #444;
    font-size: 1rem;
    color: white;
}
/* Classe qui masque la bannière */
.hidden {
    display: none !important;
}
@media screen and (min-width: 769px) and (max-width: 899px) {
    .cookie-banner-desktop {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #000;
        color: #999;
        padding: 15px;
        text-align: center;
        font-size: 14px;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .cookie-banner-mobile {
        display: none;
    }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
    .cookie-banner-desktop {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #000;
        color: #999;
        padding: 15px;
        text-align: center;
        font-size: 14px;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .cookie-banner-desktop p {
        font-size: 15px;
    }
    .cookie-banner-mobile {
        display: none;
    }
}
@media screen and (min-width: 386px) and (max-width: 576px) {
    .cookie-banner-desktop {
        display: none;
    }
    .cookie-banner-mobile {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #000;
        color: #999;
        padding: 15px;
        text-align: center;
        font-size: 14px;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .cookie-banner-mobile p {
        font-size: 15px;
        color: #999;
    }
    .cookie-banner-mobile a {
      color: #f1d600;
      text-decoration: underline;
    }
        .cookie-banner-mobile button {
        padding: 8px 15px;
        border: none;
        cursor: pointer;
        font-weight: bold;
        border-radius: 4px;
        /*display: block;*/
        width: fit-content;
    }
}
@media screen and (max-width: 385px) {
    .cookie-banner-desktop   {
        display: none;
    }
        .cookie-banner-mobile {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #000;
        color: #999;
        padding: 15px;
        text-align: center;
        font-size: 14px;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .cookie-banner-mobile p {
        font-size: 15px;
        color: #999;
    }
    .cookie-banner-mobile a {
      color: #f1d600;
      text-decoration: underline;
    }
    .cookie-banner-mobile button {
        padding: 8px 15px;
        border: none;
        cursor: pointer;
        font-weight: bold;
        border-radius: 4px;
        /*display: block;*/
        width: fit-content;
    }
}