body {
    text-align: center;
    background-image: url('../images/');
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: center center; 
    color: black;
    max-width: 98.75vw;
    width: 100vw; /* Full width */
    overflow-x: hidden; /* Prevent horizontal scroll */
    margin: 0; /* Remove default body margins */
    padding: 0; /* Remove padding */
}


.container {
    display: flex;
    margin-top: 6vw;
}

.des {
    width: 80%;
    margin: auto;
    margin-top: 4vw;
    background-color: #FAF3E0;
    border: solid;
    border-color: black;
    border-radius: 0.5vw;
    padding: 1%;
    padding-bottom: 4%;
}

.img {
    margin-left: 2%;
}

.block {
    width: 70%;
    display: block;
}

h1 {
    color: black;
}

h3 {
    color: black;
}

p {
    width: 80%;
    margin: auto;
    color: black;
}

.bts {
    display: flex;
    align-items: center;  /* Centering content vertically */
    justify-content: center;  /* Centering content horizontally */
    width: 30%;
    height: 5vw;
    margin: auto;
    margin-top: 3%;
    background-color: #FAF3E0;
    border: solid;
    border-color: black;
    border-radius: 0.5vw;
    padding: 1%;
}

.bts input {
    margin-right: 10px; /* Adding some space between input and button */
    height: 60%;
    text-align: center;  /* Center text inside the input */
}

.bts button {
    padding: 10px 20px;
    color: black;
    background-color: #FAF3E0;
    border: solid;
    border-color: black;
    border-radius: 5px;
    cursor: pointer;
}

.bts button:hover {
    background-color: #ddd;
}

.info-title {
    width: 90%;  /* Match the width of the .f container */
    margin: 2.5vw auto 1vw auto;  /* Center the title, with some margin */
    color: black;
    font-size: 2vw;  /* Adjust the font size as needed */
    text-align: center;  /* Center-align the text */
    text-transform: uppercase;  /* Optional: Make the text uppercase */
    font-weight: bold;  /* Make the title bold */
}

.f {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    background-color: #FAF3E0;
    font-size: 1.5vw;
    padding: 1%;
    border: solid;
    border-color: black;
    border-radius: 0.5vw;
    margin-bottom: 1vw;
}

.info {
    width: 45%;  /* Each .info div takes up half of .f container's width */
    margin: auto;
    color: black;
    font-size: 1.5vw;
    padding: 1%;
}

.info p {
    margin: 10px 0;  /* Adding space between each <p> element */
    text-align: left; /* Ensure text aligns to the left */
}

/* Adding this to make sure all .info elements align from the start */
.info p:first-child {
    margin-top: 0;
}

.info p:last-child {
    margin-bottom: 0;
}


@media only screen and (max-width: 768px) {
    
    .header_Liv{
        display: none;
    }

    .bts{
        width: 30vw;
        padding: 10vw;
        margin-top: 5vw;
        margin-bottom: 5vw;
        margin-left:-30vw ;
        margin-top: -21.5vw;
    }

    #quantity{
        width: 15vw;
        margin-bottom: 2vw;
    }

    .bts button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20vw;
        height: 10vw;
        padding: 0; /* optionnel, pour éviter de fausser l'alignement */
    }
    

    .container {
        margin-top: 20vw;
    }

    .img{
        margin-top: 11vw;
    }

}

