/* Definindo o estilo da página */
body {
    font-family: Arial, sans-serif;
    background-color: #B4A5C2;
    margin: 0;
    padding: 0;
    color: #fff;
}

/* Container principal */
.container {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

/* Título */
h1 {
    color: #fff;
}

/* Lista de produtos */
.product-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

/* Cada produto */
.product {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #a058e4;
    color: #000;
    padding: 10px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
}

.product img {
    width: 40vw;
    height: 20vh;
    margin-right: 15px;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #a058e4;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    background-color: #a058e4;
}

.product-price {
    font-size: 16px;
    color: #331450;
    background-color: #a058e4;
}

/* Preço total */
.total {
    margin-top: 30px;
    font-size: 24px;
}

/* Botão de finalizar compra */
.checkout {
    margin-top: 20px;
}

.checkout button {
    background-color: #fff;
    color: #a058e4;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout button:hover {
    background-color: #a058e4;
    color: #fff;
}




