/* Buttons */
.btn {
	appearance: none;
	border: none;
	font-family: inherit;
	font-size: var(--text-base);
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	padding: 15px 16px;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: opacity 0.16s ease, transform 0.16s ease, background 0.16s ease;
	min-height: var(--touch-target);
}

.btn:active:not(:disabled) {
	transform: translateY(1px);
}

.btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.btn:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.btn-primary {
	color: #ffffff;
	background: var(--color-accent-gradient);
	box-shadow: 0 10px 24px rgba(255, 97, 39, 0.28);
}

.btn-ghost {
	font-size: 14px;
	padding: 10px 14px;
	color: #f2f2f2;
	background: #1a1a1a;
	border: 1px solid #3a3a3a;
}

.btn-secondary {
	font-size: 14px;
	padding: 12px 14px;
	color: var(--color-text);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-soft);
}

.btn-sm {
	font-size: 13px;
	padding: 8px 12px;
	min-height: 36px;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

/* Form fields */
.form-field {
	display: grid;
	gap: 6px;
}

fieldset.form-field {
	border: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.form-label {
	font-size: var(--text-sm);
	font-weight: var(--font-weight-medium);
	color: var(--color-text-muted);
}

.form-label-required::after {
	content: " *";
	color: var(--color-accent);
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 12px 14px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.06);
	color: var(--color-text);
	font-family: inherit;
	font-size: var(--text-base);
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-normal);
	min-height: var(--touch-target);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: rgba(249, 115, 22, 0.6);
	box-shadow: 0 0 0 2px var(--color-accent-muted);
}

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

/* Patente argentina */
.patente-plate-field {
	display: flex;
	justify-content: center;
	width: 100%;
}

.patente-plate {
	width: 100%;
	max-width: 390px;
	margin: 0 auto;
	border: 1px solid rgba(15, 23, 42, 0.28);
	border-radius: 18px;
	overflow: hidden;
	background: #f7f8fb;
	box-shadow:
		0 2px 0 rgba(255, 255, 255, 0.8) inset,
		0 0 0 1px rgba(255, 255, 255, 0.34) inset,
		0 14px 26px rgba(0, 0, 0, 0.28);
}

