.acm-listing-wizard {
	max-width: 640px;
	margin: 0 auto;
}

.acm-wizard-progress {
	margin-bottom: 1.5rem;
	font-weight: 600;
	opacity: 0.7;
}

.acm-wizard-step {
	display: none;
}

.acm-wizard-step.is-active {
	display: block;
}

.acm-wizard-step h3 {
	margin-top: 0;
}

.acm-wizard-step p {
	margin-bottom: 1.25rem;
}

.acm-wizard-step label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.acm-wizard-step input[type="text"],
.acm-wizard-step input[type="number"],
.acm-wizard-step input[type="url"],
.acm-wizard-step select,
.acm-wizard-step textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	box-sizing: border-box;
}

.acm-wizard-step fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

.acm-wizard-step fieldset label {
	display: block;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.acm-listing-map {
	width: 100%;
	height: 280px;
	margin-top: 0.5rem;
	border-radius: 6px;
}

.acm-location-warning {
	color: #8a5a00;
	background: #fdf3e3;
	border: 1px solid #f0d9a8;
	padding: 0.6rem 0.9rem;
	border-radius: 4px;
	font-size: 0.9rem;
}

.acm-wizard-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.acm-wizard-nav button {
	padding: 0.6rem 1.5rem;
}

.acm-wizard-back {
	margin-right: auto;
}

.acm-category-cascade {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.acm-category-level {
	width: 100%;
	padding: 0.6rem 0.75rem;
	box-sizing: border-box;
}

.acm-file-dropzone {
	position: relative;
	border: 2px dashed rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 1rem;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.acm-file-dropzone.is-dragover {
	border-color: currentColor;
	background-color: rgba(0, 0, 0, 0.03);
}

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

.acm-dropzone-previews {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.acm-dropzone-preview-item {
	position: relative;
	width: 96px;
	height: 96px;
	border-radius: 6px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
}

.acm-document-dropzone .acm-dropzone-preview-item {
	width: auto;
	height: auto;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
}

.acm-dropzone-preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.acm-dropzone-filename {
	font-size: 0.85rem;
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
}

.acm-dropzone-remove {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 20px;
	height: 20px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	cursor: pointer;
	font-size: 0.9rem;
	padding: 0;
	z-index: 2;
}

.acm-dropzone-hint {
	font-size: 0.9rem;
	opacity: 0.7;
	pointer-events: none;
}
