.fc-google-reviews {
	--fc-google-reviews-border: var(--fc-border, rgba(32, 33, 36, 0.16));
	--fc-google-reviews-height: 640px;
	--fc-google-reviews-muted: var(--fc-muted, #5f6368);
	--fc-google-reviews-primary: var(--wp--preset--color--primary, var(--fc-primary, #0295d4));
	--fc-google-reviews-radius: var(--fc-radius-surface, 14px);
	--fc-google-reviews-shadow: none;
	--fc-google-reviews-surface: var(--wp--preset--color--base, var(--fc-surface, #fff));
	--fc-google-reviews-text: var(--wp--preset--color--contrast, var(--fc-foreground, #202124));
	--fc-google-reviews-text-align: left;
	--fc-google-reviews-width: 400px;
	box-sizing: border-box;
	width: 100%;
}

.fc-google-reviews *,
.fc-google-reviews *::before,
.fc-google-reviews *::after {
	box-sizing: inherit;
}

.fc-google-reviews__heading {
	max-width: var(--fc-google-reviews-width);
	margin-block: 0 var(--fc-space-5, 1.25rem);
	margin-inline: auto;
	color: var(--fc-google-reviews-text);
}

.fc-google-reviews__panel,
.fc-google-reviews__editor-panel {
	position: relative;
	width: min(100%, var(--fc-google-reviews-width));
	min-height: min(var(--fc-google-reviews-height), 400px);
	margin-inline: auto;
}

.fc-google-reviews.is-align-left .fc-google-reviews__heading,
.fc-google-reviews.is-align-left .fc-google-reviews__panel,
.fc-google-reviews.is-align-left .fc-google-reviews__editor-panel {
	margin-inline: 0 auto;
}

.fc-google-reviews.is-align-center .fc-google-reviews__heading,
.fc-google-reviews.is-align-center .fc-google-reviews__panel,
.fc-google-reviews.is-align-center .fc-google-reviews__editor-panel {
	margin-inline: auto;
}

.fc-google-reviews.is-align-right .fc-google-reviews__heading,
.fc-google-reviews.is-align-right .fc-google-reviews__panel,
.fc-google-reviews.is-align-right .fc-google-reviews__editor-panel {
	margin-inline: auto 0;
}

.fc-google-reviews.is-text-left {
	--fc-google-reviews-text-align: left;
}

.fc-google-reviews.is-text-center {
	--fc-google-reviews-text-align: center;
}

.fc-google-reviews.is-text-right {
	--fc-google-reviews-text-align: right;
}

.fc-google-reviews__details {
	--gmp-mat-color-on-surface: var(--fc-google-reviews-text);
	--gmp-mat-color-on-surface-variant: var(--fc-google-reviews-muted);
	--gmp-mat-color-outline-decorative: var(--fc-google-reviews-border);
	--gmp-mat-color-primary: var(--fc-google-reviews-primary);
	--gmp-mat-color-surface: var(--fc-google-reviews-surface);
	--gmp-mat-font-family: inherit;
	display: block;
	width: 100%;
	height: var(--fc-google-reviews-height);
	border: 1px solid var(--fc-google-reviews-border);
	border-radius: var(--fc-google-reviews-radius);
	background: var(--fc-google-reviews-surface);
	box-shadow: var(--fc-google-reviews-shadow);
	color-scheme: light dark;
	text-align: var(--fc-google-reviews-text-align);
	overflow: hidden;
}

.fc-google-reviews.is-preset-card {
	--fc-google-reviews-shadow: var(--fc-shadow, 0 1px 2px rgba(15, 23, 42, 0.05), 0 12px 28px rgba(15, 23, 42, 0.1));
}

.fc-google-reviews.is-preset-minimal {
	--fc-google-reviews-border: transparent;
	--fc-google-reviews-shadow: none;
}

.fc-google-reviews.is-preset-minimal .fc-google-reviews__details,
.fc-google-reviews.is-preset-minimal .fc-google-reviews__editor-card,
.fc-google-reviews.is-preset-minimal .fc-google-reviews__status {
	border-color: transparent;
	box-shadow: none;
}

.fc-google-reviews.is-scheme-light {
	--fc-google-reviews-border: var(--fc-border, #d7dbe1);
	--fc-google-reviews-muted: var(--fc-muted, #757b85);
	--fc-google-reviews-surface: var(--fc-surface, #fff);
	--fc-google-reviews-text: var(--fc-foreground, #191c20);
}

.fc-google-reviews.is-scheme-light .fc-google-reviews__details {
	color-scheme: light;
}

.fc-google-reviews.is-scheme-dark {
	--fc-google-reviews-border: #4b5563;
	--fc-google-reviews-muted: #c7ced8;
	--fc-google-reviews-primary: #6bc6ec;
	--fc-google-reviews-surface: #191c20;
	--fc-google-reviews-text: #f9f9f9;
}

.fc-google-reviews.is-scheme-dark .fc-google-reviews__details {
	--gmp-mat-color-neutral-container: #30343a;
	--gmp-mat-color-on-neutral-container: #f9f9f9;
	color-scheme: dark;
}

/* Preset framing wins when it is combined with an explicit color scheme. */
.fc-google-reviews.is-preset-minimal {
	--fc-google-reviews-border: transparent;
}

.fc-google-reviews__status {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: var(--fc-space-4, 1rem);
	border: 1px solid var(--fc-google-reviews-border);
	border-radius: var(--fc-google-reviews-radius);
	background: var(--fc-google-reviews-surface);
	box-shadow: var(--fc-google-reviews-shadow);
	color: var(--fc-google-reviews-muted);
	text-align: center;
}

.fc-google-reviews.is-loaded .fc-google-reviews__status {
	display: none;
}

.fc-google-reviews.has-error .fc-google-reviews__details {
	display: none;
}

.fc-google-reviews.has-error .fc-google-reviews__status {
	border-inline-start: 4px solid var(--fc-danger, #c93751);
	color: var(--fc-google-reviews-text);
}

.fc-google-reviews__notice {
	padding: var(--fc-space-3, 0.75rem) var(--fc-space-4, 1rem);
	border-inline-start: 4px solid var(--fc-review, #ffc107);
	background: var(--fc-review-soft, #fff3bd);
	color: var(--fc-foreground, #1d2327);
}

.fc-google-reviews__editor-panel {
	min-height: 0;
}

.fc-google-reviews__editor-card {
	display: flex;
	align-items: flex-start;
	gap: var(--fc-space-4, 1rem);
	padding: var(--fc-space-5, 1.25rem);
	border: 1px solid var(--fc-google-reviews-border);
	border-radius: var(--fc-google-reviews-radius);
	background: var(--fc-google-reviews-surface);
	box-shadow: var(--fc-google-reviews-shadow);
	color: var(--fc-google-reviews-text);
	text-align: var(--fc-google-reviews-text-align);
}

.fc-google-reviews__heading {
	text-align: var(--fc-google-reviews-text-align);
}

.fc-google-reviews__editor-card p {
	margin-block: var(--fc-tight-gap, 0.35rem) 0;
}

.fc-google-reviews__editor-mark {
	display: grid;
	flex: 0 0 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	border-radius: var(--fc-radius-pill, 50%);
	background: var(--fc-primary-soft, #e3f2fb);
	color: var(--fc-primary-hover, #0077aa);
	font-family: var(--fc-font-family, Arial, sans-serif);
	font-size: 1.25rem;
	font-weight: 700;
}

.fc-google-reviews.is-scheme-dark .fc-google-reviews__editor-mark {
	background: #30343a;
	color: var(--fc-google-reviews-primary);
}

.fc-google-reviews__editor-meta {
	color: var(--fc-google-reviews-muted);
	font-size: 0.875em;
}

@media (prefers-color-scheme: dark) {
	.fc-google-reviews.is-scheme-auto {
		--fc-google-reviews-border: #4b5563;
		--fc-google-reviews-muted: #c7ced8;
		--fc-google-reviews-primary: #6bc6ec;
		--fc-google-reviews-surface: #191c20;
		--fc-google-reviews-text: #f9f9f9;
	}

	.fc-google-reviews.is-scheme-auto .fc-google-reviews__details {
		--gmp-mat-color-neutral-container: #30343a;
		--gmp-mat-color-on-neutral-container: #f9f9f9;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.fc-google-reviews__status::after {
		width: var(--fc-space-4, 1rem);
		height: var(--fc-space-4, 1rem);
		margin-inline-start: var(--fc-space-2, 0.65rem);
		border: 2px solid currentColor;
		border-inline-end-color: transparent;
		border-radius: var(--fc-radius-pill, 50%);
		animation: fc-google-reviews-spin 0.8s linear infinite;
		content: "";
	}
}

@keyframes fc-google-reviews-spin {
	to {
		transform: rotate(1turn);
	}
}
