/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Container principal do carrinho */
.container {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Título principal */
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Estilização dos itens do carrinho */
.carrinho-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
}

/* Imagem do produto */
.carrinho-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

/* Detalhes do produto */
.detalhes {
    flex: 1;
}

.detalhes h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.detalhes p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

/* Seção de quantidade */
.quantidade {
    display: flex;
    align-items: center;
}

.quantidade input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 16px;
    margin: 0 5px;
}

/* Botões de quantidade */
.btn {
    background: #ff4500;
    color: #fff;
    border: none;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover {
    background: #e63c00;
}

.btn-quantidade {
    width: 35px;
    height: 35px;
    font-size: 18px;
    border-radius: 50%;
    background: #ff4500;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-quantidade:hover {
    background: #e63c00;
}

/* Botão de remover item */
.btn-remover {
    background: #d9534f;
    font-size: 14px;
    padding: 8px 12px;
}

.btn-remover:hover {
    background: #c9302c;
}

/* Seção do total */
h2 {
    text-align: right;
    font-size: 20px;
    margin-top: 20px;
    color: #333;
}

/* Botão de finalização da compra */
.finalizar-compra {
    display: block;
    width: 100%;
    text-align: center;
    background: #28a745;
    color: white;
    font-size: 18px;
    padding: 12px;
    margin-top: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.finalizar-compra:hover {
    background: #218838;
}

/* Mensagem de carrinho vazio */
.empty-cart {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .carrinho-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .carrinho-item img {
        margin-bottom: 10px;
    }

    .quantidade {
        justify-content: center;
    }
}
