:root {
	--owfgr-bg: #ffffff;
	--owfgr-text: #202124;
	--owfgr-accent: #fbbc04;
	--owfgr-border: #dadce0;
	--owfgr-mobile-bottom: 96px;
}

.owfgr-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 10px 17px 10px 12px;
	border: 1px solid var(--owfgr-border);
	border-radius: 999px;
	background: var(--owfgr-bg);
	color: var(--owfgr-text);
	box-shadow: 0 5px 22px rgba(0, 0, 0, 0.16);
	font-family: inherit;
	line-height: 1.2;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.owfgr-button:hover,
.owfgr-button:focus-visible {
	color: var(--owfgr-text);
	text-decoration: none !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.owfgr-button:focus-visible {
	outline: 3px solid rgba(26, 115, 232, 0.35);
	outline-offset: 3px;
}

.owfgr-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--owfgr-accent) 18%, transparent);
}

.owfgr-icon svg {
	width: 23px;
	height: 23px;
	fill: var(--owfgr-accent);
}

.owfgr-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.owfgr-title {
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
}

.owfgr-secondary {
	font-size: 11px;
	font-weight: 400;
	opacity: 0.78;
	white-space: nowrap;
}

.owfgr-rating-row {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 2px;
	white-space: nowrap;
}

.owfgr-rating-number {
	font-size: 12px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.owfgr-stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.owfgr-star {
	position: relative;
	display: inline-block;
	width: 1em;
	height: 1em;
}

.owfgr-star-base {
	position: absolute;
	top: 0;
	left: 0;
	color: #d5d8dc;
}

.owfgr-star-fill {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	overflow: hidden;
	color: var(--owfgr-accent);
	white-space: nowrap;
}

.owfgr-floating {
	position: fixed;
	bottom: max(22px, env(safe-area-inset-bottom));
	z-index: 999999;
}

.owfgr-position-right {
	right: max(22px, env(safe-area-inset-right));
}

.owfgr-position-left {
	left: max(22px, env(safe-area-inset-left));
}

@media (max-width: 782px) {
	.owfgr-floating {
		bottom: max(var(--owfgr-mobile-bottom), env(safe-area-inset-bottom));
		max-width: calc(100vw - 32px);
	}

	.owfgr-position-right {
		right: max(16px, env(safe-area-inset-right));
	}

	.owfgr-position-left {
		left: max(16px, env(safe-area-inset-left));
	}

	.owfgr-button {
		min-height: 54px;
		padding: 8px 14px 8px 9px;
		gap: 9px;
	}

	.owfgr-icon {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}

	.owfgr-title {
		font-size: 14px;
	}

	.owfgr-secondary {
		max-width: 210px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.owfgr-rating-row {
		gap: 5px;
	}

	.owfgr-rating-number {
		font-size: 11px;
	}

	.owfgr-stars {
		font-size: 13px;
	}

	.owfgr-hide-mobile {
		display: none !important;
	}
}

@media (min-width: 783px) {
	.owfgr-hide-desktop {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.owfgr-button {
		transition: none;
	}
}
