.giftCardHero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 45px;
	align-items: center;
	margin-bottom: 34px;
	padding: 35px;
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--shopPanelShadow);
}

.giftCardHeroCopy h1 {
	margin: 0 0 8px;
	font-size: clamp(30px, 5vw, 46px);
}

.giftCardHeroCopy p {
	max-width: 650px;
	margin: 0;
	color: #464646;
	font-size: 18px;
}

.giftCardKicker {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #3a8a67;
	font-weight: 700;
}

.giftCardHeroPreview {
	position: relative;
	display: block;
	width: 100%;
	max-width: 350px;
	padding: 0;
	overflow: hidden;
	justify-self: end;
	background: #f4efe9;
	border: 1px solid #d8d3ce;
	border-radius: 12px;
	filter: none;
	text-shadow: none;
	cursor: zoom-in;
}

.giftCardHeroPreview:hover {
	filter: none;
}

.giftCardHeroPreview img {
	display: block;
	width: 100%;
	height: auto;
}

.giftCardPreviewExpand {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	color: #3a8a67;
	font-size: 17px;
	line-height: 1;
	background: #fff;
	border-radius: 50%;
	box-shadow: var(--shopPanelShadow);
}

.giftCardSectionHeader {
	margin-bottom: 18px;
	text-align: center;
}

.giftCardSectionHeader p {
	margin: 0;
	color: #6b6b6b;
}

.giftCardGrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.giftCardAmountCard {
	display: flex;
	min-width: 0;
	padding: 24px 18px 18px;
	align-items: center;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--shopPanelShadow);
}

.giftCardAmountCard > i {
	margin-bottom: 10px;
	color: #3a8a67;
	font-size: 30px;
}

.giftCardAmountCard > strong {
	font-size: 25px;
}

.giftCardAmountCard > span {
	margin: 4px 0 16px;
	color: #6b6b6b;
	font-size: 13px;
}

.giftCardAmountCard form,
.giftCardAmountCard button {
	width: 100%;
}

.giftCardOtherAmounts {
	margin-top: 22px;
}

.giftCardOtherAmounts summary {
	margin: 0 auto 18px;
	color: #3a8a67;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.giftCardUnavailable a {
	display: inline-block;
	margin-top: 10px;
}

@media (max-width: 850px) {
	.giftCardHero {
		grid-template-columns: 1fr;
	}

	.giftCardHeroPreview {
		justify-self: center;
	}

	.giftCardGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.giftCardHero {
		padding: 22px 18px;
	}

	.giftCardGrid {
		grid-template-columns: 1fr;
	}
}
