.lg_reviews_wrapper {
	--lg-reviews-accent: #e20074;
	--lg-reviews-accent-dark: #b0005a;
	--lg-reviews-text: #1f1f29;
	--lg-reviews-muted: #6c6c78;
	--lg-reviews-border: #ececf2;
	--lg-reviews-soft: #fff5fb;
	--lg-reviews-card: #ffffff;
	--lg-reviews-shadow: 0 18px 45px rgba(31, 31, 41, 0.1);
	--lg-reviews-radius: 22px;
	width: 100%;
	color: var(--lg-reviews-text);
}

.lg_reviews_wrapper *,
.lg_reviews_wrapper *::before,
.lg_reviews_wrapper *::after {
	box-sizing: border-box;
}

.lg_reviews_formular,
.lg_reviews_overview {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--lg-reviews-border);
	border-radius: var(--lg-reviews-radius);
	background: linear-gradient(135deg, #ffffff 0%, #ffffff 58%, var(--lg-reviews-soft) 100%);
	box-shadow: var(--lg-reviews-shadow);
	padding: clamp(22px, 4vw, 42px);
	margin-bottom: 32px;
}

.lg_reviews_formular::before,
.lg_reviews_overview::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--lg-reviews-accent), #ff6bb6);
}

.lg_reviews_form_intro,
.lg_reviews_section_head {
	margin-bottom: 24px;
}

.lg_reviews_eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lg-reviews-accent);
}

.lg_reviews_eyebrow::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--lg-reviews-accent);
	box-shadow: 0 0 0 6px rgba(226, 0, 116, 0.12);
}

.lg_reviews_form_intro h2,
.lg_reviews_section_head h2 {
	margin: 0;
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	line-height: 1.15;
	font-weight: 850;
	color: var(--lg-reviews-text);
}

.lg_reviews_form_intro p {
	max-width: 680px;
	margin: 10px 0 0;
	color: var(--lg-reviews-muted);
	font-size: 1rem;
}

.lg_reviews_form {
	display: block;
}

.lg_reviews_form_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 12px;
	margin: 0;
}

.lg_reviews_form_table th,
.lg_reviews_form_table td {
	background: rgba(255, 255, 255, 0.86);
	border-top: 1px solid var(--lg-reviews-border);
	border-bottom: 1px solid var(--lg-reviews-border);
	padding: 18px;
	vertical-align: top;
}

.lg_reviews_form_table th {
	width: 38%;
	border-left: 1px solid var(--lg-reviews-border);
	border-radius: 18px 0 0 18px;
	text-align: left;
	font-weight: 780;
}

.lg_reviews_form_table td {
	border-right: 1px solid var(--lg-reviews-border);
	border-radius: 0 18px 18px 0;
}

.lg_reviews_form_row:focus-within th,
.lg_reviews_form_row:focus-within td {
	border-color: rgba(226, 0, 116, 0.45);
	box-shadow: 0 0 0 4px rgba(226, 0, 116, 0.08);
}

.lg_reviews_field {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--lg-reviews-border);
	border-radius: 18px;
	padding: 18px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lg_reviews_field:focus-within {
	border-color: rgba(226, 0, 116, 0.45);
	box-shadow: 0 0 0 4px rgba(226, 0, 116, 0.11);
}

.lg_reviews_field label,
.lg_reviews_question {
	display: block;
	margin-bottom: 0;
	font-weight: 780;
	color: var(--lg-reviews-text);
}

.lg_reviews_text,
.lg_reviews_textarea {
	width: 100%;
	border: 1px solid #dadbe5;
	border-radius: 14px;
	background: #ffffff;
	color: var(--lg-reviews-text);
	font: inherit;
	padding: 13px 15px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lg_reviews_text:focus,
.lg_reviews_textarea:focus {
	border-color: var(--lg-reviews-accent);
	box-shadow: 0 0 0 4px rgba(226, 0, 116, 0.12);
}

.lg_reviews_textarea {
	min-height: 112px;
	resize: vertical;
}

.lg_reviews_choice_group {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 12px 18px;
}

.lg_reviews_choice_group label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0;
	font-weight: 650;
}

.lg_reviews_submit_row {
	margin-top: 18px;
}

.lg_reviews_honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lg_reviews_alert_box,
.lg_reviews_success_box {
	padding: 14px 16px;
	border: 1px solid var(--lg-reviews-border);
	border-radius: 16px;
	background-color: #ffffff;
	color: var(--lg-reviews-text);
	margin-bottom: 20px;
	box-shadow: 0 10px 26px rgba(31, 31, 41, 0.06);
}

.lg_reviews_alert_box {
	border-left: 6px solid #d63638;
}

.lg_reviews_success_box {
	border-left: 6px solid #00a86b;
}

.lg_reviews_star_input {
	border: 0;
	padding: 0;
	margin: 4px 0 0;
	display: inline-flex;
	flex-direction: row-reverse;
	gap: 7px;
}

.lg_reviews_star_input input {
	position: absolute;
	left: -9999px;
}

.lg_reviews_star_input label {
	font-size: clamp(2rem, 5vw, 2.75rem);
	line-height: 1;
	cursor: pointer;
	color: #c9cad4;
	text-shadow: 0 4px 12px rgba(31, 31, 41, 0.12);
	transition: color 0.16s ease, transform 0.16s ease;
}

.lg_reviews_star_input label:hover,
.lg_reviews_star_input label:hover ~ label,
.lg_reviews_star_input input:focus-visible + label,
.lg_reviews_star_input input:checked ~ label {
	color: var(--lg-reviews-accent);
}

