@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Aligner en haut de la page */
    background-color: #ffffff;
    /* Fond blanc */
    min-width: 1280px; /* Largeur minimale */
    min-height: 720px;
}

main {
    margin: auto;
    margin-top: 5%;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
}
.container {
    display: flex;
    gap: 35px;
    /* Espacement entre les blocs */
    margin-bottom: 25px;
    margin-top: 25px;
    justify-content: start;
}

.bloc {
    width: 14vh;
    height: 14vh;
    background-color: transparent;
    border: 2px solid #c0c0c0;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Aligner les 4 nouvelles cases à droite */
.right-cases {
    display: flex;
    gap: 25px;
    margin-left: auto;
    /* Aligner à droite dans la ligne */
    margin-left: 90px;
}

.right-cases .bloc {
    width: 7vw;
    height: 7vw;
    background-color: transparent;
    border: 0px solid #c0c0c0;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo {
    width: 14vh;
    height: 14vh;
    background-color: transparent;
    border: 3px solid #4e4e4e;
    border-radius: 50px;
}

header {
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    background-color: #08410d;
    display: flex;
    justify-content: center;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #08410d;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    height: 60px;
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
    margin-top: 5px;
    padding-top: 5px;

}

.selected {
    border: 4px solid #FF0000;
}

h1 {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 37px;
}

p {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-size: 20px;
}

.bloc img,
.demo img {
    width: 80%;
    height: 90%;
    object-fit: contain;
    display: block;
}

.choix {
    position: absolute;
    /* Positionner par rapport au parent */
    /* Distance du haut de la page */
    right: 20px;
    /* Distance du côté droit */
    width: 25%;
    height: auto;
    background-color: #08410d;
    color: white;
    border: 3px #4e4e4e;
    border-radius: 50px;
    text-align: center;
    transform: scale(1);

}


.bouton {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
    color: white;
    font-size: 40px;
}


a {
    color: white;
    text-decoration: none;
}


.title {
    font-size: 2.5rem;
    color: #08410d;
    text-align: center;
}

.cart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 2px solid #c0c0c0;
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    height: 90px;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    margin-right: 15px;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.item-price {
    font-size: 1.2rem;
    color: #666;
}

.cart-total {
    text-align: right;
    font-size: 1.5rem;
    font-weight: bold;
    color: #08410d;
    margin-top: 20px;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.btn-primary {
    background-color: #08410d;
}

.btn-secondary {
    background-color: #ccc;
    color: #333;
}

/*confrimation*/

.confirmation-center {
    top: 100vh;
    margin-top: 15vh;
    text-align: center;
}

.merci h1 {
    color: black;
}

.merci a {
    color: black;
}
#panier{
    transform: scale(0.8);
    margin-left: 4%;
}