.checkout-gift-cards {
	margin: 20px 0;
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.checkout-gift-cards h3 {
	margin: 0 0 15px;
	font-size: 16px;
	font-weight: 600;
}

.gift-card-input {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.gift-card-input input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.gift-card-input button {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.gift-card-input button:disabled {
	cursor: not-allowed;
}

#gift-card-messages {
	margin: 10px 0;
}

.applied-gift-cards {
	margin-top: 15px;
	padding: 15px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.applied-gift-cards h4 {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 600;
}

.applied-gift-cards ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.applied-gift-cards li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
}

.applied-gift-cards li:last-child {
	border-bottom: none;
}

.card-code {
	font-weight: 600;
	color: #333;
}

.card-amount {
	color: #28a745;
	font-weight: 600;
}

.card-balance {
	color: #6c757d;
	font-size: 0.9em;
}

.remove-card {
	color: #dc3545;
	text-decoration: none;
	font-size: 18px;
	line-height: 1;
	padding: 0 5px;
	cursor: pointer;
}

.remove-card:hover {
	color: #c82333;
}

/* Responsive design */
@media (max-width: 768px) {
	.gift-card-input {
		flex-direction: column;
		gap: 8px;
	}

	.applied-gift-cards li {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.applied-gift-cards li .remove-card {
		align-self: flex-end;
		margin-top: -20px;
	}
}