.lg_reviews_star_input label:hover {
	transform: translateY(-2px) scale(1.05);
}

.lg_reviews_submit {
	justify-self: start;
	border: 0;
	border-radius: 999px;
	background: var(--lg-reviews-accent);
	color: #ffffff;
	font-weight: 800;
	font-size: 1rem;
	line-height: 1;
	padding: 15px 26px;
	cursor: pointer;
	box-shadow: 0 14px 28px rgba(226, 0, 116, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lg_reviews_submit:hover,
.lg_reviews_submit:focus {
	background: var(--lg-reviews-accent-dark);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 18px 36px rgba(226, 0, 116, 0.33);
}

.lg_reviews_stars {
	display: inline-flex;
	gap: 2px;
	vertical-align: middle;
	white-space: nowrap;
}

.lg_reviews_star {
	color: #c9cad4;
	font-size: 1.18rem;
	line-height: 1;
}

.lg_reviews_star.is-filled {
	color: var(--lg-reviews-accent);
}

.lg_reviews_list {
	display: grid;
	gap: 12px;
}

.lg_reviews_item {
	border: 1px solid var(--lg-reviews-border);
	border-radius: 18px;
	background: var(--lg-reviews-card);
	box-shadow: 0 8px 24px rgba(31, 31, 41, 0.06);
}

.lg_reviews_item summary {
	position: relative;
	cursor: pointer;
	padding: 16px 48px 16px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	list-style: none;
}

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

.lg_reviews_item summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: var(--lg-reviews-soft);
	color: var(--lg-reviews-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.lg_reviews_item[open] summary::after {
	content: "-";
}

.lg_reviews_reviewer_name {
	font-weight: 850;
	color: var(--lg-reviews-text);
}

.lg_reviews_rating_summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.lg_reviews_rating_value {
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--lg-reviews-muted);
}

.lg_reviews_detail {
	border-top: 1px solid var(--lg-reviews-border);
	padding: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
}

.lg_reviews_answer {
	margin-bottom: 16px;
}

.lg_reviews_answer:last-child {
	margin-bottom: 0;
}

.lg_reviews_answer strong {
	display: block;
	margin-bottom: 6px;
	color: var(--lg-reviews-text);
}

.lg_reviews_all_link {
	margin: 20px 0 0;
}

.lg_reviews_all_link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(226, 0, 116, 0.35);
	background: #ffffff;
	color: var(--lg-reviews-accent);
	font-weight: 800;
	padding: 12px 20px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lg_reviews_all_link a:hover,
.lg_reviews_all_link a:focus {
	background: var(--lg-reviews-accent);
	color: #ffffff;
	transform: translateY(-1px);
}

.lg_reviews_empty {
	margin: 0;
	color: var(--lg-reviews-muted);
}

@media (max-width: 640px) {
	.lg_reviews_formular,
	.lg_reviews_overview {
		border-radius: 18px;
		padding: 22px 16px;
	}

	.lg_reviews_item summary {
		align-items: flex-start;
		flex-direction: column;
		padding-right: 48px;
	}

	.lg_reviews_rating_summary {
		margin-left: 0;
	}

	.lg_reviews_form_table,
	.lg_reviews_form_table tbody,
	.lg_reviews_form_table tr,
	.lg_reviews_form_table th,
	.lg_reviews_form_table td {
		display: block;
		width: 100%;
	}

	.lg_reviews_form_table {
		border-spacing: 0 14px;
	}

	.lg_reviews_form_table th {
		border-right: 1px solid var(--lg-reviews-border);
		border-bottom: 0;
		border-radius: 18px 18px 0 0;
		padding-bottom: 8px;
	}

	.lg_reviews_form_table td {
		border-left: 1px solid var(--lg-reviews-border);
		border-top: 0;
		border-radius: 0 0 18px 18px;
		padding-top: 8px;
	}

	.lg_reviews_submit,
	.lg_reviews_all_link a {
		width: 100%;
	}
}

.lg_reviews_verify_hint,
.lg_reviews_field_hint {
	margin: 8px 0 0;
	color: var(--lg-reviews-muted);
	font-size: 0.92rem;
}

.lg_reviews_verify_hint {
	max-width: 720px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(226, 0, 116, 0.08);
	color: var(--lg-reviews-text);
}

.lg_reviews_privacy_box {
	border: 1px solid rgba(226, 0, 116, 0.24);
	border-radius: 18px;
	background: rgba(226, 0, 116, 0.06);
	padding: 16px 18px;
	margin-top: 18px;
}

.lg_reviews_privacy_box p {
	margin: 0 0 12px;
	color: var(--lg-reviews-text);
	font-size: 0.95rem;
}

.lg_reviews_privacy_box a {
	color: var(--lg-reviews-accent);
	font-weight: 800;
}

.lg_reviews_privacy_confirm {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-weight: 650;
	color: var(--lg-reviews-text);
}

.lg_reviews_privacy_confirm input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.lg_reviews_custom_intro {
	max-width: 760px;
	margin-top: 14px;
	color: var(--lg-reviews-muted);
	font-size: 1rem;
}

.lg_reviews_custom_intro > :first-child {
	margin-top: 0;
}

.lg_reviews_custom_intro > :last-child {
	margin-bottom: 0;
}

.lg_reviews_custom_intro ul,
.lg_reviews_custom_intro ol {
	margin: 10px 0 0 1.3em;
}
