.single-product .belloro-engraving {
	width: 100%;
	margin: 0 0 1.35rem !important;
	border: 1px solid var(--adena-border, #d6d1cb);
	border-radius: 18px;
	background: var(--adena-surface, #fff);
	box-shadow: none;
	overflow: hidden;
}

.single-product .belloro-engraving__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	min-height: 58px;
	padding: 1rem 1.25rem;
	border: 0;
	background: var(--adena-surface, #fff);
	color: var(--adena-text, #392b24);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.single-product .belloro-engraving__toggle:hover,
.single-product .belloro-engraving__toggle:focus-visible {
	background: var(--belloro-product-surface-soft, #f1f0ee);
	outline: 0;
}

.single-product .belloro-engraving__toggle:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(114, 100, 93, 0.28);
}

.single-product .belloro-engraving__toggle-copy {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	color: var(--adena-text, #392b24);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
}

.single-product .belloro-engraving__toggle strong {
	display: block;
	min-width: 0;
	color: inherit;
	font: inherit;
}

.single-product .belloro-engraving__toggle strong span {
	color: var(--adena-accent-dark, #72645d);
	font-weight: 400;
}

.single-product .belloro-engraving__chevron {
	position: relative;
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	border-top: 1.5px solid currentColor;
	border-left: 1.5px solid currentColor;
	color: var(--adena-muted, #7f7168);
	transition: transform 180ms ease;
}

.single-product .belloro-engraving.is-collapsed .belloro-engraving__chevron {
	transform: rotate(225deg);
}

.single-product .belloro-engraving__panel {
	display: grid;
	gap: 1rem;
	max-height: 980px;
	overflow: hidden;
	padding: 0 1.25rem 1.25rem;
	border-top: 1px solid rgba(214, 209, 203, 0.86);
	opacity: 1;
	visibility: visible;
	transition:
		max-height 320ms ease,
		opacity 220ms ease,
		padding 320ms ease,
		border-color 220ms ease,
		visibility 0ms linear 0ms;
}

.single-product .belloro-engraving.is-collapsed .belloro-engraving__panel {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	border-top-color: transparent;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		max-height 280ms ease,
		opacity 180ms ease,
		padding 280ms ease,
		border-color 180ms ease,
		visibility 0ms linear 280ms;
}

.single-product .belloro-engraving__preview {
	padding-top: 1.1rem;
}

.single-product .belloro-engraving__ring {
	position: relative;
	display: block;
	width: min(100%, 480px);
	aspect-ratio: 2048 / 462;
	margin-inline: auto;
	border-radius: 12px;
	background-image: url("engraving-preview.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 12px 28px rgba(57, 43, 36, 0.08);
	overflow: hidden;
}

.single-product .belloro-engraving__preview-text {
	position: absolute;
	inset: 4% 4% auto;
	z-index: 2;
	width: 92%;
	height: 92%;
	pointer-events: none;
}

.single-product .belloro-engraving__preview-text text {
	fill: rgba(57, 43, 36, 0.62);
	font-family: "Lato", Arial, sans-serif;
	font-size: 20px;
	letter-spacing: 0;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

.single-product .belloro-engraving__field {
	position: relative;
	display: block;
}

.single-product .belloro-engraving__field > span {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--adena-text, #392b24);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.25;
}

.single-product .belloro-engraving__field input,
.single-product .belloro-engraving__field select {
	width: 100%;
	min-height: 52px;
	padding: 0.8rem 1rem;
	border: 1px solid var(--adena-border, #d6d1cb);
	border-radius: 16px;
	background: var(--adena-surface, #fff);
	color: var(--adena-text, #392b24);
	font: inherit;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.25;
	box-shadow: none;
}

.single-product .belloro-engraving__field select {
	appearance: none;
	padding-right: 2.75rem;
	background-image: linear-gradient(45deg, transparent 50%, #7f7168 50%), linear-gradient(135deg, #7f7168 50%, transparent 50%);
	background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.single-product .belloro-engraving__field input:focus,
.single-product .belloro-engraving__field select:focus {
	border-color: var(--adena-accent-dark, #72645d);
	outline: 2px solid rgba(114, 100, 93, 0.2);
	outline-offset: 2px;
}

.single-product .belloro-engraving__field small {
	position: absolute;
	right: 0.9rem;
	bottom: 0.85rem;
	color: var(--adena-muted, #7f7168);
	font-size: 0.78rem;
	line-height: 1;
	pointer-events: none;
}

.single-product .belloro-engraving__field input {
	padding-right: 4rem;
}

.single-product .belloro-engraving__notice {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin: -0.15rem 0 0;
	padding: 0.85rem 1rem;
	border: 1px solid #edd17a;
	border-radius: 14px;
	background: #fff6cf;
	color: #6e5610;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.4;
}

.single-product .belloro-engraving__notice::before {
	content: "i";
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 0.05rem;
	border: 1px solid currentColor;
	border-radius: 999px;
	color: #6e5610;
	font-family: Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
}

.single-product .belloro-engraving__notice[hidden] {
	display: none !important;
}

@media (max-width: 767px) {
	.single-product .belloro-engraving {
		border-radius: 16px;
	}

	.single-product .belloro-engraving__toggle,
	.single-product .belloro-engraving__panel {
		padding-inline: 1rem;
	}

	.single-product .belloro-engraving__ring {
		width: 100%;
	}

}

@media (prefers-reduced-motion: reduce) {
	.single-product .belloro-engraving__chevron,
	.single-product .belloro-engraving__panel,
	.single-product .belloro-engraving.is-collapsed .belloro-engraving__panel {
		transition: none;
	}
}
