.produto-img {
    width: 100%; /* Ajusta a imagem para preencher o espaço do card */
    height: 200px; /* Limita a altura da imagem */
    object-fit: cover; /* Mantém a proporção da imagem sem distorcer */
    border-radius: 10px; /* Bordas arredondadas */
}
.total-carrinho {
    font-size: 1.5rem;
    font-weight: bold;
}
.btn-finalizar {
    background-color: #28a745;
    color: white;
    border: none;
    width: 100%;
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 5px;
}
.btn-finalizar:hover {
    background-color: #218838;
}
.btn-adjust {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.btn-adjust:hover {
    background-color: #f0f0f0;
}
.btn-remove {
    font-size: 1rem;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
}
.btn-remove:hover {
    background-color: #c82333;
}
/* Reduzindo o tamanho do card */
.card {
    width: 100%;
    height: 100%;
}
.container-custom {
    margin-top: 40px;
    margin-bottom: 60px;
}
.card-header {
    font-size: 1.5rem;
    font-weight: bold;
}
.alert {
    text-align: center;
}