:root {
	--ccf-blue: #022b57;
	--ccf-green: #0a8a4b;
	--ccf-gold: #f4b51c;
	--ccf-gray: #5f6b7a;
	--ccf-surface: #f5f8f6;
	--ccf-border: #e1e8e4;
}

.ccf-required {
	margin-left: 6px;
	color: var(--ccf-green);
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.ccf-product {
	--ccf-content-gutter: clamp(24px, 5vw, 52px);

	padding: 24px 16px 72px;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
	color: #17212b;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

.ccf-product__container {
	width: min(1160px, 100%);
	margin: 0 auto;
}

.ccf-product__minimal-header {
	box-sizing: border-box;
	display: flex;
	gap: clamp(18px, 3vw, 28px);
	align-items: center;
	width: 100%;
	margin: 8px auto 30px;
	padding: 0 var(--ccf-content-gutter);
}

.ccf-product__minimal-image {
	display: grid;
	width: clamp(100px, 12vw, 132px);
	height: clamp(128px, 15vw, 170px);
	flex: 0 0 clamp(100px, 12vw, 132px);
	place-items: center;
}

.ccf-product__minimal-thumbnail,
.ccf-product__minimal-image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	border: 0 !important;
	border-radius: 0 !important;
	object-fit: contain;
	box-shadow: none !important;
}

.ccf-product__minimal-header p {
	margin: 0 0 7px;
	color: var(--ccf-green);
	font-size: 13px;
	font-weight: 650;
	letter-spacing: .01em;
}

.ccf-product__minimal-header h1 {
	max-width: 720px;
	margin: 0;
	color: var(--ccf-blue);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 650;
	letter-spacing: -.035em;
	line-height: 1.06;
}

.ccf-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	border-radius: 980px;
	color: #fff;
	background: #0a8a4b;
	font-weight: 500;
	text-decoration: none;
	box-shadow: none;
	transition: background 160ms ease, transform 160ms ease;
}

.ccf-button:hover,
.ccf-button:focus-visible {
	color: #fff;
	background: #087a43;
	transform: scale(1.015);
}

.ccf-wizard {
	scroll-margin-top: 24px;
	margin-top: 56px;
	padding: var(--ccf-content-gutter);
	border: 0;
	border-radius: 28px;
	background: #fff;
}

.ccf-wizard__form {
	margin-top: 34px;
}

.ccf-wizard__progress {
	margin-bottom: 36px;
}

.ccf-wizard__tutorial {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 16px;
}

.ccf-wizard__tutorial button {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	padding: 8px 13px;
	border: 1px solid var(--ccf-border);
	border-radius: 999px;
	color: var(--ccf-blue);
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.ccf-wizard__tutorial button:hover,
.ccf-wizard__tutorial button:focus-visible,
.ccf-wizard__tutorial button.is-active {
	border-color: var(--ccf-green);
	outline: 0;
	color: #fff;
	background: var(--ccf-green);
}

.ccf-wizard__tutorial .dashicons {
	width: 17px;
	height: 17px;
	font-size: 17px;
}

.ccf-wizard__progress-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	color: var(--ccf-gray);
	font-size: 13px;
}

.ccf-wizard__progress-meta strong {
	color: var(--ccf-blue);
}

.ccf-wizard__progress-track {
	height: 5px;
	overflow: hidden;
	border-radius: 5px;
	background: #e8e8ed;
}

.ccf-wizard__progress-track span {
	display: block;
	width: 25%;
	height: 100%;
	border-radius: inherit;
	background: var(--ccf-green);
	transition: width 260ms ease;
}

.ccf-wizard__step {
	animation: ccf-step-in 240ms ease both;
}

.ccf-wizard__step[hidden] {
	display: none;
}

.ccf-wizard__step > header {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 26px;
}

.ccf-wizard__step > header > span {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 50%;
	place-items: center;
	color: #fff;
	background: var(--ccf-blue);
	font-size: 12px;
	font-weight: 700;
}

.ccf-wizard__step h3,
.ccf-wizard__step header p {
	margin: 0;
}

.ccf-wizard__step h3 {
	color: var(--ccf-blue);
	font-size: 22px;
	letter-spacing: -.02em;
}

.ccf-wizard__step header p {
	margin-top: 4px;
	color: var(--ccf-gray);
}

