.botao-adicionar {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.botao-adicionar:hover {
    background: #0056b3;
}
.botao-adicionar.adicionado,
.botao-adicionar:disabled {
    background: #6c757d;
    cursor: not-allowed;
}
.mensagem-sucesso {
    background: #28a745;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}
.mensagem-erro {
    background: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

.cart-items {
    margin-bottom: 10px;
}
.cart-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    border-radius: 10px;
    margin: 11px 0px;
    padding: 10px 23px;
    align-items: center;
    background-color: #e4e4e4;
    transition: all 0.5s;
}

.cart-item:hover {
    transition: all 0.5s;
    background-color: black;
}
.cart-item-image {
    width: 13%;
    margin-right: 13px;
    display: flex;
}

span.cart-item-remove {
    margin-left: auto;
}

img.attachment-thumbnail.size-thumbnail.wp-post-image {
    border-radius: 8px;
}

span.cart-item-price {
    font-size: 13px;
    color: #6b6b6b;
    font-weight: 700;
}

.cart-item-details {
    flex-grow: 1;
}
.cart-item-name {
    display: block;
    font-size: 14px;
    margin-bottom: -11px;
}
.cart-item-price {
    display: block;
    font-size: 12px;
    color: #555;
}
.cart-item-remove {
    cursor: pointer;
    color: #dc3545;
    font-weight: bold;
    margin-left: 10px;
}
.cart-totals {
    margin: 10px 0;
}
.cart-totals p {
    margin: 5px 0;
}
.cart-checkout-button {
    display: block;
    text-align: center;
    background: #28a745;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}
.cart-checkout-button:hover {
    background: #218838;
}