/* Import d'une police Ã©lÃ©gante (remplacez-la par une police de votre choix) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Déclaration de la police Neuropol Custom */
@font-face {
    font-family: 'Neuropol Custom';
    src: url('https://assets.team-réality.com/assets/fonts/neuropol/Neuropol X Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    overflow-x: hidden;
}


h1, h2, h3 {
    font-weight: 400;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width : 0px) {
    .shop_wrapper {
        width: 100%;
        height: auto;
        margin: 40px 0px;
    }

    .shop_container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .shop_img {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .shop_img>img {
        width: 100%;
    }

    .shop_text {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .shop_text>h1 {
        font-family: sans-serif;
        font-size: 2rem;
        margin: 20px 0px 0px 0px;
    }

    .shop_text>p {
        font-family: sans-serif;
        font-size: 1.25rem;
        margin: 10px 0px 0px 0px;
    }

    .view-all-btn {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        border: 1px solid var(--primary-color);
        padding: 1.2rem 2.5rem;
        /* Augmentation du rembourrage */
        margin-top: 2rem;
        font-size: 1.1rem;
        /* Augmentation de la taille de la police */
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
    }

    .view-all-btn:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }
}

@media screen and (min-width : 768px) {
    .shop_wrapper {
        width: 100%;
        height: auto;
        display: flex;
        margin: 40px 0px;
        justify-content: center;
        align-items: center;
    }

    .shop_container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 50px;
    }

    .shop_img {
        width: 40%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .shop_img>img {
        width: 100%;
    }

    .shop_text {
        width: 75%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}