.cart-title-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 20px;
}
.cart-title-header i {
    font-size: 24px;
}
.cart-container-new {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Dando mais espaço para a lista de produtos */
    gap: 30px;
    align-items: flex-start;
}
.cart-product-list, .cart-summary-new {
    background-color: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.list-header {
    font-weight: bold;
    color: var(--gray-500);
    text-transform: uppercase;
    font-size: 12px;
    padding: 0 10px 15px 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
}
.cart-empty-message {
    text-align: center;
    color: var(--gray-500);
    padding: 40px 0;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    border-bottom: 1px solid var(--gray-100);
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 3; /* Ocupa mais espaço */
}
.cart-item-info img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}
.cart-item-name {
    font-weight: bold;
    color: var(--gray-800);
}
.cart-item-price {
    color: var(--gray-500);
    font-size: 14px;
}
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}
.cart-item-quantity .quantity-btn {
    border: 1px solid var(--gray-300);
    background-color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    color: var(--gray-800);
    display:flex;
    align-items:center;
    justify-content:center;
    transition: background-color 0.2s;
}
.cart-item-quantity .quantity-btn:hover {
    background-color: var(--gray-100);
}
.cart-item-total {
    font-weight: bold;
    flex: 1;
    text-align: right;
    color: var(--gray-800);
}
.remove-item-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-400);
    cursor: pointer;
    text-decoration:none;
    padding: 0 10px;
}
.remove-item-btn:hover {
    color: var(--accent-color);
}
.summary-total-new {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 900px) {
    .cart-container-new {
        grid-template-columns: 1fr;
    }
}