#plz-popup {
	position: fixed;
	right: 0;
	bottom: 20px;
	z-index: 9999;
	box-sizing: border-box;
	width: 280px;
	padding: 16px;
	background: #fff;
	border: 1px solid #ebeab5;
	border-radius: 8px 0 0 8px;
	box-shadow: 0 18px 36px rgba(25, 57, 24, 0.18);
	color: #333;
	font-family: inherit;
	line-height: 1.35;
	transform: translateX(100%);
	transition: transform 0.4s ease;
}

#plz-popup.open {
	transform: translateX(0);
}

#plz-popup.inline {
	position: static !important;
	max-width: 400px;
	margin: 2rem auto;
	box-shadow: 0 16px 32px rgba(25, 57, 24, 0.12);
	border-radius: 8px;
	transform: none !important;
	transition: none !important;
}

#plz-popup .close-btn {
	position: absolute;
	top: 6px;
	right: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: none;
	color: #000;
	cursor: pointer;
	font-size: 1.2em;
	line-height: 1;
	transition: color 0.2s ease;
}

#plz-popup .close-btn:hover,
#plz-popup .close-btn:focus-visible {
	color: #42894c;
}

#plz-description {
	margin: 0 0 12px;
	padding-right: 28px;
	color: #555;
	font-size: 0.82em;
	line-height: 1.35;
}

#plz-popup label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: bold;
}

#plz-popup input {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 9px 10px;
	flex: 1;
	border: 1px solid #d8d8c0;
	border-radius: 4px;
	color: #333;
	font: inherit;
	text-align: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#plz-popup input:focus-visible {
	border-color: #42894c;
	box-shadow: 0 0 0 3px rgba(66, 137, 76, 0.18);
	outline: none;
}

#plz-popup button {
	font: inherit;
	padding: 4px 8px;
}

#plz-submit-btn {
	width: 100%;
	padding: 10px 18px !important;
	border: none;
	border-radius: 4px;
	background: #42894c;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

#plz-submit-btn:hover,
#plz-submit-btn:focus-visible {
	background: #336f3b;
	transform: translateY(-1px);
}

#plz-submit-btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(66, 137, 76, 0.22);
	outline: none;
}

#plz-message {
	min-height: 1.4em;
	margin-top: 12px;
	color: #333;
	font-size: 0.9em;
	line-height: 1.35;
	text-align: center;
}

@media (max-width: 575px) {
	#plz-popup {
		right: 16px;
		bottom: 16px;
		width: calc(100vw - 32px);
		border-radius: 8px;
		transform: translateY(calc(100% + 24px));
	}

	#plz-popup.open {
		transform: translateY(0);
	}

	#plz-popup.inline {
		width: 100%;
		margin: 1.5rem auto;
	}
}