.ccf-wizard__fields {
	display: grid;
	gap: 18px;
}

.ccf-wizard__group-title {
	padding: 14px 0 2px;
	border-bottom: 1px solid var(--ccf-border);
}

.ccf-wizard__group-title:first-child {
	padding-top: 0;
}

.ccf-wizard__group-title strong,
.ccf-wizard__group-title span {
	display: block;
}

.ccf-wizard__group-title strong {
	color: var(--ccf-blue);
	font-size: 16px;
}

.ccf-wizard__group-title span {
	margin-top: 4px;
	color: var(--ccf-gray);
	font-size: 13px;
}

.ccf-wizard__field {
	position: relative;
	display: block;
	color: var(--ccf-blue);
	font-size: 14px;
	font-weight: 600;
}

.ccf-wizard__field input,
.ccf-wizard__field select,
.ccf-wizard__field textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin-top: 8px;
	padding: 13px 14px;
	border: 1px solid #d2d2d7;
	border-radius: 12px;
	color: var(--ccf-blue);
	background: #fff;
	font: inherit;
	font-weight: 400;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.ccf-wizard__field input,
.ccf-wizard__field select {
	min-height: 50px;
}

.ccf-wizard__field input:focus,
.ccf-wizard__field select:focus,
.ccf-wizard__field textarea:focus {
	border-color: var(--ccf-green);
	outline: 0;
	box-shadow: 0 0 0 3px rgb(10 138 75 / 12%);
}

.ccf-wizard__field input:disabled {
	color: #86868b;
	background: var(--ccf-surface);
}

.ccf-wizard__field small {
	display: block;
	min-height: 18px;
	margin-top: 5px;
	color: #b42318;
	font-weight: 400;
}

.ccf-wizard__check {
	position: relative;
	display: flex;
	gap: 9px;
	align-items: center;
	align-self: end;
	min-height: 50px;
	color: var(--ccf-gray);
	font-size: 14px;
	cursor: pointer;
}

.ccf-wizard__field.is-guided input,
.ccf-wizard__field.is-guided select,
.ccf-wizard__field.is-guided textarea,
.ccf-wizard__check.is-guided {
	border-color: var(--ccf-green);
	box-shadow: 0 0 0 4px rgb(10 138 75 / 13%);
}

.ccf-wizard__field.is-guided,
.ccf-wizard__check.is-guided {
	z-index: 20;
}

.ccf-field-tip {
	position: absolute;
	z-index: 30;
	top: calc(100% + 12px);
	left: 12px;
	box-sizing: border-box;
	width: min(320px, calc(100vw - 72px));
	padding: 14px;
	border: 1px solid rgb(2 43 87 / 12%);
	border-radius: 14px;
	color: var(--ccf-blue);
	background: #fff;
	box-shadow: 0 12px 30px rgb(2 43 87 / 12%);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	animation: ccf-tip-in 180ms ease-out;
}

.ccf-field-tip__arrow {
	position: absolute;
	top: -7px;
	left: 22px;
	width: 14px;
	height: 14px;
	border-top: 1px solid rgb(2 43 87 / 12%);
	border-left: 1px solid rgb(2 43 87 / 12%);
	background: #fff;
	transform: rotate(45deg);
}

.ccf-field-tip p {
	position: relative;
	z-index: 1;
	margin: 0;
}

.ccf-field-tip__controls {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 12px;
	padding-top: 11px;
	border-top: 1px solid rgb(2 43 87 / 9%);
}

.ccf-field-tip__controls small {
	min-height: 0;
	margin: 0 auto 0 0;
	color: rgb(2 43 87 / 64%);
	font-size: 11px;
}

.ccf-field-tip__controls button {
	padding: 5px 9px;
	border: 1px solid rgb(2 43 87 / 18%);
	border-radius: 999px;
	color: var(--ccf-blue);
	background: transparent;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.ccf-field-tip__controls [data-ccf-tip-next] {
	border-color: var(--ccf-green);
	color: #fff;
	background: var(--ccf-green);
}

@keyframes ccf-tip-in {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

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

.ccf-wizard__check input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--ccf-green);
}

