/* =========================================================
 * Tech Resolve — Online Store Final CTA
 * Version: 2.0
 * ======================================================= */

.tr-online-store-final-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(110px, 10vw, 165px) var(--tr-gutter);
	color: #06100d;
	background: var(--tr-green);
}

.tr-online-store-final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .12;
	background-image:
		linear-gradient(rgba(6,16,13,.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(6,16,13,.16) 1px, transparent 1px);
	background-size: 78px 78px;
	pointer-events: none;
}

.tr-online-store-final-cta::after {
	content: "";
	position: absolute;
	right: -220px;
	top: -280px;
	width: 660px;
	height: 660px;
	border: 1px solid rgba(6,16,13,.14);
	border-radius: 50%;
	box-shadow:
		0 0 0 44px rgba(6,16,13,.025),
		0 0 0 88px rgba(6,16,13,.018);
	pointer-events: none;
}

.tr-online-store-final-cta__shell {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, .48fr);
	gap: clamp(54px, 8vw, 120px);
	align-items: end;
	width: min(100%, var(--tr-container));
	margin: 0 auto;
}


/* =========================================================
 * Content
 * ======================================================= */

.tr-online-store-final-cta__content {
	max-width: 940px;
}

.tr-online-store-final-cta__eyebrow {
	display: block;
	margin-bottom: 20px;
	color: rgba(6,16,13,.62);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .15em;
}

.tr-online-store-final-cta__content h2 {
	max-width: 980px;
	margin: 0;
	color: #06100d !important;
	font-size: clamp(52px, 6vw, 88px);
	font-weight: 900;
	line-height: .94;
	letter-spacing: -.064em;
}

.tr-online-store-final-cta__content > p {
	max-width: 700px;
	margin: 30px 0 0;
	color: rgba(6,16,13,.7) !important;
	font-size: 15px;
	line-height: 1.8;
}


/* =========================================================
 * Button
 * ======================================================= */

.tr-online-store-final-cta__button {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	min-height: 58px;
	margin-top: 38px;
	padding: 0 26px 0 30px;
	color: #ffffff !important;
	background: #06100d !important;
	border: 1px solid #06100d !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	text-decoration: none !important;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	transition:
		transform .25s var(--tr-ease),
		background .25s var(--tr-ease),
		color .25s var(--tr-ease);
}

.tr-online-store-final-cta__button span {
	color: inherit !important;
}

.tr-online-store-final-cta__button i {
	position: relative;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 50%;
}

.tr-online-store-final-cta__button i::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: translate(-62%, -50%) rotate(45deg);
}

@media (hover: hover) {

	.tr-online-store-final-cta__button:hover {
		color: #06100d !important;
		background: #ffffff !important;
		border-color: #ffffff !important;
		transform: translateY(-2px);
	}

	.tr-online-store-final-cta__button:hover i {
		border-color: rgba(6,16,13,.2);
	}

}


/* =========================================================
 * Brief Panel
 * ======================================================= */

.tr-online-store-final-cta__brief {
	overflow: hidden;
	color: #ffffff;
	background: #07140f;
	border: 1px solid rgba(6,16,13,.18);
	border-radius: 26px;
	box-shadow: 0 40px 90px rgba(6,16,13,.16);
}

.tr-online-store-final-cta__brief-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 58px;
	padding: 0 22px;
	border-bottom: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.34);
	font-size: 6px;
	font-weight: 850;
	letter-spacing: .09em;
}

.tr-online-store-final-cta__brief-head strong {
	color: var(--tr-green) !important;
	font-size: inherit;
	font-weight: 850;
}

.tr-online-store-final-cta__brief-list {
	padding: 12px 22px;
}

.tr-online-store-final-cta__brief-list > div {
	display: grid;
	grid-template-columns: 34px minmax(0,1fr) 44px;
	gap: 12px;
	align-items: center;
	min-height: 64px;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.tr-online-store-final-cta__brief-list > div:last-child {
	border-bottom: 0;
}

.tr-online-store-final-cta__brief-list span {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	color: #06100d !important;
	background: var(--tr-green);
	border-radius: 50%;
	font-size: 6px;
	font-weight: 900;
}

.tr-online-store-final-cta__brief-list strong {
	color: #ffffff !important;
	font-size: 12px;
	font-weight: 760;
	line-height: 1.4;
}

.tr-online-store-final-cta__brief-list i {
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(25,224,120,.34),
		transparent
	);
}

.tr-online-store-final-cta__brief-flow {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 54px;
	padding: 0 22px;
	border-top: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.24);
	font-size: 5px;
	font-weight: 850;
	letter-spacing: .08em;
}

.tr-online-store-final-cta__brief-flow i {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,.08);
}

.tr-online-store-final-cta__brief-flow strong {
	color: var(--tr-green) !important;
	font-size: inherit;
	font-weight: inherit;
}


/* =========================================================
 * Contrast Lock
 * ======================================================= */

.tr-online-store-final-cta__content h1,
.tr-online-store-final-cta__content h2,
.tr-online-store-final-cta__content h3,
.tr-online-store-final-cta__content h4,
.tr-online-store-final-cta__content h5,
.tr-online-store-final-cta__content h6 {
	color: #06100d !important;
}

.tr-online-store-final-cta__brief h1,
.tr-online-store-final-cta__brief h2,
.tr-online-store-final-cta__brief h3,
.tr-online-store-final-cta__brief h4,
.tr-online-store-final-cta__brief h5,
.tr-online-store-final-cta__brief h6,
.tr-online-store-final-cta__brief strong {
	color: #ffffff !important;
}


/* =========================================================
 * Tablet
 * ======================================================= */

@media (max-width: 960px) {

	.tr-online-store-final-cta__shell {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.tr-online-store-final-cta__brief {
		width: min(100%, 560px);
		justify-self: end;
	}

}


/* =========================================================
 * Mobile
 * ======================================================= */

@media (max-width: 720px) {

	.tr-online-store-final-cta {
		padding: 90px 16px;
	}

	.tr-online-store-final-cta__shell {
		gap: 48px;
	}

	.tr-online-store-final-cta__content h2 {
		font-size: clamp(46px, 12vw, 64px);
	}

	.tr-online-store-final-cta__content > p {
		font-size: 14px;
	}

	.tr-online-store-final-cta__button {
		width: 100%;
		justify-content: space-between;
	}

	.tr-online-store-final-cta__brief {
		width: 100%;
	}

}
