/* =============================================================
   Classic form — visual enhancements (rounded cards, better fields,
   mini preview on payment step). Loaded only when layout = classic.
   =============================================================

   COLOR TOKENS
   These variables drive every customer-visible color. They are set
   to sensible defaults here and overridden on a per-site basis from
   the Design page (see WGiftcard_Color_Settings::render_inline_css()).
   You can override any single one by re-declaring it on
   .wgiftcard-form-preview-wrap, .wgiftcard-pay-shell, or :root.
   ============================================================= */

:root,
.wgiftcard-form-preview-wrap,
.wgiftcard-pay-shell,
.wgiftcard-preview-block {
	/* Brand */
	--wgc-accent:        #6366f1;
	--wgc-accent-hover:  #4f46e5;
	--wgc-accent-soft:   #eef2ff;
	--wgc-accent-glow:   rgba(99, 102, 241, 0.30);
	--wgc-accent-ring:   rgba(99, 102, 241, 0.12);
	/* Text */
	--wgc-text:          #111827;
	--wgc-text-soft:     #374151;
	--wgc-text-muted:    #6b7280;
	--wgc-text-on-accent:#ffffff;
	/* Surfaces */
	--wgc-surface:       #ffffff;
	--wgc-surface-soft:  #f9fafb;
	--wgc-surface-alt:   #f3f4f6;
	--wgc-border:        #e5e7eb;
	--wgc-border-strong: #d1d5db;
	/* Per-provider button colors. Each provider has bg + hover. */
	--wgc-sumup-bg:      var(--wgc-accent);
	--wgc-sumup-hover:   var(--wgc-accent-hover);
	--wgc-stripe-bg:     #635BFF;
	--wgc-stripe-hover:  #4F46E5;
	--wgc-mobilepay-bg:  #5A78FF;
	--wgc-mobilepay-hover:#3D5AD9;
	/* Shape */
	--wgc-radius-sm:     10px;
	--wgc-radius-md:     12px;
	--wgc-radius-lg:     14px;
}

/* ===== LAYOUT — preview LEFT on desktop, HIDDEN on mobile ===== */
.wgiftcard-form-preview-wrap {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 32px !important;
	align-items: flex-start !important;
}

/* Preview slot — fixed-height portrait A4 box that holds the live preview.
 * Slot dimensions stay constant regardless of which design's paper aspect is
 * picked, so the form layout doesn't jump when the user navigates designs. */
.wgcv2-preview-slot {
	width: 100%;
	max-width: 280px;
	height: calc(280px * 297 / 210); /* portrait A4 — ~396px */
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	box-sizing: border-box;
}

/* Inside the slot: preview fills width, aspect-ratio derives height.
 * Portrait designs fill the slot exactly; landscape sits centered with
 * vertical breathing space (slot height stays = portrait reserve). */
.wgcv2-preview-slot #wgiftcard-card-preview {
	position: relative;
	top: auto;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	height: auto;
	flex: none;
	font-size: 50%;
	aspect-ratio: var(--wgc-aspect, 210/297);
	border-radius: var(--wgc-radius-lg);
	box-shadow: 0 10px 24px rgba(0,0,0,.1), 0 3px 8px rgba(0,0,0,.05);
	overflow: hidden;
	box-sizing: border-box;
}

/* Mobile: hide live preview entirely on form + payment pages */
@media (max-width: 899px) {
	.wgiftcard-form-preview-wrap .wgcv2-preview-slot,
	.wgiftcard-form-preview-wrap .gavekort-preview-wrapper,
	.wgiftcard-form-preview-wrap #wgiftcard-card-preview,
	.wgiftcard-pay-shell .wgcv2-preview-slot,
	.wgiftcard-pay-shell .gavekort-preview-wrapper,
	.wgiftcard-pay-shell #wgiftcard-card-preview {
		display: none !important;
	}
	.wgiftcard-form-preview-wrap .wgiftcard-form-single,
	.wgiftcard-pay-shell #wpayment-container {
		max-width: 100% !important;
		flex: 1 1 100% !important;
	}
}

/* Desktop: 2-col grid.
 * Form flow:  preview LEFT, form RIGHT
 * Payment:    payment LEFT, preview RIGHT
 */
