/**
 * Kerstactie Styles - Hero + Content Layout
 * Voor de interactieve kerstdonatie pagina
 */

/* =======================
   GENERAL & CONTAINER
   ======================= */

.wpcf-kerstactie-wrapper {
	margin: 0;
	padding: 0;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.wpcf-kerstactie-disabled {
	padding: 20px;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

.wpcf-kerstactie-success-message {
	padding: 15px 20px;
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	border-radius: 4px;
	margin-bottom: 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* =======================
   HERO SECTION
   ======================= */

.wpcf-kerstactie-hero {
	background-color: #0E3F2B;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
	padding: 80px 20px 100px;
	position: relative;
	overflow: visible;
	/* Allow tooltips to extend outside hero section */
}

.wpcf-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	overflow: visible;
	/* Allow tooltips to extend outside container */
}

/* Hero Left - Title & CTA */
.wpcf-hero-left {
	z-index: 10;
}

.wpcf-hero-title {
	font-size: 4.5em;
	font-weight: 800;
	color: #F2C94C;
	line-height: 1.1;
	margin: 0 0 40px 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.wpcf-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background-color: #F2C94C;
	color: #0E3F2B;
	padding: 16px 32px;
	border-radius: 50px;
	font-size: 1.2em;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(242, 201, 76, 0.3);
}

.wpcf-hero-cta:hover {
	background-color: #FFD966;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(242, 201, 76, 0.5);
}

.wpcf-hero-cta svg {
	width: 20px;
	height: 20px;
	stroke: #0E3F2B;
	stroke-width: 3;
}

/* Hero Right - Tree Visual */
.wpcf-hero-right {
	position: relative;
	min-height: 600px;
	overflow: visible;
	/* Allow tooltips to extend outside hero right section */
}

.wpcf-kerstactie-visual {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 600px;
	overflow: visible;
	/* Allow tooltips to be visible */
	pointer-events: none;
	/* Allow clicks to pass through to child elements */
}

.wpcf-kerstactie-visual .wpcf-visual-item {
	pointer-events: auto;
	/* Re-enable pointer events for all visual items */
	touch-action: manipulation;
	/* Improve touch responsiveness on mobile */
	cursor: pointer;
	/* Show pointer cursor to indicate clickability */
}

.wpcf-kerstactie-sky {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	/* Only top half of the visual area for stars */
	z-index: 1;
	overflow: visible;
	/* Allow tooltips to be visible */
	pointer-events: none;
	/* Allow clicks to pass through to stars */
}

.wpcf-kerstactie-sky .wpcf-visual-item,
.wpcf-kerstactie-sky .wpcf-visual-star {
	pointer-events: auto !important;
	/* Re-enable pointer events for stars */
}

.wpcf-kerstactie-tree {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	z-index: 2;
	background-image: url('../images/kerstactie/Kerstboom.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	overflow: visible;
	/* Allow hat to be visible above tree */
}

.wpcf-kerstactie-hat {
	position: absolute;
	top: -5px;
	left: 53%;
	transform: translateX(calc(-50% + 10px));
	width: 180px;
	height: 112px;
	z-index: 4;
	/* Above tree (z-index: 2) and snowman (z-index: 3) */
	background-image: url('../images/kerstactie/Kerstmuts.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
}

.wpcf-kerstactie-snowman {
	position: absolute;
	bottom: 10px;
	right: 10%;
	width: 150px;
	height: 180px;
	z-index: 3;
	background-image: url('../images/kerstactie/Sneeuwpop.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
}

/* Floating Donation Card */
.wpcf-floating-card {
	position: absolute;
	top: 30%;
	right: 10%;
	background: white;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 10;
	width: 200px;
	text-align: center;
	animation: float 3s ease-in-out infinite;
	transition: all 0.5s ease;
}

.wpcf-highlight {
	transform: scale(1.1);
	box-shadow: 0 0 30px rgba(242, 201, 76, 0.8);
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.wpcf-card-icon {
	font-size: 2em;
	margin-bottom: 10px;
}

.wpcf-card-name {
	font-weight: 700;
	color: #0E3F2B;
	margin-bottom: 8px;
}

.wpcf-card-message {
	font-size: 0.9em;
	color: #666;
	margin-bottom: 12px;
}

.wpcf-card-amount {
	font-size: 1.5em;
	font-weight: 800;
	color: #D32F2F;
}

/* =======================
   CONTENT SECTION
   ======================= */

.wpcf-kerstactie-content {
	background-color: white;
	padding: 40px 20px;
}

.wpcf-content-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 55fr 45fr;
	gap: 30px;
	align-items: start;
}

/* Content Left - Descriptive Text */
.wpcf-content-left {
	font-family: 'Lexend', sans-serif;
}

.wpcf-content-left h2 {
	font-size: 2.5em;
	color: #0E3F2B;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.3;
	font-family: 'Lexend', sans-serif;
}

.wpcf-content-left p {
	font-size: 1.1em;
	color: #555;
	line-height: 1.8;
	margin-bottom: 16px;
	font-family: 'Lexend', sans-serif;
}

.wpcf-content-description {
	font-size: 1.1em;
	color: #555;
	line-height: 1.8;
	font-family: 'Lexend', sans-serif;
}

.wpcf-content-description p {
	margin-bottom: 20px;
}

.wpcf-content-description p:last-child {
	margin-bottom: 0;
}

/* Content Section - Form Frame */
.wpcf-form-frame {
	background: #FAF7F2;
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wpcf-form-frame h3 {
	color: #0E3F2B;
	font-size: 1.5em;
	margin: 0 0 24px 0;
	font-weight: 700;
}

/* =======================
   SNOWFLAKES
   ======================= */

.wpcf-snowflake {
	position: absolute;
	top: -100px;
	background: white;
	border-radius: 50%;
	pointer-events: none;
	animation-name: snowfall;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	z-index: 0;
	/* Below stars (z-index: 100) so they don't block clicks */
	opacity: 0.8;
}

@keyframes snowfall {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 0.8;
	}

	100% {
		transform: translateY(600px) rotate(360deg);
		opacity: 0;
	}
}

/* Adjust snowfall animation for mobile */
@media (max-width: 768px) {
	@keyframes snowfall {
		0% {
			transform: translateY(0) rotate(0deg);
			opacity: 0.8;
		}

		100% {
			transform: translateY(500px) rotate(360deg);
			opacity: 0;
		}
	}
}

@media (max-width: 480px) {
	@keyframes snowfall {
		0% {
			transform: translateY(0) rotate(0deg);
			opacity: 0.8;
		}

		100% {
			transform: translateY(400px) rotate(360deg);
			opacity: 0;
		}
	}
}

/* =======================
   VISUAL ITEMS (Balls & Stars)
   ======================= */

.wpcf-visual-item {
	position: absolute;
	cursor: pointer;
	transition: transform 0.3s ease;
	animation: fadeIn 0.5s ease-in;
	z-index: 100;
	/* Other balls/stars: z-index 100 */
}

.wpcf-visual-item:hover {
	transform: scale(1.2);
	/* Hovered ball z-index is set to 150 in JavaScript */
}

.wpcf-visual-ball {
	width: 45px;
	height: 45px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Ball colors - actual classes used by JavaScript */
.wpcf-visual-ball.wpcf-ball-red {
	background-image: url('../images/kerstactie/Kerstbal-1.svg');
}

.wpcf-visual-ball.wpcf-ball-silver {
	background-image: url('../images/kerstactie/Kerstbal-2.svg');
}

.wpcf-visual-star {
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
	overflow: visible;
	z-index: 100;
	position: relative;
	/* Ensure tooltip is not clipped and star is above other elements */
}


/* Visual Item Tooltip */
.wpcf-visual-tooltip {
	position: fixed;
	/* Use fixed positioning so tooltip can extend outside hero section */
	transform: translateX(-50%);
	margin-top: 0;
	/* Space between ball and tooltip is handled by JavaScript */
	background: white;
	color: #0E3F2B;
	padding: 16px 20px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 1.5;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 1000;
	/* High z-index so tooltip appears above everything */
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	width: auto;
	min-width: 200px;
	max-width: 320px;
	/* Ensure tooltip wraps text instead of going off screen */
	word-wrap: break-word;
	overflow-wrap: break-word;
	/* Prevent tooltip from going off screen */
	box-sizing: border-box;
}

.wpcf-visual-tooltip.visible {
	opacity: 1;
	visibility: visible;
}

.wpcf-tooltip-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	flex-wrap: nowrap;
}

.wpcf-tooltip-left {
	flex: 1;
	text-align: left;
	min-width: 0;
	/* Allow text to wrap properly */
}

.wpcf-tooltip-type {
	font-size: 12px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
	font-weight: 600;
}

.wpcf-tooltip-name {
	font-weight: 700;
	font-size: 14px;
	/* Consistent size for all types */
	color: #0E3F2B;
	margin-bottom: 4px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.wpcf-tooltip-message {
	font-size: 14px;
	color: #4A4A4A;
	line-height: 1.5;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	hyphens: auto;
	/* Better text wrapping for longer messages */
}

.wpcf-tooltip-right {
	font-weight: 700;
	font-size: 16px;
	/* Smaller (was 18px) */
	color: #D32F2F;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* =======================
   FORM STYLES
   ======================= */

.wpcf-kerstactie-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wpcf-step-1,
.wpcf-step-2,
.wpcf-step-3 {
	animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wpcf-form-row {
	margin-bottom: 12px;
}

.wpcf-form-row label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #0E3F2B;
}

.wpcf-form-row input[type="text"],
.wpcf-form-row input[type="email"],
.wpcf-form-row input[type="number"],
.wpcf-form-row textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #E0E0E0;
	border-radius: 8px;
	font-size: 1em;
	transition: border-color 0.3s;
	font-family: inherit;
}

.wpcf-form-row input:focus,
.wpcf-form-row textarea:focus {
	outline: none;
	border-color: #F2C94C;
	box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.1);
}

.wpcf-form-row textarea {
	resize: vertical;
	min-height: 100px;
}

.required {
	color: #D32F2F;
	margin-left: 4px;
}

.wpcf-field-description {
	font-size: 0.9em;
	color: #666;
	margin-top: 6px;
}

/* Donation Type Selector */
.wpcf-donation-type-selector h3 {
	margin-bottom: 16px;
	font-size: 1.2em;
	color: #0E3F2B;
}

.wpcf-donation-types {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 16px;
	align-items: stretch;
	grid-auto-rows: 1fr;
}

.wpcf-donation-type {
	cursor: pointer;
	display: flex;
	height: 100%;
}

.wpcf-donation-type input[type="radio"] {
	display: none;
}

.wpcf-type-card {
	background: white;
	border: 3px solid #E0E0E0;
	border-radius: 12px;
	padding: 16px 12px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 140px;
}

.wpcf-donation-type input[type="radio"]:checked+.wpcf-type-card {
	border-color: #F2C94C;
	background: #FFFEF8;
	box-shadow: 0 4px 12px rgba(242, 201, 76, 0.2);
}

.wpcf-type-card:hover {
	border-color: #F2C94C;
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.wpcf-type-icon {
	font-size: 2em;
	display: block;
	margin-bottom: 8px;
	line-height: 1;
}

.wpcf-type-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.wpcf-type-title {
	display: block;
	font-weight: 700;
	color: #0E3F2B;
	font-size: 1em;
	margin-bottom: 4px;
	line-height: 1.3;
	word-wrap: break-word;
}

.wpcf-type-description {
	display: block;
	font-size: 0.85em;
	color: #666;
	line-height: 1.3;
}

/* Privacy checkbox */
.wpcf-checkbox-label {
	display: flex;
	align-items: start;
	gap: 10px;
	cursor: pointer;
}

.wpcf-checkbox-label input[type="checkbox"] {
	margin-top: 4px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

/* Back button */
.wpcf-back-button {
	background: none;
	border: none;
	color: #666;
	padding: 8px 16px;
	font-size: 1em;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}

.wpcf-back-button:hover {
	color: #0E3F2B;
	background-color: transparent;
	transform: translateX(-4px);
}

.wpcf-back-button svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	stroke-width: 2;
}

/* Next step button */
.wpcf-next-step-button {
	width: 100%;
	background-color: #F2C94C;
	color: #0E3F2B;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	font-size: 1.2em;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 8px;
}

.wpcf-next-step-button:hover {
	background-color: #FFD966;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(242, 201, 76, 0.3);
}

.wpcf-next-step-button svg {
	width: 20px;
	height: 20px;
	stroke: #0E3F2B;
	stroke-width: 3;
}

/* Submit button */
.wpcf-submit-row {
	margin-top: 24px;
}

.wpcf-submit-button,
.wpcf-submit-btn {
	width: 100%;
	background-color: #0E3F2B;
	color: white;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	font-size: 1.2em;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.wpcf-submit-button:hover:not(:disabled),
.wpcf-submit-btn:hover:not(:disabled) {
	background-color: #0A2F1F;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(14, 63, 43, 0.3);
}

.wpcf-submit-button:disabled,
.wpcf-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Loading spinner */
.wpcf-loading {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 0.8s linear infinite;
	margin-left: 10px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Error messages */
.wpcf-error {
	background-color: #FEE;
	border: 1px solid #D32F2F;
	color: #D32F2F;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 16px;
}

/* Recurring fields */
.wpcf-recurring-fields {
	background: transparent;
	padding: 0;
	border-radius: 0;
	margin-top: 0;
}

.wpcf-row-flex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

/* Conditional form fields - shown/hidden by JavaScript */
.wpcf-field-amount,
.wpcf-field-email,
.wpcf-privacy-row {
	/* These are shown/hidden by JavaScript */
}

.wpcf-form-messages {
	/* Container for form messages */
	margin-top: 16px;
}

/* =======================
   RESPONSIVE
   ======================= */

@media (max-width: 1024px) {
	.wpcf-hero-container {
		gap: 40px;
	}
	
	.wpcf-kerstactie-hat {
		top: 5px;
		width: 140px;
		height: 88px;
	}

	.wpcf-hero-title {
		font-size: 3.5em;
	}

	.wpcf-content-container {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.wpcf-hero-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.wpcf-kerstactie-hat {
		top: -5px;
		left: 53%;
		width: 120px;
		height: 75px;
	}
	
	/* Ensure visual items stay within tree bounds on mobile */
	.wpcf-kerstactie-visual {
		min-height: 500px;
	}
	
	.wpcf-kerstactie-tree {
		/* Position tree higher on mobile - start from top instead of bottom */
		bottom: auto;
		top: 0;
		height: 100%;
		background-size: cover;
		background-position: center top;
	}
	
	.wpcf-kerstactie-sky {
		/* Adjust sky height on mobile */
		height: 40%;
	}

	.wpcf-hero-title {
		font-size: 2.8em;
		text-align: center;
	}

	.wpcf-hero-cta {
		display: block;
		text-align: center;
		margin: 0 auto;
		max-width: 200px;
	}

	.wpcf-hero-right {
		min-height: 400px;
	}

	.wpcf-floating-card {
		top: 20%;
		right: 5%;
		width: 160px;
		padding: 16px;
	}

	.wpcf-content-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.wpcf-content-right {
		position: static;
	}

	.wpcf-donation-types {
		grid-template-columns: 1fr;
	}

	.wpcf-row-flex {
		grid-template-columns: 1fr;
	}

	.wpcf-snowflake {
		/* Start snow from actual top of container */
		top: -30px;
	}
	
	.wpcf-kerstactie-snowman {
		/* Move snowman more to the right and make smaller on mobile */
		right: 5%;
		width: 100px;
		height: 120px;
	}
	
	.wpcf-visual-tooltip {
		/* Better sized tooltip on mobile */
		min-width: 180px;
		max-width: min(280px, calc(100vw - 40px));
		font-size: 13px;
		padding: 12px 16px;
		/* Ensure tooltip stays within viewport */
		box-sizing: border-box;
		/* Faster transition on mobile for better responsiveness */
		transition: opacity 0.1s ease, visibility 0.1s ease;
	}
	
	.wpcf-visual-tooltip.visible {
		/* Force visibility on mobile */
		opacity: 1 !important;
		visibility: visible !important;
	}
	
	.wpcf-tooltip-content {
		/* Stack content vertically on mobile for better readability */
		flex-direction: column;
		gap: 12px;
	}
	
	.wpcf-tooltip-right {
		/* Align amount to left on mobile */
		text-align: left;
		white-space: normal;
	}
}

/* Messages */
.wpcf-message {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 0.95em;
	line-height: 1.5;
}

.wpcf-error-message {
	background-color: #FEF2F2;
	color: #991B1B;
	border: 1px solid #FCA5A5;
	display: none;
}

.wpcf-success-message {
	background-color: #ECFDF5;
	color: #065F46;
	border: 1px solid #6EE7B7;
	display: none;
	padding: 15px 20px;
	border-radius: 4px;
	margin-bottom: 20px;
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
	.wpcf-kerstactie-hat {
		top: -10px;
		left: 53%;
		width: 100px;
		height: 63px;
	}
	
	.wpcf-kerstactie-visual {
		min-height: 400px;
	}
	
	.wpcf-kerstactie-tree {
		/* Position tree higher on very small screens */
		bottom: auto;
		top: 0;
		height: 100%;
		background-size: cover;
		background-position: center top;
	}
	
	.wpcf-kerstactie-sky {
		/* Adjust sky height on very small screens */
		height: 35%;
	}
	
	.wpcf-snowflake {
		/* Start snow from actual top on very small screens */
		top: -30px;
	}
	
	.wpcf-kerstactie-snowman {
		/* Move snowman even more to the right and smaller on very small screens */
		right: 3%;
		width: 80px;
		height: 96px;
	}
	
	.wpcf-visual-tooltip {
		/* Better sized tooltip on very small screens */
		min-width: 150px;
		max-width: min(260px, calc(100vw - 40px));
		font-size: 12px;
		padding: 10px 14px;
		/* Ensure tooltip stays within viewport */
		box-sizing: border-box;
	}
	
	.wpcf-tooltip-content {
		/* Ensure content doesn't overflow on very small screens */
		overflow-wrap: break-word;
		word-break: break-word;
	}
	
	.wpcf-tooltip-message {
		/* Better text wrapping on very small screens */
		hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
	}
	
	.wpcf-tooltip-content {
		/* Stack content vertically on very small screens */
		flex-direction: column;
		gap: 10px;
	}
	
	.wpcf-tooltip-right {
		/* Align amount to left on very small screens */
		text-align: left;
		white-space: normal;
	}
}