.cart-page {
	padding: 0 20px;
	min-height: 85vh;
}

.cart-container {
	background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
	border: 2px solid #00ffe7;
	box-shadow: 0 0 15px #00ffe7, 0 0 30px #ff00e7 inset;
	padding: 2rem;
	border-radius: 12px;
	max-width: 700px;
	margin: 4rem auto;
	color: #00ffe7;
}

.cart-container-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #ff00e7;
	text-shadow: 0 0 10px #ff00e7;
}

.cart-item {
	display: flex;
	background-color: #1f1f1f;
	padding: 1rem;
	margin-bottom: 1rem;
	border: 1px solid #00ffe7;
	border-radius: 8px;
	box-shadow: 0 0 5px #00ffe7;
	gap: 20px;
}

.cart-item-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	flex: 1;
	height: auto;
}

.cart-item img {
	max-width: 300px;
    width: 100%;
	aspect-ratio: 5 / 3;
	border-radius: 5px;
	border: 1px solid #ff00e7;
	box-shadow: 0 0 8px #ff00e7;
}

.cart-item-info-price {
	margin: 0;
}

.cart-item .quantity-controls {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.cart-item .quantity-btn {
	background-color: #bd79ff;
	border: none;
	color: white;
	width: 28px;
	height: 28px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	user-select: none;
}

.cart-item .quantity-controls .quantity-value {
	min-width: 24px;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	user-select: none;
}

.cart-item .remove-btn {
	background: #ff00e7;
	color: #0f0f0f;
	border: none;
	padding: 8px 12px;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
	transition: 0.3s;
	box-shadow: 0 0 8px #ff00e7;
	margin-top: 20px;
	width: 100%;
	font-size: 16px;
}

.cart-item .remove-btn:hover {
	background: #00ffe7;
	color: #000;
	box-shadow: 0 0 10px #00ffe7;
}

.cart-total {
	text-align: right;
	font-size: 1.5rem;
	font-weight: bold;
	margin-top: 20px;
	color: #00ffe7;
	text-shadow: 0 0 5px #00ffe7;
}

.cart-items-nodata {
	text-align: center;
}

.cart-retro-button {
	display: block;
	width: 100%;
	margin-top: 2rem;
	padding: 1rem;
	font-size: 1.2rem;
	background: linear-gradient(90deg, #ff00e7, #00ffe7);
	color: #000;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	box-shadow: 0 0 10px #00ffe7;
	transition: background 0.3s ease;
}

.cart-retro-button:hover {
	background: linear-gradient(90deg, #00ffe7, #ff00e7);
	box-shadow: 0 0 20px #ff00e7;
}

.checkout-email {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: #00ffe7;
}

.checkout-email label {
	font-weight: bold;
	text-shadow: 0 0 4px #00ffe7;
}

.checkout-email input[type="email"] {
	padding: 0.75rem 1rem;
	border-radius: 6px;
	border: 2px solid #ff00e7;
	background-color: #1a1a1a;
	color: #00ffe7;
	box-shadow: 0 0 6px #00ffe7;
	font-size: 1rem;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-email input[type="email"]::placeholder {
	color: #888;
}

.checkout-email input[type="email"]:focus {
	outline: none;
	border-color: #00ffe7;
	box-shadow: 0 0 10px #00ffe7;
}

@media (max-width: 768px) {
	.cart-container {
		padding: 1rem
	}

	.cart-item {
		flex-direction: column;
	}

	.cart-item img {
		margin: 0 auto;
	}

	.cart-total {
		font-size: 1rem;
	}

	.cart-retro-button {
		padding: 1rem 0.5rem;
	}
}