@media (min-width: 900px) {
	.wgiftcard-form-preview-wrap,
	.wgiftcard-pay-shell {
		display: grid !important;
		gap: 40px !important;
		flex-wrap: nowrap !important;
		align-items: start !important;
	}

	.wgiftcard-form-preview-wrap {
		grid-template-columns: 280px 1fr !important;
	}
	.wgiftcard-form-preview-wrap .wgcv2-preview-slot,
	.wgiftcard-form-preview-wrap .gavekort-preview-wrapper,
	.wgiftcard-form-preview-wrap #wgiftcard-card-preview {
		order: 1 !important;
	}
	.wgiftcard-form-preview-wrap .wgiftcard-form-single {
		order: 2 !important;
	}

	.wgiftcard-pay-shell {
		grid-template-columns: 1fr 280px !important;
	}
	.wgiftcard-pay-shell #wpayment-container {
		order: 1 !important;
	}
	.wgiftcard-pay-shell .wgcv2-preview-slot,
	.wgiftcard-pay-shell .gavekort-preview-wrapper,
	.wgiftcard-pay-shell #wgiftcard-card-preview {
		order: 2 !important;
	}

	/* Desktop-only: stick the slot to the top while scrolling. */
	.wgiftcard-form-preview-wrap .wgcv2-preview-slot,
	.wgiftcard-pay-shell .wgcv2-preview-slot {
		position: sticky !important;
		top: 24px !important;
		align-self: start !important;
	}

	/* Legacy fallback: when no slot wrapper is present (older callers). */
	.wgiftcard-form-preview-wrap > .gavekort-preview-wrapper,
	.wgiftcard-form-preview-wrap > #wgiftcard-card-preview,
	.wgiftcard-pay-shell > .gavekort-preview-wrapper,
	.wgiftcard-pay-shell > #wgiftcard-card-preview {
		position: sticky !important;
		top: 24px !important;
		align-self: start !important;
		margin: 0 !important;
		flex: none !important;
		width: 100% !important;
		max-width: 280px !important;
		font-size: 50% !important;
		aspect-ratio: var(--wgc-aspect, 210/297);
		border-radius: var(--wgc-radius-lg) !important;
		box-shadow: 0 10px 24px rgba(0,0,0,.1), 0 3px 8px rgba(0,0,0,.05) !important;
		overflow: hidden !important;
	}
	.wgiftcard-form-preview-wrap .wgiftcard-form-single,
	.wgiftcard-pay-shell #wpayment-container {
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		flex: 1 1 auto !important;
	}
}

/* ===== DESIGN PICKER CAROUSEL ===== */
.wgiftcard-form-preview-wrap .wgiftcard-carousel,
.wgiftcard-carousel {
	position: relative;
	margin: 0 0 12px;
	padding: 0;
	background: transparent;
	display: block !important;
	overflow: visible;
}

.wgiftcard-form-preview-wrap .wgiftcard-carousel-track,
.wgiftcard-carousel-track {
	display: flex !important;
	flex-direction: row !important;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 12px 12%;
	box-sizing: border-box;
}
.wgiftcard-form-preview-wrap .wgiftcard-carousel-track::-webkit-scrollbar,
.wgiftcard-carousel-track::-webkit-scrollbar { display: none !important; }

.wgiftcard-form-preview-wrap .wgiftcard-carousel-slide,
.wgiftcard-carousel-slide {
	flex: 0 0 76%;
	max-width: 76%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0 !important;
	border-radius: 0;
	box-sizing: border-box;
	margin: 0;
	-webkit-tap-highlight-color: transparent;
	/* Per-slide aspect-ratio is set inline by PHP based on each template's v2
	 * paper format. Fallback below for slides without an inline aspect. */
	aspect-ratio: 210/297;
	transition: none;
	opacity: 0.45;
}

/* Track gets a stable min-height equal to a portrait slide so the carousel
 * doesn't visibly grow/shrink when landscape designs are mixed in. */
.wgiftcard-form-preview-wrap .wgiftcard-carousel-track,
.wgiftcard-carousel-track {
	align-items: center !important;
	min-height: calc(76% * 297 / 210);
}
.wgiftcard-form-preview-wrap .wgiftcard-carousel-slide.wgiftcard-img-selected,
.wgiftcard-carousel-slide.wgiftcard-img-selected {
	opacity: 1;
}
.wgiftcard-form-preview-wrap .wgiftcard-carousel-slide img,
.wgiftcard-carousel-slide img {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	/* Stretch to fill (matches v2 editor behavior). */
	object-fit: fill;
	border-radius: var(--wgc-radius-lg);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
	transition: none;
	pointer-events: none;
	display: block;
}
.wgiftcard-form-preview-wrap .wgiftcard-carousel-slide.wgiftcard-img-selected img,
.wgiftcard-carousel-slide.wgiftcard-img-selected img {
	box-shadow: 0 14px 36px var(--wgc-accent-glow), 0 0 0 3px var(--wgc-accent);
}

