/* Estilos para o cabeçalho */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Estilos para a navegação */
nav {
    background-color: #f2f2f2;
    padding: 10px;
    font-family: 'Helvetica', sans-serif;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

/* Estilos para as seções */
section {
    padding: 20px;
    font-family: 'Times New Roman', serif;
}

/* Estilos para os produtos */
.product {
    display: inline-block;
    width: 200px;
    margin: 10px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 10px;
}

.product img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.product h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.product p {
    font-size: 16px;
    margin-bottom: 5px;
}

.product button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

/* Estilos para o carrinho */
#cart {
    margin-top: 50px;
    font-family: 'Arial', sans-serif;
}

#cart-items li {
    margin-bottom: 5px;
}

#total-price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

