/* Get Started Banner - Scroll Triggered */

.gs-banner {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 635px;
	height: 205px;
	background: #f8e6ff;
	border-radius: 28px;
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
	            0px 4px 6px -4px rgba(0, 0, 0, 0.1);
	padding: 16px;
	display: flex;
	gap: 16px;
	align-items: stretch;
	overflow: hidden;
	z-index: 9999;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.gs-banner.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* Close Button */
.gs-banner__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 18px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
	opacity: 0.5;
	z-index: 4;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
}

.gs-banner__close:hover {
	opacity: 1;
}

.gs-banner__close svg {
	width: 18px;
	height: 18px;
	stroke: #000000;
}

/* Content Section */
.gs-banner__content {
	position: relative;
	z-index: 3;
	flex: 1;
	min-width: 200px;
	max-width: 397px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
}

.gs-banner__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.gs-banner__text {
	font-family: 'TWK Everett', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	color: #000000;
	margin: 0;
}

/* Button */
.gs-banner__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 40px;
	padding: 8px 12px;
	background: #000000;
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	border: 2px solid #000000;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	white-space: nowrap;
	align-self: flex-start;
}

.gs-banner__button:hover {
	background: #1a1a1a;
	border-color: #1a1a1a;
}

.gs-banner__button svg {
	width: 16px;
	height: 16px;
	stroke: #ffffff;
}

/* Graphic Section */
.gs-banner__graphic {
	position: relative;
	z-index: 2;
	width: 238px;
	height: 165px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 40px 0 0;
}

.gs-banner__graphic-img {
	width: 375px;
	height: 275px;
	object-fit: cover;
	object-position: 50% 50%;
	max-width: none;
}

/* Background Pattern */
.gs-banner__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1080px;
	height: 608px;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
}

.gs-banner__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/wp-content/uploads/2025/12/gs-banner-bg.svg') no-repeat center;
	background-size: contain;
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.gs-banner {
		width: 500px;
		height: auto;
		min-height: 180px;
	}

	.gs-banner__content {
		max-width: 300px;
	}

	.gs-banner__text {
		font-size: 18px;
	}

	.gs-banner__graphic {
		width: 180px;
		height: 140px;
		padding: 10px 20px 0 0;
	}

	.gs-banner__graphic-img {
		width: 280px;
		height: 200px;
	}
}

@media (max-width: 768px) {
	.gs-banner {
		bottom: 10px;
		right: 10px;
		left: 10px;
		width: auto;
		flex-direction: column;
		height: auto;
		padding: 20px;
		padding-bottom: 140px;
	}

	.gs-banner__content {
		max-width: 100%;
		gap: 12px;
	}

	.gs-banner__text {
		font-size: 16px;
	}

	.gs-banner__button {
		width: 100%;
		height: 48px;
		font-size: 18px;
	}

	.gs-banner__graphic {
		position: absolute;
		bottom: 10px;
		right: 50%;
		transform: translateX(50%);
		width: 160px;
		height: 120px;
		padding: 0;
	}

	.gs-banner__graphic-img {
		width: 220px;
		height: 160px;
	}

	.gs-banner__close {
		top: 15px;
		right: 15px;
	}
}
