.twe-accordion__trigger {
	align-items: center;
	background: #fff;
	border: 1px solid #d8dedb;
	border-radius: 12px;
	color: #173b2d;
	cursor: pointer;
	display: flex;
	font: inherit;
	font-weight: 700;
	justify-content: space-between;
	margin: 18px 0;
	padding: 16px 18px;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.twe-accordion__trigger:hover {
	border-color: #2e6b4f;
}

.twe-accordion__trigger:focus-visible,
.twe-sticky-cta__button:focus-visible {
	outline: 3px solid rgba(46, 107, 79, 0.35);
	outline-offset: 3px;
}

.twe-accordion__icon {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	flex: 0 0 auto;
	height: 9px;
	margin-left: 18px;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 160ms ease;
	width: 9px;
}

.twe-accordion__trigger[aria-expanded="true"] .twe-accordion__icon {
	transform: rotate(225deg) translate(-2px, -2px);
}

.twe-accordion__trigger--wide {
	grid-column: 1 / -1;
}

.twe-accordion__content.twe-is-collapsed,
.twe-accordion__content[hidden] {
	display: none !important;
}

.twe-sticky-cta {
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid rgba(23, 59, 45, 0.16);
	bottom: 0;
	box-shadow: 0 -10px 30px rgba(17, 37, 29, 0.12);
	left: 0;
	opacity: 0;
	padding: 10px 18px max(10px, env(safe-area-inset-bottom));
	pointer-events: none;
	position: fixed;
	right: 0;
	transform: translateY(calc(100% + 20px));
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 9998;
}

.twe-sticky-cta--visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.twe-sticky-cta__inner {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1180px;
}

.twe-sticky-cta__product {
	align-items: baseline;
	display: flex;
	gap: 14px;
	min-width: 0;
}

.twe-sticky-cta__name {
	color: #173b2d;
	font-size: 15px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.twe-sticky-cta__price {
	color: #173b2d;
	font-size: 17px;
	font-weight: 800;
	white-space: nowrap;
}

.twe-sticky-cta__price del {
	font-size: 0.82em;
	opacity: 0.65;
}

.twe-sticky-cta__button {
	background: #2e6b4f;
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	flex: 0 0 auto;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	min-height: 46px;
	padding: 11px 28px;
}

.twe-sticky-cta__button:hover {
	background: #24583f;
}

.twe-sticky-cta__message {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

@media (max-width: 767px) {
	.twe-sticky-cta {
		padding-left: 12px;
		padding-right: 12px;
	}

	.twe-sticky-cta__inner {
		gap: 10px;
	}

	.twe-sticky-cta__name {
		display: none;
	}

	.twe-sticky-cta__price {
		font-size: 16px;
	}

	.twe-sticky-cta__button {
		min-width: 150px;
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.twe-accordion__icon,
	.twe-accordion__trigger,
	.twe-sticky-cta {
		transition: none;
	}
}
