.cart-page {
    margin-top: 30px;
    height: 100vh;
}

.cart-title {
    font-size: 26px;
    margin-bottom: 24px;
}

/* LAYOUT */
.cart-layout {
    display: flex;
    gap: 30px;
}

/* ITENS */
.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 16px;
    border-radius: 4px;
    gap: 16px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #e0e0e0;
    border-radius: 4px;
}

.cart-item-info {
    font-size: 14px;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 6px;
}

.cart-item-category {
    color: #666;
    font-size: 13px;
}

/* QUANTIDADE */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-qty-value {
    font-size: 14px;
}

/* PREÇO */
.cart-item-price {
    font-weight: bold;
    font-size: 15px;
}

/* REMOVER */
.cart-item-remove {
    background: none;
    border: none;
    background-color: #3483FA;
    cursor: pointer;
    font-size: 14px;
    padding: 8px;
    text-decoration: none;
    color: #fff;
}

/* RESUMO */
.cart-summary {
    width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    height: fit-content;
}

.cart-summary-title {
    font-size: 20px;
    margin-bottom: 16px;
}

.cart-summary-row,
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.cart-summary-total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 16px;
}

.cart-checkout-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #3483FA;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.cart-checkout-btn a{
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 764px){
    .cart-item{
        flex-wrap: wrap;
    }

    .mobile_wrap{
        width: 100%;
    }

    .cart-summary{
        width: 100%;
    }
}
