.catalog-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Prend 100% de la hauteur de l'écran */
    overflow: hidden;
    background: var(--blanc10);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    z-index: 1;
    padding-bottom: 20px;
}

.navigationTerra {
    width: calc(90% - 90px);
    & ul {
        list-style: none;
        padding: 15px;
        margin: 0;
        display: flex;
        justify-content: space-around;
        color: var(--blanc);
        font-weight: bold;
        font-size: 1.2em;
        color: white;
        & li {
            padding: 10px 20px;
            cursor: pointer;
            background-color: rgba(117, 85, 162, 0.2);
            backdrop-filter: var(--blur);
            border: var(--border);
            border-radius: var(--cardRadius);
            transition: background-color 0.3s;
            &:hover {
                background-color: rgba(117, 85, 162, 0.6);
            }
        }
        & .active {
            background-color: rgba(117, 85, 162, 0.6);
        }
    }
}

.catalog-wrapper iframe {
    width: 90%;
    height: 80%;
    border: var(--border);
    border-radius: var(--cardRadius); /* Tes variables */
}
/* Sur mobile, on cache l'iframe et on montre un bouton */
.mobile-link { display: none; }

@media (max-width: 768px) {
    .catalog-wrapper { display: none; }
    .mobile-link { 
        display: flex;
        flex-direction: column;
        justify-content: center; 
        padding: 20px;
        position: relative;
        z-index: 1;
        align-items: center;
        height: 100vh;
        gap: 7.5vh;
        overflow: hidden;
        & a {
            width: 85%;
            text-align: center;
            padding: 25px;
            background-color: rgba(117, 85, 162, 0.2);
            backdrop-filter: var(--blur);
            border: var(--border);
            border-radius: var(--cardRadius);
            color: white;
            font-weight: bold;
            font-size: 1em;
            text-decoration: none;
        }
    }
}