.patente-plate__header {
	display: grid;
	grid-template-columns: 66px 1fr 32px;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 5px 10px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
		linear-gradient(180deg, #1f57a6 0%, #143f86 100%);
	color: #fff;
}

.patente-plate__mercosur {
	display: grid;
	gap: 1px;
	justify-items: center;
	line-height: 1;
}

.patente-plate__stars {
	font-size: 7.5px;
	letter-spacing: 1px;
	opacity: 0.95;
}

.patente-plate__mercosur-text {
	font-size: 6.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.patente-plate__country {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-align: center;
	white-space: nowrap;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.patente-plate__flag {
	display: block;
	width: 22px;
	height: 14px;
	border: 1px solid rgba(0, 0, 0, 0.35);
	border-radius: 2px;
	background:
		radial-gradient(circle at 50% 52%, #f6b234 0 3px, transparent 3.5px),
		linear-gradient(180deg, #74acdf 0 33.33%, #fff 33.33% 66.66%, #74acdf 66.66% 100%);
	justify-self: end;
}

.patente-plate__body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	padding: 13px 16px 15px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 42%),
		linear-gradient(180deg, #ffffff 0%, #edf0f5 100%);
}

.patente-plate__input {
	width: 100%;
	border: 0;
	background: transparent;
	color: #0f172a;
	font-family: 'Barlow', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
	font-size: clamp(2rem, 7vw, 2.9rem);
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	caret-color: var(--color-accent);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.patente-plate__input::placeholder {
	color: rgba(31, 41, 55, 0.28);
	letter-spacing: 0.12em;
}

.patente-plate__input:focus {
	outline: none;
}

.patente-plate:focus-within {
	box-shadow:
		0 2px 0 rgba(255, 255, 255, 0.8) inset,
		0 0 0 1px rgba(255, 255, 255, 0.34) inset,
		0 16px 28px rgba(0, 0, 0, 0.32),
		0 0 0 3px rgba(249, 115, 22, 0.2);
}

.patente-plate--vieja {
	border-color: rgba(226, 232, 240, 0.9);
	background: linear-gradient(180deg, #edf2f7, #dfe6ee);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 13px 24px rgba(0, 0, 0, 0.3);
}

.patente-plate--vieja .patente-plate__header {
	grid-template-columns: 50px 1fr 50px;
	min-height: 32px;
	padding: 6px 14px 4px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(226, 232, 240, 0.78));
}

.patente-plate--vieja .patente-plate__country--vieja {
	color: #5b9bd5;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-shadow: none;
}

.patente-plate__slot {
	display: block;
	width: 34px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(180deg, #cfd6dd, #919aa4);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.8),
		0 1px 1px rgba(15, 23, 42, 0.2);
}

.patente-plate__slot--right {
	justify-self: end;
}

.patente-plate--vieja .patente-plate__body {
	min-height: 84px;
	margin: 0 10px 10px;
	padding: 15px 14px;
	border-radius: 12px;
	background:
		radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.12), transparent 34%),
		linear-gradient(180deg, #182027, #0d1318);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		inset 0 -1px 0 rgba(0, 0, 0, 0.8);
}

.patente-plate--vieja .patente-plate__input {
	color: #f8fafc;
	letter-spacing: 0.2em;
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.18),
		0 3px 8px rgba(0, 0, 0, 0.38);
}

.patente-plate--vieja .patente-plate__input::placeholder {
	color: rgba(248, 250, 252, 0.28);
}

.patente-plate--vieja:focus-within {
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 15px 26px rgba(0, 0, 0, 0.34),
		0 0 0 3px rgba(249, 115, 22, 0.2);
}

.patente-plate--moto {
	max-width: 340px;
}

.patente-plate--moto .patente-plate__input {
	font-size: clamp(1.8rem, 6.2vw, 2.45rem);
	letter-spacing: 0.16em;
}

@media (max-width: 420px) {
	.patente-plate__header {
		grid-template-columns: 54px 1fr 26px;
		padding-inline: 8px;
	}

	.patente-plate__country {
		font-size: 0.62rem;
	}

	.patente-plate__body,
	.patente-plate--vieja .patente-plate__body {
		min-height: 76px;
	}
}

.relato-field {
	margin-top: 4px;
}

.relato-textarea {
	min-height: 120px;
}

.relato-audio-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 4px;
}

.relato-audio-hint {
	margin: 0;
}

.relato-audio-status {
	font-size: var(--text-xs);
	font-weight: var(--font-weight-medium);
	color: var(--color-accent);
}

.btn-record.is-recording,
#btn-record.is-recording {
	border-color: rgba(248, 113, 113, 0.5);
	color: var(--color-error);
}

@media (prefers-reduced-motion: no-preference) {
	#btn-record.is-recording {
		animation: pulse-record-subtle 1.5s ease infinite;
	}
}

@keyframes pulse-record-subtle {
	0%, 100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.25); }
	50% { box-shadow: 0 0 0 6px rgba(248, 113, 113, 0); }
}

.form-row {
	display: grid;
	gap: 10px;
}

.form-row-2 {
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 479px) {
	.form-row-2 {
		grid-template-columns: 1fr;
	}
}

.form-hint {
	font-size: 12px;
	color: var(--color-text-subtle);
	line-height: 1.3;
}

.form-error {
	font-size: 12px;
	color: var(--color-error);
}

/* Choice cards */
.choice-group {
	display: grid;
	gap: 10px;
}

.choice-group--horizontal {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.choice-group--horizontal {
		grid-template-columns: 1fr 1fr;
	}
}

.choice-card {
	position: relative;
	display: grid;
	gap: 6px;
	padding: 14px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.04);
	color: var(--color-text);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.16s ease, background 0.16s ease;
	outline: none;
}

.choice-card--visual {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
}

.choice-card--visual .choice-card__body {
	display: grid;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.choice-card__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.06);
	color: var(--color-text-muted);
	transition: background 0.16s ease, color 0.16s ease;
}

.choice-card__icon svg {
	width: 26px;
	height: 26px;
}

.choice-card.is-selected .choice-card__icon {
	background: var(--color-accent-muted);
	color: var(--color-accent);
}

.choice-card:focus-visible {
	box-shadow: 0 0 0 2px rgba(255, 97, 39, 0.7);
}

.choice-card.is-selected {
	border-color: rgba(255, 106, 45, 0.55);
	background: rgba(249, 115, 22, 0.08);
}

.choice-card__title {
	font-size: var(--text-lg);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text);
	line-height: var(--leading-tight);
}

.choice-card.is-selected .choice-card__title {
	color: var(--color-accent-hover);
}