@media (max-width: 600px) {
	.wgiftcard-form-preview-wrap .wgiftcard-carousel-track,
	.wgiftcard-carousel-track {
		padding: 12px 12%;
	}
	.wgiftcard-form-preview-wrap .wgiftcard-carousel-slide,
	.wgiftcard-carousel-slide {
		flex: 0 0 76%;
		max-width: 76%;
	}
}

/* ✓ badge on selected slide */
.wgiftcard-carousel-badge {
	position: absolute !important;
	top: 12px;
	right: 12px;
	width: 32px !important;
	height: 32px !important;
	min-width: 0;
	border-radius: 50%;
	background: var(--wgc-accent);
	color: var(--wgc-text-on-accent);
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	opacity: 0;
	transform: scale(.5);
	transition: opacity .2s, transform .25s cubic-bezier(.34, 1.56, .64, 1);
	box-shadow: 0 4px 12px var(--wgc-accent-glow);
	pointer-events: none;
	z-index: 3;
	flex: none !important;
	padding: 0;
	line-height: 1;
}
.wgiftcard-carousel-slide.wgiftcard-img-selected .wgiftcard-carousel-badge {
	opacity: 1;
	transform: scale(1);
}

/* Arrow buttons — larger hit area, no animation/transform under any state. */
.wgiftcard-carousel-arrow,
.wgiftcard-carousel-arrow:hover,
.wgiftcard-carousel-arrow:focus,
.wgiftcard-carousel-arrow:focus-visible,
.wgiftcard-carousel-arrow:active,
.wgiftcard-carousel-arrow:focus:active {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 48px !important;
	height: 48px !important;
	min-width: 0 !important;
	max-width: 48px !important;
	border-radius: 50% !important;
	font-size: 24px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	z-index: 10 !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, .08) !important;
	transition: none !important;
	animation: none !important;
	padding: 0 !important;
	margin: 0 !important;
	flex: none !important;
	outline: none !important;
	-webkit-tap-highlight-color: transparent !important;
}
/* Default + non-hover states keep the white look. */
.wgiftcard-carousel-arrow,
.wgiftcard-carousel-arrow:focus,
.wgiftcard-carousel-arrow:focus-visible,
.wgiftcard-carousel-arrow:active {
	background: rgba(255, 255, 255, 0.98) !important;
	color: var(--wgc-text-soft) !important;
	border: 1px solid var(--wgc-border) !important;
}
/* Hover (and only hover) shows accent color. */
.wgiftcard-carousel-arrow:hover {
	background: var(--wgc-accent) !important;
	color: var(--wgc-text-on-accent) !important;
	border: 1px solid var(--wgc-accent) !important;
}
/* Bigger invisible hit area so the clickable region extends ~12px around. */
.wgiftcard-carousel-arrow::before {
	content: "";
	position: absolute;
	inset: -12px;
}
/* Kill any browser-default click flash inside the button. */
.wgiftcard-carousel-arrow > * {
	pointer-events: none !important;
	transition: none !important;
	animation: none !important;
}
.wgiftcard-carousel-prev { left: 8px !important; }
.wgiftcard-carousel-next { right: 8px !important; }

/* Dots indicator */
.wgiftcard-carousel-dots {
	display: flex !important;
	justify-content: center;
	gap: 6px;
	padding: 4px 0 12px;
	flex-direction: row !important;
	background: transparent;
}
.wgiftcard-carousel-dot {
	width: 7px !important;
	height: 7px !important;
	min-width: 0 !important;
	max-width: 24px;
	border-radius: 50%;
	background: var(--wgc-border-strong) !important;
	border: 0 !important;
	padding: 0 !important;
	cursor: pointer;
	transition: all .2s;
	flex: none !important;
	color: transparent !important;
	box-shadow: none !important;
}
.wgiftcard-carousel-dot.is-active {
	background: var(--wgc-accent) !important;
	width: 24px !important;
	border-radius: 4px;
}

.wgiftcard-form-preview-wrap .wgiftcard-image-grid { display: none !important; }

