:root {
    --body-background-color: #ffffff;
    --body-color: #000000;
}


* {
    margin: 0;
    padding: 0;
    font-family: kinuta-shin-stdn, sans-serif;
    font-style: normal;
    font-weight: 500;
}

body {
    background-color: var(--body-background-color);
    color: var(--body-color);
}

/* Structure de la page */
.container {
    position: absolute;
    left: 1%;
    width: 98%;
    height: 100%;
    margin: auto;

    display: grid;
    grid-template-rows: 10% 1fr 5% 5%;
}

.header {
    grid-row: 1;

    display: flex;
    align-items: center;
    align-content: space-between;
}

.header_left {
    order: 1;
    width: 25%;
    text-align: center;
}

.header_center {
    order: 2;
    min-width: 50%;
    text-align: center;
}

.header_right {
    order: 3;
    width: 25%;
    text-align: right;
    padding-right: 2%;
}

.middle {
    grid-row: 2;
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
}

.banniere {
    grid-row: 3;
    text-align: center;
    font-size: 1.2em;
    display: none;
}

.footer {
    grid-row: 4;
    text-align: right;
    padding-right: 1%;
    font-size: .5em;
}

.main_title {
    font-size: 2em;
    font-weight: bolder;
}

/* Fin de la structure de la page */

/* Contenus */
.logo {
    max-height: 60px;
}

.content {
    max-width: 330px;
    min-width: 330px;
    max-height: 350px;
    min-height: 350px;
    display: grid;
    padding-top: 15px;
    grid-template-rows: 10% 70% 20%;
}

.content_title {
    grid-row: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
}

.content_middle {
    grid-row: 2;
    text-align: center;
}

.content_image {
    height: 100%;
    transition: all 0.7s ease-in-out;
}

.content_image:hover {
    transform: scale(110%);
}

.content_price {
    font-size: 2em;
    display: none;
}

.content_text {
    grid-row: 3;
    margin-top: 10px;
    text-align: justify;
    font-size: .8em;
    line-height: 1.1;
    overflow-y: scroll;

}

/* spécial */
.chevron {
    font-size: 2em;    
    cursor: pointer;
}

/* Menu hamburger */
.hamburger_checkbox {
    top: 25px;
    left: 25px;
    width: 30px;
    height: 24px;
    opacity: 0;
    z-index: 5;    

    cursor: pointer;
}

.hamburger_checkbox:checked~.hamburger .line2 {
    opacity: 0;
}

.hamburger_checkbox:checked~.hamburger .line1 {
    transform-origin: 0% 0%;
    transform: rotate(45deg);
}

.hamburger_checkbox:checked~.hamburger .line3 {
    transform-origin: 0% 100%;
    transform: rotate(-45deg);
}

.hamburger_checkbox:checked~.menu {
    opacity: .9;
    transform: translateX(0%);
}

.hamburger {
    position: absolute;
    top: 20px;
    left: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    width: 30px;
    height: 24px;
}

.lines {
    display: none;

    background-color: var(--body-color);
    height: 2px;
    transition: all .4s ease-in-out;
}

/* Fin menu hamburger */



/* Fin de la gestion des images */

/* Gestion de l'écran */
@media (min-width: 1000px) {
    .content {
        max-width: 480px;
        min-width: 480px;
        max-height: 500px;
        min-height: 500px;
    }

    .logo {
        max-height: 100px;
    }
}
/* Fin de la gestion de l'écran */