.choice-card__desc {
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
	font-weight: var(--font-weight-normal);
	color: var(--color-text-muted);
}

.choice-card__indicator {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	pointer-events: none;
}

.choice-card.is-selected .choice-card__indicator {
	border-color: #fff;
	background: var(--color-accent-gradient);
}

.choice-card.is-selected .choice-card__indicator::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 3px;
	width: 6px;
	height: 9px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(40deg);
}

/* Segmented control */
.segmented-control {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.segmented-control button {
	flex: 1;
	min-width: 80px;
	padding: 12px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-text-muted);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	min-height: var(--touch-target);
}

.segmented-control button.is-selected {
	border-color: rgba(255, 106, 45, 0.8);
	background: var(--color-accent-muted);
	color: var(--color-text);
}

/* File upload */
.upload-zone {
	display: grid;
	gap: 8px;
}

.upload-drop {
	position: relative;
	display: grid;
	place-items: center;
	gap: 8px;
	padding: 24px 16px;
	border-radius: var(--radius-lg);
	border: 2px dashed var(--border-soft);
	background: rgba(255, 255, 255, 0.03);
	text-align: center;
	cursor: pointer;
	min-height: 120px;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.upload-drop:hover,
.upload-drop.is-dragover {
	border-color: rgba(249, 115, 22, 0.5);
	background: var(--color-accent-muted);
}

.upload-drop input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.upload-drop__icon {
	font-size: 28px;
	opacity: 0.7;
}

.upload-drop__text {
	font-size: 14px;
	color: var(--color-text-muted);
}

.upload-drop__formats {
	font-size: 11px;
	color: var(--color-text-subtle);
}

.upload-preview-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

@media (min-width: 768px) {
	.upload-preview-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.upload-preview {
	position: relative;
	aspect-ratio: 1;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-soft);
	background: var(--surface-1);
}

.upload-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.upload-preview__file {
	display: grid;
	place-items: center;
	padding: 8px;
	height: 100%;
	font-size: 11px;
	text-align: center;
	color: var(--color-text-muted);
	word-break: break-all;
}

.upload-preview__remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: none;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
}

.upload-add {
	aspect-ratio: 1;
	border-radius: var(--radius-md);
	border: 2px dashed var(--border-soft);
	background: rgba(255, 255, 255, 0.03);
	display: grid;
	place-items: center;
	font-size: 28px;
	color: var(--color-text-subtle);
	cursor: pointer;
	position: relative;
}

.upload-add input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

/* Checklist */
.requirements-checklist {
	display: grid;
	gap: 6px;
	padding: 12px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-soft);
}

.requirements-checklist li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--color-text-muted);
	list-style: none;
}

.requirements-checklist li.is-done {
	color: var(--color-success);
}

.requirements-checklist li::before {
	content: "○";
	font-size: 14px;
}

.requirements-checklist li.is-done::before {
	content: "✓";
}

/* Map */
.location-picker {
	display: grid;
	gap: 10px;
}

.section-block.location-picker--featured,
.section-block.location-picker--immersive {
	display: flex;
	flex-direction: column;
}

.location-picker--immersive {
	position: relative;
	flex: 1;
	width: 100%;
	min-height: 240px;
	height: 100%;
	overflow: hidden;
	border-radius: 0;
	border: none;
}

.location-picker--immersive .location-picker__map-stage {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.location-picker--immersive .location-map {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	min-height: 0;
	border: none;
	border-radius: 0;
	z-index: 0;
}

.location-picker__map-stage {
	position: relative;
}

.location-picker__geo-prompt {
	position: absolute;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 20px;
	pointer-events: none;
}

.location-picker__geo-prompt[hidden] {
	display: none !important;
}

.location-picker__geo-prompt::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.32);
	pointer-events: none;
}

.location-picker__geo-prompt-card {
	position: relative;
	z-index: 1;
	pointer-events: auto;
	display: grid;
	gap: 10px;
	justify-items: center;
	max-width: 300px;
	width: 100%;
	padding: 22px 20px;
	text-align: center;
	border-radius: 16px;
	background: rgba(9, 9, 9, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.location-picker__geo-prompt-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 87, 34, 0.14);
	color: #ff8a3d;
}

.location-picker__geo-prompt-icon .icon svg {
	width: 24px;
	height: 24px;
}

.location-picker__geo-prompt-title {
	margin: 0;
	font-size: var(--text-base, 16px);
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-text, #fafafa);
}