/* ===== SERVICE CARDS ===== */
.wgiftcard-form-preview-wrap .wgiftcard-service-cards, .wgiftcard-service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	margin: 8px 0 16px;
}
.wgiftcard-form-preview-wrap .wgiftcard-service-card, .wgiftcard-service-card {
	border: 2px solid var(--wgc-border);
	border-radius: var(--wgc-radius-lg);
	padding: 16px;
	background: var(--wgc-surface);
	cursor: pointer;
	transition: all .2s cubic-bezier(.4, 0, .2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
	-webkit-tap-highlight-color: transparent;
}
.wgiftcard-form-preview-wrap .wgiftcard-service-card:hover, .wgiftcard-service-card:hover {
	border-color: color-mix(in srgb, var(--wgc-accent) 50%, var(--wgc-border));
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04);
	transform: translateY(-2px);
}
.wgiftcard-form-preview-wrap .wgiftcard-service-card.wgiftcard-service-selected, .wgiftcard-service-card.wgiftcard-service-selected {
	border-color: var(--wgc-accent);
	background: var(--wgc-accent-soft);
	box-shadow: 0 4px 16px var(--wgc-accent-ring);
}
.wgiftcard-form-preview-wrap .wgiftcard-service-name, .wgiftcard-service-name {
	font-weight: 600;
	font-size: 14px;
	color: var(--wgc-text);
	line-height: 1.3;
	margin-bottom: 4px;
}
.wgiftcard-form-preview-wrap .wgiftcard-service-desc, .wgiftcard-service-desc {
	font-size: 12px;
	color: var(--wgc-text-muted);
	margin-bottom: 6px !important;
}
.wgiftcard-form-preview-wrap .wgiftcard-service-price, .wgiftcard-service-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--wgc-accent-hover);
}
.wgiftcard-form-preview-wrap .wgiftcard-service-vat, .wgiftcard-service-vat {
	display: none !important;
}

/* Custom amount card */
.wgiftcard-form-preview-wrap .wgiftcard-service-custom, .wgiftcard-service-custom {
	grid-column: 1 / -1;
}
.wgiftcard-custom-amount-input {
	width: 100% !important;
	margin-top: 10px !important;
	padding: 10px 12px !important;
	border: 1px solid var(--wgc-border-strong) !important;
	border-radius: var(--wgc-radius-sm) !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: var(--wgc-text) !important;
	background: var(--wgc-surface) !important;
}
.wgiftcard-custom-amount-input:focus {
	outline: none !important;
	border-color: var(--wgc-accent) !important;
	box-shadow: 0 0 0 3px var(--wgc-accent-ring) !important;
}

/* ===== FORM FIELDS ===== */
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="text"],
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="email"],
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="tel"],
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="number"],
.wgiftcard-form-preview-wrap .wgiftcard-form textarea,
.wgiftcard-form-preview-wrap .wgiftcard-form select {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--wgc-border);
	border-radius: var(--wgc-radius-sm);
	font-size: 16px;
	color: var(--wgc-text);
	background: var(--wgc-surface);
	transition: border-color .15s, box-shadow .15s;
	box-sizing: border-box;
	font-family: inherit;
}
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="text"]:focus,
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="email"]:focus,
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="tel"]:focus,
.wgiftcard-form-preview-wrap .wgiftcard-form input[type="number"]:focus,
.wgiftcard-form-preview-wrap .wgiftcard-form textarea:focus,
.wgiftcard-form-preview-wrap .wgiftcard-form select:focus {
	outline: none;
	border-color: var(--wgc-accent);
	box-shadow: 0 0 0 3px var(--wgc-accent-ring);
}
.wgiftcard-form-preview-wrap .wgiftcard-form textarea { min-height: 100px; resize: none; overflow: hidden; }
.wgiftcard-form-preview-wrap .wgiftcard-form label {
	font-weight: 500;
	font-size: 13px;
	color: var(--wgc-text-soft);
}

