/* === ROBOTO NORMALS === */
@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* === ROBOTO ITALIC === */
@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/Polices/Roboto/static/Roboto-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}


@font-face {
    font-family: 'Titre';
    src: url('/Polices/Titre/GreatVibes-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

:root {
    --grisClair: #F6F6F6;
    --grisNuance2: #DBD9D9;
    --grisNuance3: #757575;
    --grisFonce: #3C3C3C;
    --blanc: white;
    --noir: black;
    --vert: #145814;
    --vert-Fonce: #093109;
    --rougeRupture: #e61515;
    --couleurMiel: #E4A60A;
    --couleurMiel-Fonce: rgb(66, 57, 26);
    --ombre1: rgba(45, 49, 49, 0.15) 0px 2px 8px 0px;
    --ombre2: rgba(45, 49, 49, 0.1) 0px 4px 12px 0px;
}

.Group-Produits.Fiche-Produit {
    width: 100%;
    max-width: 500px;
}

.InfosPrincipale {
    display: flex;
    width: 100%;
    max-width: 700px;
    border-radius: 1rem;
    padding: 20px;
    background-color: var(--blanc);
    box-shadow: var(--ombre1);
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.InfosPrincipale img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
}

.InfosPrincipale .texte {
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 15px;
    width: 100%;
}

.InfosPrincipale .texte h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--vert);
    margin-bottom: 10px;
}

.InfosPrincipale .texte p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--grisFonce);
    margin-bottom: 10px;
}

.InfosPrincipale .texte p strong {
    color: var(--vert);
}

.InfosPrincipale .texte .btn p {
    color: var(--blanc);
    fill: var(--blanc);
    margin: 0;
}

.InfosPrincipale .texte .btn:hover p {
    color: var(--vert);
}



/* --- Responsive --- */
@media (max-width: 900px) {
    .InfosPrincipale {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        max-width: 98vw;
    }

    .InfosPrincipale img {
        width: 200px;
        height: 200px;
    }

    .InfosPrincipale .texte {
        padding: 10px;
        gap: 10px;
    }

    .InfosPrincipale .texte h1 {
        font-size: 2rem;
    }

    .InfosPrincipale .texte p {
        font-size: 1.05rem;
    }
}

@media (max-width: 600px) {
    .InfosPrincipale {
        padding: 10px;
        gap: 10px;
        margin-top: 20px;
    }

    .InfosPrincipale img {
        width: 200px;
        height: 200px;
    }

    .InfosPrincipale .texte h1 {
        font-size: 1.3rem;
    }

    .InfosPrincipale .texte p {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .InfosPrincipale {
        padding: 5px;
        gap: 5px;
        margin-top: 10px;
    }

    .InfosPrincipale img {
        width: 150px;
        height: 150px;
    }

    .InfosPrincipale .texte h1 {
        font-size: 1rem;
    }

    .InfosPrincipale .texte p {
        font-size: 0.8rem;
    }
}

@media (max-width: 314px) {
    .boutons-achat {
        flex-direction: column !important;
        gap: 5px;
    }
}
.cache {
    display: none;
}