.ky-cart-section{
	background:#faf8f4;
	padding:60px 0 100px;
}

.ky-cart-section h1{
	font-size:38px;
	color:#111;
	margin-bottom:40px;
}

.ky-cart-layout{
	display:grid;
	grid-template-columns:1fr 360px;
	gap:40px;
	align-items:start;
}

/* Tabela de itens */

.ky-cart-table{
	background:#fff;
	border-radius:14px;
	padding:10px 30px;
	box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.ky-cart-item{
	display:grid;
	grid-template-columns:80px 1fr auto auto auto;
	gap:20px;
	align-items:center;
	padding:24px 0;
	border-bottom:1px solid #f0ece6;
}

.ky-cart-item:last-child{
	border-bottom:none;
}

.ky-cart-item img{
	width:80px;
	height:80px;
	object-fit:cover;
	border-radius:10px;
}

.ky-cart-item-name{
	font-size:15px;
	color:#111;
	font-weight:600;
	text-decoration:none;
}

.ky-cart-item-price{
	color:#5C1022;
	font-weight:700;
	font-size:15px;
}

.ky-cart-item-qty input{
	width:60px;
	padding:10px;
	border:1px solid #e2ddd6;
	border-radius:8px;
	text-align:center;
}

.ky-cart-item-remove{
	color:#c9a0a0;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:.3s;
}

.ky-cart-item-remove:hover{
	color:#5C1022;
}

.ky-cart-empty{
	background:#fff;
	border-radius:14px;
	padding:60px;
	text-align:center;
	color:#888;
}

.ky-cart-empty a{
	display:inline-block;
	margin-top:20px;
	background:#5C1022;
	color:#fff;
	padding:14px 32px;
	border-radius:8px;
	text-decoration:none;
	font-weight:600;
}

/* Resumo lateral */

.ky-cart-summary{
	background:#fff;
	border-radius:14px;
	padding:30px;
	box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.ky-cart-summary h3{
	font-size:18px;
	color:#111;
	margin:0 0 22px;
}

.ky-cart-summary-row{
	display:flex;
	justify-content:space-between;
	font-size:14px;
	color:#666;
	margin-bottom:14px;
}

.ky-cart-summary-total{
	display:flex;
	justify-content:space-between;
	font-size:20px;
	color:#111;
	font-weight:700;
	padding-top:18px;
	border-top:1px solid #f0ece6;
	margin-bottom:26px;
}

.ky-cart-summary-total span:last-child{
	color:#5C1022;
}

.ky-checkout-btn{
	display:block;
	text-align:center;
	background:#5C1022;
	color:#fff;
	padding:16px;
	border-radius:8px;
	text-decoration:none;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.5px;
	font-size:14px;
	transition:.3s;
}

.ky-checkout-btn:hover{
	background:#7a1530;
}

.ky-cart-secure{
	text-align:center;
	font-size:12px;
	color:#999;
	margin-top:16px;
}

@media(max-width:768px){
	.ky-cart-layout{
		grid-template-columns:1fr;
	}
	.ky-cart-item{
		grid-template-columns:60px 1fr;
		row-gap:10px;
	}
}