/* ===== BUTTONS ===== */
.wgiftcard-form-preview-wrap .wgiftcard-form button[type="button"],
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-primary,
.wgiftcard-form-preview-wrap .wgiftcard-form button[type="submit"] {
	border-radius: var(--wgc-radius-md);
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	border: 0;
	cursor: pointer;
	transition: transform .1s, box-shadow .2s, background-color .15s;
}
.wgiftcard-form-preview-wrap .wgiftcard-form button[type="button"]:not(.wgiftcard-back-btn) {
	background: var(--wgc-surface-alt);
	color: var(--wgc-text);
}
.wgiftcard-form-preview-wrap .wgiftcard-form button[type="button"]:not(.wgiftcard-back-btn):hover {
	background: var(--wgc-border);
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-back-btn {
	background: transparent;
	color: var(--wgc-text-muted);
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-primary,
.wgiftcard-form-preview-wrap .wgiftcard-form button[type="submit"] {
	background: var(--wgc-accent);
	color: var(--wgc-text-on-accent);
	box-shadow: 0 4px 14px var(--wgc-accent-glow);
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-primary:hover,
.wgiftcard-form-preview-wrap .wgiftcard-form button[type="submit"]:hover {
	background: var(--wgc-accent-hover);
}
.wgiftcard-form-preview-wrap .wgiftcard-form button:active {
	transform: scale(.97);
}

/* Per-provider button colors. Each one overrides the default accent so the
   pay-with-X buttons visually match the provider's brand. */
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-card,
.wgiftcard-btn-card {
	background: var(--wgc-sumup-bg) !important;
	box-shadow: 0 4px 14px color-mix(in srgb, var(--wgc-sumup-bg) 30%, transparent) !important;
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-card:hover,
.wgiftcard-btn-card:hover {
	background: var(--wgc-sumup-hover) !important;
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-stripe,
.wgiftcard-btn-stripe {
	background: var(--wgc-stripe-bg) !important;
	box-shadow: 0 4px 14px color-mix(in srgb, var(--wgc-stripe-bg) 30%, transparent) !important;
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-stripe:hover,
.wgiftcard-btn-stripe:hover {
	background: var(--wgc-stripe-hover) !important;
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-mobilepay,
.wgiftcard-btn-mobilepay {
	background: var(--wgc-mobilepay-bg) !important;
	box-shadow: 0 4px 14px color-mix(in srgb, var(--wgc-mobilepay-bg) 30%, transparent) !important;
}
.wgiftcard-form-preview-wrap .wgiftcard-form .wgiftcard-btn-mobilepay:hover,
.wgiftcard-btn-mobilepay:hover {
	background: var(--wgc-mobilepay-hover) !important;
}

/* ===== PAYMENT STEP MINI PREVIEW ===== */
.wgiftcard-pay-preview {
	max-width: 280px;
	margin: 0 auto 24px;
	position: relative;
	aspect-ratio: var(--wgc-aspect, 800/1302);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 3px 8px rgba(0, 0, 0, 0.06);
}
.wgiftcard-pay-preview-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.wgiftcard-pay-preview-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 14px;
	background: linear-gradient(to top, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 50%);
}
.wgiftcard-pay-preview-msg {
	position: absolute;
	top: 58%;
	left: 14px;
	right: 14px;
	color: #fff;
	font-size: 13px;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
	white-space: pre-wrap;
}
.wgiftcard-pay-preview-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.wgiftcard-pay-preview-meta > div {
	background: rgba(255, 255, 255, .92);
	color: var(--wgc-text);
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px;
}
.wgiftcard-pay-preview-meta span { color: var(--wgc-text-muted); margin-right: 4px; font-weight: 600; }
.wgiftcard-pay-preview-meta strong { color: var(--wgc-text); font-weight: 600; }

/* SumUp checkout container */
#wpayment-container.wpayment-container {
	background: var(--wgc-surface);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
	border: 1px solid var(--wgc-surface-alt);
}
#wpayment-container h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--wgc-text);
}
.wgiftcard-pay-summary {
	background: var(--wgc-surface-soft);
	border-radius: var(--wgc-radius-md);
	padding: 14px 16px;
	margin-bottom: 16px;
	font-size: 14px;
}
.wgiftcard-pay-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid var(--wgc-border);
}
.wgiftcard-pay-summary-row:last-child { border-bottom: 0; }
.wgiftcard-pay-summary-row span { color: var(--wgc-text-muted); }
.wgiftcard-pay-summary-row strong { color: var(--wgc-text); }
.wgiftcard-pay-summary-total strong { color: var(--wgc-accent-hover); font-size: 18px; }
.wgiftcard-pay-summary-vat {
	display: block;
	font-size: 11px;
	color: var(--wgc-text-muted);
	font-weight: 400;
	margin-top: 2px;
}
