/* =========================================================
 * Tech Resolve — Online Store FAQ
 * ======================================================= */

.tr-online-store-faq {
	position: relative;
	overflow: hidden;
	padding: clamp(115px, 11vw, 185px) var(--tr-gutter);
	background: #06100d;
	color: #fff;
}

.tr-online-store-faq__shell {
	width: min(100%, var(--tr-container));
	margin: 0 auto;
}

.tr-online-store-faq__header {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .55fr);
	align-items: end;
	gap: clamp(50px, 8vw, 120px);
	margin-bottom: clamp(65px, 8vw, 100px);
}

.tr-online-store-faq__eyebrow {
	display: block;
	margin-bottom: 18px;
	color: var(--tr-green);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .15em;
}

.tr-online-store-faq__header h2 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(44px, 5.1vw, 74px);
	font-weight: 850;
	line-height: .98;
	letter-spacing: -.055em;
}

.tr-online-store-faq__header > p {
	max-width: 560px;
	margin: 0;
	color: rgba(255,255,255,.46);
	font-size: 14px;
	line-height: 1.82;
}

.tr-online-store-faq__questions {
	border-top: 1px solid rgba(255,255,255,.09);
}

.tr-online-store-faq__item {
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.tr-online-store-faq .tr-online-store-faq__trigger,
.tr-online-store-faq .tr-online-store-faq__trigger:hover,
.tr-online-store-faq .tr-online-store-faq__trigger:focus {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 22px;
	width: 100%;
	min-height: 112px;
	margin: 0;
	padding: 22px 0;
	color: #fff !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.tr-online-store-faq .tr-online-store-faq__trigger:focus-visible {
	outline: 1px solid rgba(25,224,120,.55);
	outline-offset: 5px;
}

.tr-online-store-faq__number {
	color: rgba(255,255,255,.18);
	font-size: 7px;
	font-weight: 850;
}

.tr-online-store-faq__question {
	max-width: 920px;
	color: rgba(255,255,255,.75);
	font-size: clamp(19px, 2vw, 28px);
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -.025em;
}

.tr-online-store-faq__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 50%;
}

.tr-online-store-faq__icon i {
	position: absolute;
	width: 13px;
	height: 1px;
	background: rgba(255,255,255,.5);
	transition: transform 220ms var(--tr-ease);
}

.tr-online-store-faq__icon i:last-child {
	transform: rotate(90deg);
}

.tr-online-store-faq__trigger[aria-expanded="true"] .tr-online-store-faq__number {
	color: var(--tr-green);
}

.tr-online-store-faq__trigger[aria-expanded="true"] .tr-online-store-faq__question {
	color: #fff;
}

.tr-online-store-faq__trigger[aria-expanded="true"] .tr-online-store-faq__icon {
	background: var(--tr-green);
	border-color: var(--tr-green);
}

.tr-online-store-faq__trigger[aria-expanded="true"] .tr-online-store-faq__icon i {
	background: #06100d;
}

.tr-online-store-faq__trigger[aria-expanded="true"] .tr-online-store-faq__icon i:last-child {
	transform: rotate(0deg);
}

.tr-online-store-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows 260ms var(--tr-ease), opacity 180ms ease;
}

.tr-online-store-faq__panel > div {
	overflow: hidden;
}

.tr-online-store-faq__item.is-open .tr-online-store-faq__panel {
	grid-template-rows: 1fr;
	opacity: 1;
}

.tr-online-store-faq__panel p {
	max-width: 850px;
	margin: 0 0 34px 92px;
	color: rgba(255,255,255,.43);
	font-size: 11px;
	line-height: 1.8;
}

@media (max-width: 720px) {
	.tr-online-store-faq { padding: 90px 16px; }
	.tr-online-store-faq__header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }
	.tr-online-store-faq__header h2 { font-size: clamp(40px,11vw,58px); }
	.tr-online-store-faq .tr-online-store-faq__trigger,
	.tr-online-store-faq .tr-online-store-faq__trigger:hover,
	.tr-online-store-faq .tr-online-store-faq__trigger:focus {
		grid-template-columns: 42px minmax(0,1fr) 36px;
		gap: 12px;
		min-height: 94px;
	}
	.tr-online-store-faq__question { font-size: 18px; }
	.tr-online-store-faq__panel p { margin: 0 0 28px 54px; font-size: 10px; }
}