.location-picker__geo-prompt-text {
	margin: 0;
	font-size: var(--text-sm, 14px);
	line-height: 1.45;
	color: var(--color-text-muted, #a3a3a3);
}

.location-picker__geo-prompt-error {
	margin: 0;
	font-size: var(--text-xs, 12px);
	line-height: 1.4;
	color: #f87171;
}

.location-picker__geo-prompt-card .btn {
	width: 100%;
	justify-content: center;
	margin-top: 4px;
}

.location-picker--immersive .location-picker__overlay {
	position: relative;
	z-index: 500;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 20px 20px 0;
	pointer-events: none;
}

.location-picker--immersive .location-picker__overlay > * {
	pointer-events: auto;
}

.location-picker--immersive .location-picker__heading-wrap {
	margin: -20px -20px 0;
	padding: 20px 20px 10px;
	background: linear-gradient(
		180deg,
		rgba(9, 9, 9, 0.94) 0%,
		rgba(9, 9, 9, 0.72) 55%,
		transparent 100%
	);
	pointer-events: none;
}

.location-picker--immersive .location-picker__heading-wrap .screen-heading {
	margin-bottom: 10px;
	pointer-events: auto;
}

.location-picker--immersive .location-picker__field {
	gap: 6px;
	padding: 0;
	margin-top: -2px;
}

.location-picker--immersive .combobox-list {
	position: relative;
	margin-top: 4px;
	max-height: min(40vh, 220px);
	background: rgba(18, 18, 18, 0.96);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.location-picker--immersive .location-picker__search-card {
	padding: 0;
	border-radius: 9999px;
	background: rgba(9, 9, 9, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.location-picker__search {
	display: flex;
	align-items: center;
	gap: 0;
	border-radius: 9999px;
	overflow: hidden;
}

.location-picker__search .form-input {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	padding-left: 18px;
	padding-right: 4px;
}

.location-picker__search .form-input:focus {
	outline: none;
	box-shadow: none;
}

.location-picker__geo-btn {
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	margin-right: 6px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: var(--color-accent, #f97316);
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	cursor: pointer;
	flex-shrink: 0;
	line-height: 0;
	transition: background 0.15s ease, opacity 0.15s ease;
}

.location-picker__geo-btn:hover:not(:disabled) {
	background: rgba(249, 115, 22, 0.14);
}

.location-picker__geo-btn:focus-visible {
	outline: 2px solid var(--color-accent, #f97316);
	outline-offset: 2px;
}

.location-picker__geo-btn:disabled {
	opacity: 0.45;
	cursor: wait;
}

.location-picker__geo-btn .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.location-picker__geo-btn .icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.location-picker--immersive .location-picker__search {
	min-height: 50px;
}

.location-picker--immersive .location-picker__search .form-input {
	height: 50px;
	min-height: 50px;
	font-size: var(--text-base, 16px);
	background: transparent;
}

.location-picker__hint {
	margin-top: 6px;
}

.location-picker--featured {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	min-height: 0;
}

.location-picker--featured .location-picker__field {
	width: 100%;
	flex: 0 0 auto;
	gap: 0;
}

.location-picker--featured .location-picker__search {
	align-items: center;
	border: 1px solid var(--border-soft);
	background: var(--color-surface, var(--surface-1));
}

.location-picker--featured .location-picker__search .form-input {
	height: 44px;
	min-height: 44px;
	max-height: 44px;
	padding: 0 4px 0 16px;
	font-size: var(--text-sm);
	line-height: 44px;
	flex: 1 1 auto;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.location-picker--featured .location-picker__search .location-picker__geo-btn {
	width: 40px;
	height: 40px;
	min-height: 40px;
}

.location-picker--featured .location-picker__map-stage {
	width: 100%;
	flex: 0 0 auto;
	height: min(52vh, 280px);
	min-height: 220px;
}

.location-picker--featured .location-map {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	min-height: 0;
	flex: unset;
}

.location-map {
	width: 100%;
	height: 220px;
	min-height: 220px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-soft);
	overflow: hidden;
	z-index: 0;
	background: #0d0d0d;
}

/* Marcador y controles Leaflet — identidad Sarra */
.sarra-map-marker {
	background: transparent;
	border: none;
}

.sarra-map-marker__pin {
	display: block;
	width: 32px;
	height: 40px;
	line-height: 0;
	filter: drop-shadow(0 4px 12px rgba(255, 97, 39, 0.5));
}

.sarra-map-marker__shape {
	fill: #ff6127;
	stroke: #fff;
	stroke-width: 1.5;
}

.sarra-map-marker__dot {
	fill: rgba(255, 255, 255, 0.95);
}

.location-map--branded .leaflet-tile-pane {
	filter: brightness(1.24) contrast(1.1) saturate(1.08);
}

.location-map--branded .leaflet-control-zoom {
	border: none;
	box-shadow: none;
}

.location-map--branded .leaflet-control-zoom a {
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: rgba(18, 18, 18, 0.92);
	color: #fafafa;
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 18px;
}

.location-map--branded .leaflet-control-zoom a:hover {
	background: rgba(255, 87, 34, 0.22);
	color: #ff8a3d;
	border-color: rgba(255, 138, 61, 0.45);
}

.location-map--branded .leaflet-control-zoom-in {
	border-radius: 10px 10px 0 0;
}

.location-map--branded .leaflet-control-zoom-out {
	border-radius: 0 0 10px 10px;
}

.location-map--branded .leaflet-control-attribution {
	background: rgba(12, 12, 12, 0.72);
	color: rgba(115, 115, 115, 0.9);
	font-size: 9px;
	line-height: 1.3;
	padding: 3px 8px;
	border-radius: 6px 0 0 0;
	border: none;
	box-shadow: none;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.location-map--branded .leaflet-control-attribution a {
	color: rgba(140, 140, 140, 0.95);
	text-decoration: none;
}

.location-map--branded .leaflet-control-attribution a:hover {
	color: rgba(180, 180, 180, 0.95);
}

.location-picker--immersive .location-map--branded .leaflet-control-attribution {
	background: rgba(9, 9, 9, 0.65);
	color: rgba(100, 100, 100, 0.88);
}

@media (min-width: 768px) {
	.location-picker--split {
		grid-template-columns: 1fr 1fr;
		align-items: start;
		gap: 16px;
	}

	.location-picker--split .location-map {
		height: 280px;
		min-height: 280px;
	}

	.location-map {
		height: 280px;
	}
}

/* Summary */
.summary-section {
	border: 1px solid var(--border-soft);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.summary-section summary {
	padding: 12px 14px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.04);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.summary-section__body {
	padding: 12px 14px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--color-text-muted);
	display: grid;
	gap: 6px;
}

.narrative-box {
	padding: 14px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(249, 115, 22, 0.3);
	background: var(--color-accent-muted);
	font-size: 14px;
	line-height: 1.5;
}

.legal-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-soft);
	cursor: pointer;
}

.legal-checkbox input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--color-accent);
	flex-shrink: 0;
}

.legal-checkbox span {
	font-size: 13px;
	line-height: 1.35;
}

.person-summary {
	padding: 14px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(74, 222, 128, 0.3);
	background: rgba(74, 222, 128, 0.08);
	display: grid;
	gap: 4px;
}

.person-summary__badge {
	font-size: 12px;
	font-weight: 700;
	color: var(--color-success);
}

.person-summary__name {
	font-size: 16px;
	font-weight: 700;
}

.person-summary__meta {
	font-size: 13px;
	color: var(--color-text-muted);
}

.device-hint {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 10px 12px;
	border-radius: var(--radius-md);
	background: rgba(251, 191, 36, 0.1);
	border: 1px solid rgba(251, 191, 36, 0.3);
	font-size: 13px;
	color: #fde68a;
}

.device-hint button {
	margin-left: auto;
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}

.combobox-list {
	position: absolute;
	z-index: 20;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 180px;
	overflow: auto;
	margin-top: 4px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-soft);
	background: var(--surface-2);
	box-shadow: var(--shadow);
}

.combobox-item {
	padding: 10px 12px;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.combobox-item__label {
	color: var(--color-text);
}

.combobox-item__meta {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

.combobox-item:hover,
.combobox-item.is-active {
	background: var(--color-accent-muted);
}

.form-field--combobox {
	position: relative;
}

.success-screen {
	display: grid;
	gap: 16px;
	place-items: center;
	text-align: center;
	padding: 20px 0;
}

.success-screen__icon {
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: rgba(74, 222, 128, 0.15);
	color: var(--color-success);
	display: grid;
	place-items: center;
	font-size: 32px;
}

.success-screen__code {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--color-accent);
}

.step-view {
	display: grid;
	gap: 14px;
}

.step-section-title {
	font-size: 15px;
	font-weight: 700;
	margin-top: 4px;
}
