.llsp {
	margin: 1.25rem 0 1rem;
	padding: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	background: #fff;
}

.llsp__title {
	margin: 0 0 0.8rem;
	font-size: 1.1rem;
}

.llsp__stage {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	padding: 1.25rem;
	overflow: hidden;
	border-radius: 6px;
	background: #f4f1eb;
}

.llsp__sign {
	--llsp-ratio: 2.8;
	--llsp-font-scale: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 560px);
	aspect-ratio: var(--llsp-ratio);
	min-height: 95px;
	max-height: 250px;
	box-sizing: border-box;
	padding: clamp(18px, 5%, 34px);
	overflow: hidden;
	border: 1px solid rgba(76, 52, 29, 0.35);
	border-radius: 3px;
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.12),
		inset 0 0 28px rgba(89, 55, 21, 0.08);
	background:
		linear-gradient(92deg, rgba(92, 57, 24, 0.07), transparent 17%, rgba(92, 57, 24, 0.04) 38%, transparent 64%, rgba(92, 57, 24, 0.06)),
		linear-gradient(#caa777, #bc9363);
}

.llsp__engraving {
	width: 100%;
	text-align: center;
	overflow-wrap: anywhere;
	line-height: 1.05;
	font-size: calc(clamp(1.45rem, 5vw, 3.2rem) * var(--llsp-font-scale));
	color: #352b23;
	text-shadow: 0 1px rgba(255, 255, 255, 0.15);
}

.llsp__sign--placeholder .llsp__engraving {
	opacity: 0.55;
}

.llsp__sign--black .llsp__engraving {
	color: #171717;
	text-shadow: none;
}

.llsp__sign--natural .llsp__engraving {
	color: #49382a;
}

.llsp__sign--white .llsp__engraving {
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.llsp__sign--gold .llsp__engraving {
	color: #8d6d22;
}

.llsp__image-label {
	position: absolute;
	right: 10px;
	bottom: 8px;
	max-width: 42%;
	padding: 3px 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	font: 600 11px/1.2 Arial, sans-serif;
	text-align: right;
}

.llsp__details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	margin-top: 0.65rem;
	font-size: 0.85rem;
}

.llsp__details span:empty {
	display: none;
}

.llsp__note {
	margin: 0.65rem 0 0;
	font-size: 0.82rem;
	line-height: 1.4;
	opacity: 0.78;
}

@media (max-width: 520px) {
	.llsp {
		padding: 0.75rem;
	}

	.llsp__stage {
		min-height: 145px;
		padding: 0.75rem;
	}

	.llsp__sign {
		min-height: 80px;
	}
}


/* v1.3.0 — real oak texture + selectable product shapes */
.llsp__sign {
	--llsp-oak-texture: none;
	--llsp-cornwall-mask: none;
	background-image:
		linear-gradient(rgba(255,255,255,0.04), rgba(0,0,0,0.03)),
		var(--llsp-oak-texture);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.llsp__sign--rectangle {
	border-radius: 3px;
	-webkit-mask-image: none;
	mask-image: none;
}

.llsp__sign--oval {
	border-radius: 50%;
	-webkit-mask-image: none;
	mask-image: none;
}

.llsp__sign--arched {
	border-radius: 48% 48% 4px 4px / 62% 62% 4px 4px;
	-webkit-mask-image: none;
	mask-image: none;
	padding-top: clamp(28px, 8%, 48px);
}

.llsp__sign--cornwall {
	width: min(78%, 440px);
	aspect-ratio: 1.15;
	min-height: 250px;
	max-height: 430px;
	border: 0;
	border-radius: 0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
	background-image: var(--llsp-oak-texture);
	background-size: cover;
	background-position: center;
	-webkit-mask-image: var(--llsp-cornwall-mask);
	mask-image: var(--llsp-cornwall-mask);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	padding: 18% 19% 16% 18%;
}

.llsp__sign--cornwall .llsp__engraving {
	font-size: calc(clamp(1.15rem, 4vw, 2.4rem) * var(--llsp-font-scale));
	line-height: 1.02;
}

@media (max-width: 520px) {
	.llsp__sign--cornwall {
		width: min(92%, 360px);
		min-height: 220px;
		padding: 19% 18% 17% 17%;
	}
}
