.naemt-giftcard-amount {
	margin: 24px 0;
	padding: 24px;
	width: 100%;
	border: 1px solid #dfe4ea;
	border-radius: 14px;
	background: #f8faff;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.naemt-giftcard-amount .naemt-heading {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.naemt-giftcard-amount .naemt-heading span {
	color: #6b7280;
	font-size: 14px;
}

.naemt-giftcard-amount label {
	font-weight: 600;
	color: #111827;
	font-size: 16px;
}

.naemt-amount-presets {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.naemt-amount-button {
	appearance: none;
	border: none;
	border-radius: 999px;
	padding: 12px 22px;
	font-size: 16px;
	font-weight: 600;
	background: #fff;
	color: #1f2937;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
	cursor: pointer;
	transition: all 0.2s ease;
}

.naemt-amount-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.naemt-amount-button.is-selected {
	background: #2563eb;
	color: #fff;
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.naemt-custom-amount {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.naemt-custom-amount input {
	padding: 12px 16px;
	border: 1px solid #cbd5f5;
	border-radius: 10px;
	font-size: 16px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.naemt-custom-amount input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.naemt-giftcard-amount .naemt-add-to-cart {
	margin-top: 12px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-transform: none;
	letter-spacing: 0.01em;
}

.naemt-giftcard-amount .naemt-add-to-cart:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
}

.naemt-giftcard-amount .naemt-add-to-cart:active {
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}