.ccf-wizard__actions {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.ccf-wizard__actions--end {
	justify-content: flex-end;
}

.ccf-wizard__back {
	min-height: 46px;
	padding: 0 20px;
	border: 0;
	border-radius: 980px;
	color: var(--ccf-blue);
	background: var(--ccf-surface);
	font-weight: 600;
	cursor: pointer;
}

.ccf-wizard .ccf-button:disabled {
	cursor: wait;
	opacity: .72;
	transform: none;
}

.ccf-wizard__summary {
	margin-top: 26px;
	overflow: hidden;
	border: 1px solid var(--ccf-border);
	border-radius: 16px;
	background: #fff;
}

.ccf-wizard__summary-header {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background: var(--ccf-surface);
}

.ccf-wizard__summary-header span,
.ccf-wizard__summary small {
	color: var(--ccf-gray);
}

.ccf-wizard__summary-header h4 {
	margin: 4px 0 0;
	color: var(--ccf-blue);
	font-size: 18px;
	letter-spacing: -.015em;
}

.ccf-wizard__summary-check {
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	color: #0a8a4b !important;
	font-size: 28px;
}

.ccf-wizard__summary-groups {
	display: grid;
}

.ccf-wizard__summary-groups > section {
	padding: 20px;
	border-bottom: 1px solid var(--ccf-border);
}

.ccf-wizard__summary-groups section > header,
.ccf-wizard__summary-groups section > header > div {
	display: flex;
	gap: 10px;
	align-items: center;
}

.ccf-wizard__summary-groups section > header {
	justify-content: space-between;
	margin-bottom: 15px;
}

.ccf-wizard__summary-groups section > header .dashicons {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	color: var(--ccf-green);
	font-size: 20px;
}

.ccf-wizard__summary-groups h5 {
	margin: 0;
	color: var(--ccf-blue);
	font-size: 14px;
}

.ccf-wizard__summary-groups button {
	display: grid;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	place-items: center;
	color: var(--ccf-blue);
	background: var(--ccf-surface);
	cursor: pointer;
	transition: color 160ms ease, background 160ms ease;
}

.ccf-wizard__summary-groups button:hover,
.ccf-wizard__summary-groups button:focus-visible {
	color: #fff;
	background: var(--ccf-green);
}

.ccf-wizard__summary-groups button .dashicons {
	color: currentcolor;
}

.ccf-wizard__summary-groups dl,
.ccf-wizard__summary-total span {
	margin: 0;
}

.ccf-wizard__summary-groups dl > div {
	display: grid;
	grid-template-columns: minmax(100px, .8fr) minmax(0, 1.4fr);
	gap: 12px;
	padding: 7px 0;
}

.ccf-wizard__summary-groups dt {
	color: var(--ccf-gray);
	font-size: 12px;
}

.ccf-wizard__summary-groups dd {
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
	color: var(--ccf-blue);
	font-size: 13px;
	font-weight: 600;
	text-align: right;
}

.ccf-wizard__summary-total small,
.ccf-wizard__summary-total em {
	display: block;
}

.ccf-wizard__summary-total {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-top: 1px solid var(--ccf-border);
}

.ccf-wizard__summary-total em {
	margin-top: 3px;
	color: var(--ccf-gray);
	font-size: 12px;
	font-style: normal;
}

.ccf-wizard__summary-total > strong {
	color: var(--ccf-blue);
	font-size: 24px;
	font-weight: 650;
	letter-spacing: -.025em;
}

.ccf-wizard__notice {
	margin: 18px 0 0;
	padding: 14px 16px;
	border-radius: 12px;
	color: #035c3d;
	background: #e9f7f1;
	font-size: 14px;
}

@keyframes ccf-step-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

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

.ccf-product__section,
.ccf-product__reviews {
	margin-top: 64px;
	padding: var(--ccf-content-gutter);
	border: 0;
	border-radius: 28px;
	background: #fff;
}

.ccf-product__reviews {
	position: relative;
	overflow: hidden;
	border: 1px solid #e4ece7;
	background: linear-gradient(145deg, #fbfdfc 0%, #f3f8f5 58%, #fffcf3 100%);
}

.ccf-product__reviews::before {
	position: absolute;
	top: -56px;
	right: 28px;
	color: rgb(2 43 87 / 6%);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(180px, 22vw, 330px);
	font-weight: 700;
	line-height: 1;
	content: "“";
	pointer-events: none;
}

.ccf-product__reviews > * {
	position: relative;
	z-index: 1;
}

.ccf-product__section h2,
.ccf-product__reviews h2 {
	margin-top: 0;
	color: var(--ccf-blue);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 650;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.ccf-product__trust {
	display: grid;
	gap: 16px;
	margin-top: 56px;
	margin-inline: var(--ccf-content-gutter);
}

.ccf-product__trust > div {
	display: flex;
	gap: 18px;
	align-items: center;
	min-height: 112px;
	padding: 24px;
	border: 1px solid transparent;
	border-radius: 22px;
	background: var(--ccf-surface);
	transition: border-color 220ms ease, transform 220ms ease;
}

.ccf-product__trust > div:hover {
	border-color: #d2d2d7;
	background: var(--ccf-surface);
	box-shadow: none;
	transform: translateY(-2px);
}

.ccf-product__trust-icon {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	place-items: center;
	border-radius: 50%;
	color: var(--ccf-blue);
	background: #fff;
	transition: transform 220ms ease;
}

.ccf-product__trust > div:hover .ccf-product__trust-icon {
	color: var(--ccf-blue);
	background: #fff;
	transform: scale(1.06);
}

.ccf-product__trust-icon .dashicons {
	width: 22px;
	height: 22px;
	font-size: 22px;
}

.ccf-product__trust p {
	z-index: 1;
	margin: 0;
}

.ccf-product__trust strong,
.ccf-product__trust span {
	display: block;
}

.ccf-product__trust strong {
	color: var(--ccf-blue);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -.015em;
}

.ccf-product__trust span {
	margin-top: 5px;
	color: var(--ccf-gray);
	line-height: 1.35;
}

.ccf-faq__item {
	margin-top: 12px;
	overflow: hidden;
	border: 1px solid var(--ccf-border);
	border-radius: 18px;
	background: #fff;
	transition: transform 220ms ease;
}

.ccf-faq__item[open] {
	box-shadow: none;
	transform: scale(1.005);
}

.ccf-faq__item summary {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) 28px;
	gap: 12px;
	align-items: center;
	padding: 20px;
	list-style: none;
	color: var(--ccf-blue);
	font-weight: 700;
	cursor: pointer;
}

.ccf-faq__item summary::-webkit-details-marker {
	display: none;
}

.ccf-faq__question-icon {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	color: var(--ccf-blue);
	background: var(--ccf-surface);
	font-size: 18px;
	line-height: 34px;
	text-align: center;
}

.ccf-faq__toggle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f5f5f7;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	transition: transform 220ms ease;
}

.ccf-faq__item[open] .ccf-faq__toggle {
	transform: rotate(180deg);
}

.ccf-faq__answer {
	margin: 0 20px 20px 68px;
	padding: 0;
	background: transparent;
	color: var(--ccf-gray);
	line-height: 1.7;
}

.ccf-faq__answer p {
	margin: 0;
}

.ccf-product__section-intro {
	margin-top: -8px;
	color: var(--ccf-gray);
}

.ccf-product__section-heading > p {
	margin: 0 0 6px;
	color: var(--ccf-green);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -.01em;
}

.ccf-reviews {
	display: grid;
	min-height: 260px;
	align-items: center;
}

.ccf-reviews > * {
	grid-area: 1 / 1;
}

.ccf-review {
	position: relative;
	max-width: 760px;
	margin-inline: auto;
	padding: 20px 0;
	opacity: 0;
	text-align: center;
	transform: translateX(18px);
	transition: opacity 380ms ease, transform 380ms ease;
	pointer-events: none;
}

.ccf-review.is-active {
	z-index: 1;
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.ccf-review blockquote {
	margin: 22px 0 26px;
	color: var(--ccf-blue);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.35;
}

.ccf-review blockquote p {
	margin: 0;
}

.ccf-review footer {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	text-align: left;
}

.ccf-review footer div > span {
	display: block;
	margin-top: 2px;
	color: var(--ccf-gray);
	font-size: 12px;
}

.ccf-review__avatar {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	background: var(--ccf-blue);
	font-size: 13px;
	font-weight: 800;
}

.ccf-review__rating {
	position: relative;
	z-index: 1;
	color: var(--ccf-gold);
	display: flex;
	gap: 2px;
	justify-content: center;
	font-size: 16px;
}

.ccf-review__rating .dashicons {
	width: 17px;
	height: 17px;
	font-size: 17px;
}

.ccf-slider__navigation {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
}

.ccf-slider__arrow {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid #d2d2d7;
	border-radius: 50%;
	place-items: center;
	color: var(--ccf-blue);
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.ccf-slider__arrow:hover,
.ccf-slider__arrow:focus-visible {
	border-color: var(--ccf-blue);
	color: #fff;
	background: var(--ccf-blue);
}

.ccf-slider__arrow .dashicons {
	width: 17px;
	height: 17px;
	font-size: 17px;
}

.ccf-slider__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.ccf-slider__dots button {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #b8b8bd;
	box-shadow: none;
	cursor: pointer;
	transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.ccf-slider__dots button.is-active {
	width: 22px;
	border-radius: 5px;
	background: var(--ccf-blue);
}

.ccf-product .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

@media (min-width: 800px) {
	.ccf-product {
		padding: 36px 28px 96px;
	}

	.ccf-product__trust {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ccf-wizard__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ccf-wizard__field--full {
		grid-column: 1 / -1;
	}

	.ccf-wizard__summary-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ccf-wizard__summary-groups > section:nth-child(odd) {
		border-right: 1px solid var(--ccf-border);
	}

	.ccf-wizard__summary-groups > section:nth-last-child(-n+2) {
		border-bottom: 0;
	}
}

@media (max-width: 540px) {
	.ccf-product__minimal-header {
		gap: 16px;
		align-items: center;
		margin-bottom: 24px;
	}

	.ccf-product__minimal-image {
		width: 90px;
		height: 116px;
		flex-basis: 90px;
	}

	.ccf-product__minimal-header h1 {
		font-size: clamp(24px, 8vw, 32px);
	}

}

@media (max-width: 767px) {
	.ccf-wizard__tutorial,
	.ccf-field-tip {
		display: none !important;
	}

	.ccf-wizard__field.is-guided input,
	.ccf-wizard__field.is-guided select,
	.ccf-wizard__field.is-guided textarea,
	.ccf-wizard__check.is-guided {
		border-color: var(--ccf-border);
		box-shadow: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ccf-button,
	.ccf-product__trust > div,
	.ccf-product__trust-icon,
	.ccf-faq__item,
	.ccf-faq__toggle,
	.ccf-review,
	.ccf-slider__arrow,
	.ccf-slider__dots button,
	.ccf-wizard__progress-track span,
	.ccf-wizard__step,
	.ccf-wizard__summary-groups button {
		transition: none;
		animation: none;
	}
}
/* Verified purchases */
.ccf-purchase-popup {
	position: fixed;
	z-index: 9999;
	left: 24px;
	bottom: 24px;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	width: min(360px, calc(100vw - 32px));
	padding: 18px 48px 18px 18px;
	border: 1px solid rgba(0, 85, 54, 0.15);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 12px 35px rgba(0, 45, 31, 0.1);
	color: #002f5f;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 300ms ease, transform 300ms ease;
	backdrop-filter: blur(14px);
}

.ccf-purchase-popup[hidden] {
	display: none;
}

.ccf-purchase-popup.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ccf-purchase-popup__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e9f7ef;
	color: #008c4a;
	font-size: 24px;
}

.ccf-purchase-popup__content {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.ccf-purchase-popup__content small {
	color: #008c4a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.ccf-purchase-popup__content strong,
.ccf-purchase-popup__content span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ccf-purchase-popup__content strong {
	font-size: 15px;
	line-height: 1.35;
}

.ccf-purchase-popup__content span {
	color: #5c6975;
	font-size: 13px;
}

.ccf-purchase-popup__close {
	position: absolute;
	top: 8px;
	right: 8px;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #66727d;
	cursor: pointer;
}

.ccf-purchase-popup__close:hover,
.ccf-purchase-popup__close:focus-visible {
	background: #f1f5f3;
	color: #002f5f;
}

@media (max-width: 600px) {
	.ccf-purchase-popup {
		left: 16px;
		bottom: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ccf-purchase-popup {
		transition: none;
	}
}
