/* KC Move Quote Wizard – WiseMove-style UI */

.kc-move-wizard {
	--kc-primary: #2563eb;
	--kc-primary-hover: #1d4ed8;
	--kc-primary-light: #dbeafe;
	--kc-text: #0f172a;
	--kc-text-muted: #64748b;
	--kc-border: #e2e8f0;
	--kc-bg: #ffffff;
	--kc-bg-soft: #f8fafc;
	--kc-error: #dc2626;
	--kc-radius: 12px;
	--kc-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
	--kc-transition: 0.25s ease;

	max-width: 720px;
	margin: 0 auto;
	padding: 24px 16px 48px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	color: var(--kc-text);
	box-sizing: border-box;
}

.kc-move-wizard *,
.kc-move-wizard *::before,
.kc-move-wizard *::after {
	box-sizing: border-box;
}

/* Header & progress */
.kc-move-wizard__header {
	margin-bottom: 32px;
}

.kc-move-wizard__title {
	margin: 0 0 24px;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.kc-move-progress__list {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	gap: 4px;
}

.kc-move-progress__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	position: relative;
	text-align: center;
}

.kc-move-progress__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--kc-bg-soft);
	border: 2px solid var(--kc-border);
	color: var(--kc-text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	transition: var(--kc-transition);
}

.kc-move-progress__label {
	font-size: 0.6875rem;
	color: var(--kc-text-muted);
	font-weight: 500;
	line-height: 1.2;
}

@media (min-width: 480px) {
	.kc-move-progress__label {
		font-size: 0.75rem;
	}
}

.kc-move-progress__item.is-active .kc-move-progress__number {
	background: var(--kc-primary);
	border-color: var(--kc-primary);
	color: #fff;
}

.kc-move-progress__item.is-complete .kc-move-progress__number {
	background: var(--kc-primary-light);
	border-color: var(--kc-primary);
	color: var(--kc-primary);
}

.kc-move-progress__item.is-complete .kc-move-progress__number::after {
	content: "✓";
	font-size: 0.875rem;
}

.kc-move-progress__item.is-complete .kc-move-progress__number {
	font-size: 0;
}

.kc-move-progress__item.is-active .kc-move-progress__label,
.kc-move-progress__item.is-complete .kc-move-progress__label {
	color: var(--kc-text);
	font-weight: 600;
}

.kc-move-progress__bar {
	height: 4px;
	background: var(--kc-border);
	border-radius: 2px;
	overflow: hidden;
}

.kc-move-progress__bar-fill {
	height: 100%;
	background: var(--kc-primary);
	border-radius: 2px;
	transition: width var(--kc-transition);
}

/* Messages */
.kc-move-wizard__messages {
	padding: 14px 18px;
	border-radius: var(--kc-radius);
	margin-bottom: 20px;
	font-size: 0.9375rem;
}

.kc-move-wizard__messages.is-error {
	background: #fef2f2;
	color: var(--kc-error);
	border: 1px solid #fecaca;
}

.kc-move-wizard__messages.is-success {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}

/* Form card */
.kc-move-form {
	background: var(--kc-bg);
	border-radius: var(--kc-radius);
	box-shadow: var(--kc-shadow);
	padding: 28px 24px 32px;
}

@media (min-width: 600px) {
	.kc-move-form {
		padding: 36px 40px 40px;
	}
}

/* Steps */
.kc-move-step {
	animation: kcFadeIn 0.3s ease;
}

.kc-move-step[hidden] {
	display: none !important;
}

@keyframes kcFadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.kc-move-step__heading {
	margin: 0 0 8px;
	font-size: 1.375rem;
	font-weight: 700;
}

.kc-move-step__subheading {
	margin: 0 0 28px;
	color: var(--kc-text-muted);
	font-size: 0.9375rem;
	line-height: 1.5;
}

/* Service cards */
.kc-move-cards {
	display: grid;
	gap: 12px;
	margin-bottom: 8px;
}

@media (min-width: 540px) {
	.kc-move-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.kc-move-card {
	cursor: pointer;
	display: block;
}

.kc-move-card__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.kc-move-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 16px;
	border: 2px solid var(--kc-border);
	border-radius: var(--kc-radius);
	background: var(--kc-bg);
	transition: var(--kc-transition);
	min-height: 140px;
}

.kc-move-card:hover .kc-move-card__inner {
	border-color: var(--kc-primary-light);
	box-shadow: 0 2px 12px rgba(37, 99, 235, 0.12);
}

.kc-move-card__input:focus-visible + .kc-move-card__inner {
	outline: 2px solid var(--kc-primary);
	outline-offset: 2px;
}

.kc-move-card.is-selected .kc-move-card__inner,
.kc-move-card__input:checked + .kc-move-card__inner {
	border-color: var(--kc-primary);
	background: var(--kc-primary-light);
	box-shadow: 0 0 0 1px var(--kc-primary);
}

.kc-move-cards.has-error .kc-move-card__inner {
	border-color: #fca5a5;
}

.kc-move-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	line-height: 0;
	color: #64748b;
}

.kc-move-card__icon .kc-move-svg {
	display: block;
	width: 40px;
	height: 40px;
}

.kc-move-card__icon .kc-move-svg--sm {
	width: 32px;
	height: 32px;
}

.kc-move-card.is-selected .kc-move-card__icon,
.kc-move-card__input:checked + .kc-move-card__inner .kc-move-card__icon {
	color: var(--kc-primary);
}

.kc-move-card__title {
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 4px;
}

.kc-move-card__desc {
	font-size: 0.8125rem;
	color: var(--kc-text-muted);
	line-height: 1.4;
}

/* Property type cards */
.kc-move-cards--property {
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
	.kc-move-cards--property {
		grid-template-columns: repeat(3, 1fr);
	}
}

.kc-move-card--compact .kc-move-card__inner {
	min-height: 110px;
	padding: 18px 12px;
}

.kc-move-card--compact .kc-move-card__icon {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.kc-move-card--compact .kc-move-card__title {
	font-size: 0.875rem;
	line-height: 1.3;
}

.kc-move-field__hint {
	margin: -4px 0 14px;
	font-size: 0.875rem;
	color: var(--kc-text-muted);
	line-height: 1.4;
}

/* Access restriction tiles */
.kc-move-restriction-tiles {
	display: grid;
	gap: 10px;
}

@media (min-width: 540px) {
	.kc-move-restriction-tiles {
		grid-template-columns: repeat(2, 1fr);
	}
}

.kc-move-restriction-tile {
	cursor: pointer;
	display: block;
}

.kc-move-restriction-tile__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.kc-move-restriction-tile__inner {
	display: grid;
	grid-template-columns: auto auto 1fr;
	grid-template-rows: auto auto;
	gap: 2px 10px;
	align-items: start;
	padding: 16px 18px;
	border: 2px solid var(--kc-border);
	border-radius: 10px;
	background: var(--kc-bg);
	transition: var(--kc-transition);
}

.kc-move-restriction-tile__check {
	grid-row: 1 / span 2;
	width: 22px;
	height: 22px;
	border: 2px solid var(--kc-border);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
	transition: var(--kc-transition);
}

.kc-move-restriction-tile__check::after {
	content: "";
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	margin-top: -2px;
	transition: transform 0.15s ease;
}

.kc-move-restriction-tile__icon {
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
}

.kc-move-restriction-tile__icon .kc-move-svg--tile {
	width: 24px;
	height: 24px;
}

.kc-move-restriction-tile.is-selected .kc-move-restriction-tile__icon,
.kc-move-restriction-tile__input:checked + .kc-move-restriction-tile__inner .kc-move-restriction-tile__icon {
	color: var(--kc-primary);
}

.kc-move-restriction-tile__title {
	grid-column: 3;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--kc-text);
}

.kc-move-restriction-tile__desc {
	grid-column: 3;
	font-size: 0.8125rem;
	color: var(--kc-text-muted);
	line-height: 1.4;
}

.kc-move-restriction-tile:hover .kc-move-restriction-tile__inner {
	border-color: var(--kc-primary-light);
	box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
}

.kc-move-restriction-tile__input:focus-visible + .kc-move-restriction-tile__inner {
	outline: 2px solid var(--kc-primary);
	outline-offset: 2px;
}

.kc-move-restriction-tile.is-selected .kc-move-restriction-tile__inner,
.kc-move-restriction-tile__input:checked + .kc-move-restriction-tile__inner {
	border-color: var(--kc-primary);
	background: var(--kc-primary-light);
	box-shadow: 0 0 0 1px var(--kc-primary);
}

.kc-move-restriction-tile.is-selected .kc-move-restriction-tile__check,
.kc-move-restriction-tile__input:checked + .kc-move-restriction-tile__inner .kc-move-restriction-tile__check {
	background: var(--kc-primary);
	border-color: var(--kc-primary);
}

.kc-move-restriction-tile.is-selected .kc-move-restriction-tile__check::after,
.kc-move-restriction-tile__input:checked + .kc-move-restriction-tile__inner .kc-move-restriction-tile__check::after {
	transform: rotate(45deg) scale(1);
}

.kc-move-field--restrictions {
	margin-bottom: 8px;
}

/* Help required cards — 1 col mobile, 2 cols desktop */
.kc-move-cards.kc-move-cards--help {
	grid-template-columns: 1fr;
}

@media (min-width: 540px) {
	.kc-move-cards.kc-move-cards--help {
		grid-template-columns: repeat(2, 1fr);
	}
}

.kc-move-cards--help .kc-move-card--compact .kc-move-card__inner {
	min-height: 148px;
	padding: 18px 14px;
}

.kc-move-cards--help .kc-move-card__desc {
	display: block;
	margin-top: 6px;
	font-size: 0.75rem;
	line-height: 1.4;
}

/* From / To location badges */
.kc-move-location-badge {
	display: inline-block;
	padding: 4px 12px;
	margin-bottom: 12px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.kc-move-location-badge--pickup {
	background: #dbeafe;
	color: #1d4ed8;
}

.kc-move-location-badge--delivery {
	background: #dcfce7;
	color: #15803d;
}

/* Progress bar – compact labels on small screens */
@media (max-width: 479px) {
	.kc-move-progress__label {
		font-size: 0.625rem;
	}
	.kc-move-progress__number {
		width: 30px;
		height: 30px;
		font-size: 0.75rem;
	}
}

/* Fields */
.kc-move-field {
	margin-bottom: 22px;
}

.kc-move-field.has-error .kc-move-input,
.kc-move-field.has-error .kc-move-select {
	border-color: var(--kc-error);
}

.kc-move-label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--kc-text);
}

.kc-move-input,
.kc-move-select {
	width: 100%;
	padding: 14px 16px;
	font-size: 1rem;
	line-height: 1.4;
	border: 2px solid var(--kc-border);
	border-radius: 10px;
	background: var(--kc-bg);
	color: var(--kc-text);
	transition: border-color var(--kc-transition), box-shadow var(--kc-transition);
	-webkit-appearance: none;
	appearance: none;
}

.kc-move-input:focus,
.kc-move-select:focus {
	outline: none;
	border-color: var(--kc-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.kc-move-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

/* Toggle (elevator) */
.kc-move-toggle {
	display: flex;
	gap: 10px;
}

.kc-move-toggle__option {
	flex: 1;
	cursor: pointer;
}

.kc-move-toggle__option input {
	position: absolute;
	opacity: 0;
}

.kc-move-toggle__option span {
	display: block;
	text-align: center;
	padding: 14px 16px;
	border: 2px solid var(--kc-border);
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	transition: var(--kc-transition);
}

.kc-move-toggle__option input:checked + span {
	border-color: var(--kc-primary);
	background: var(--kc-primary-light);
	color: var(--kc-primary);
}

.kc-move-toggle__option input:focus-visible + span {
	outline: 2px solid var(--kc-primary);
	outline-offset: 2px;
}

/* Time options */
.kc-move-time-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.kc-move-time-option {
	cursor: pointer;
}

.kc-move-time-option input {
	position: absolute;
	opacity: 0;
}

.kc-move-time-option span {
	display: block;
	text-align: center;
	padding: 14px 8px;
	border: 2px solid var(--kc-border);
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: var(--kc-transition);
}

.kc-move-time-option input:checked + span {
	border-color: var(--kc-primary);
	background: var(--kc-primary-light);
	color: var(--kc-primary);
}

/* Errors */
.kc-move-error {
	display: block;
	margin-top: 6px;
	font-size: 0.8125rem;
	color: var(--kc-error);
}

.kc-move-error[hidden] {
	display: none;
}

/* Buttons */
.kc-move-step__actions {
	display: flex;
	gap: 12px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.kc-move-step__actions--end {
	justify-content: flex-end;
}

.kc-move-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--kc-transition);
	min-height: 52px;
	flex: 1;
}

@media (min-width: 480px) {
	.kc-move-btn {
		flex: 0 1 auto;
		min-width: 140px;
	}
}

.kc-move-btn--primary {
	background: var(--kc-primary);
	color: #fff;
	border-color: var(--kc-primary);
}

.kc-move-btn--primary:hover:not(:disabled) {
	background: var(--kc-primary-hover);
	border-color: var(--kc-primary-hover);
}

.kc-move-btn--secondary {
	background: var(--kc-bg);
	color: var(--kc-text);
	border-color: var(--kc-border);
}

.kc-move-btn--secondary:hover:not(:disabled) {
	background: var(--kc-bg-soft);
	border-color: var(--kc-text-muted);
}

.kc-move-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.kc-move-btn--submit.is-loading .kc-move-btn__text {
	opacity: 0.7;
}

.kc-move-btn__spinner {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: kcSpin 0.7s linear infinite;
}

.kc-move-btn__spinner[hidden] {
	display: none;
}

.kc-move-btn--submit.is-loading .kc-move-btn__spinner {
	display: inline-block;
}

@keyframes kcSpin {
	to {
		transform: rotate(360deg);
	}
}

/* Summary */
.kc-move-summary {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--kc-border);
	border-radius: var(--kc-radius);
	overflow: hidden;
	margin-bottom: 8px;
}

.kc-move-summary__group {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	gap: 4px 12px;
	margin: 0;
	padding: 18px 20px;
	border-bottom: 1px solid var(--kc-border);
	background: var(--kc-bg);
}

.kc-move-summary__group:last-child {
	border-bottom: none;
}

.kc-move-summary__group dt {
	grid-column: 1;
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--kc-text-muted);
}

.kc-move-summary__group dd {
	grid-column: 1;
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.5;
}

.kc-move-summary__meta {
	font-weight: 400;
	color: var(--kc-text-muted);
	font-size: 0.875rem;
}

.kc-move-summary__edit {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	background: none;
	border: none;
	color: var(--kc-primary);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	padding: 4px 8px;
	text-decoration: underline;
}

.kc-move-summary__edit:hover {
	color: var(--kc-primary-hover);
}

/* Success */
.kc-move-success {
	text-align: center;
	padding: 48px 24px;
	background: var(--kc-bg);
	border-radius: var(--kc-radius);
	box-shadow: var(--kc-shadow);
	animation: kcFadeIn 0.4s ease;
}

.kc-move-success[hidden] {
	display: none !important;
}

.kc-move-success__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #dcfce7;
	color: #16a34a;
	margin-bottom: 20px;
}

.kc-move-success__icon .kc-move-svg--check {
	width: 32px;
	height: 32px;
}

.kc-move-success__title {
	margin: 0 0 12px;
	font-size: 1.5rem;
	font-weight: 700;
}

.kc-move-success__message {
	margin: 0;
	color: var(--kc-text-muted);
	font-size: 1rem;
	line-height: 1.6;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

/* Wide layout for inventory step */
.kc-move-wizard--wide {
	max-width: 960px;
}

/* Inventory step */
.kc-move-inventory {
	margin-bottom: 8px;
}

.kc-move-inventory__upload {
	margin-bottom: 20px;
	padding: 18px 20px;
	border: 1px dashed var(--kc-border);
	border-radius: var(--kc-radius);
	background: var(--kc-bg-soft);
}

.kc-move-inventory__upload-title {
	margin: 0 0 12px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--kc-text);
}

.kc-move-inventory__dropzone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 24px 16px;
	border: 2px dashed #cbd5e1;
	border-radius: 10px;
	background: var(--kc-bg);
	cursor: pointer;
	transition: var(--kc-transition);
	text-align: center;
}

.kc-move-inventory__dropzone:hover,
.kc-move-inventory__dropzone.is-dragover,
.kc-move-inventory__dropzone.has-file {
	border-color: var(--kc-primary);
	background: var(--kc-primary-light);
}

.kc-move-inventory__dropzone-icon {
	font-size: 1.75rem;
	line-height: 1;
}

.kc-move-inventory__dropzone-text {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--kc-text);
}

.kc-move-inventory__dropzone-hint {
	font-size: 0.75rem;
	color: var(--kc-text-muted);
}

.kc-move-inventory__file-name {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--kc-primary);
}

.kc-move-inventory__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin-bottom: 16px;
}

.kc-move-inventory__search-wrap {
	flex: 1;
	min-width: 200px;
}

.kc-move-inventory__search {
	width: 100%;
	margin: 0;
}

.kc-move-inventory__volume {
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
}

.kc-move-inventory__volume-label {
	display: block;
	font-size: 0.75rem;
	color: var(--kc-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.kc-move-inventory__volume-value {
	font-size: 1.125rem;
	color: var(--kc-primary);
}

.kc-move-inventory__layout {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	border: 1px solid var(--kc-border);
	border-radius: var(--kc-radius);
	overflow: hidden;
	background: var(--kc-bg);
	min-height: 360px;
}

.kc-move-inventory__sidebar {
	border-right: 1px solid var(--kc-border);
	background: var(--kc-bg-soft);
}

.kc-move-inventory__categories {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.kc-move-inventory__category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 16px;
	border: none;
	background: transparent;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--kc-text);
	text-align: left;
	cursor: pointer;
	transition: var(--kc-transition);
}

.kc-move-inventory__category:hover {
	background: #eef2ff;
}

.kc-move-inventory__category.is-active {
	background: var(--kc-bg);
	color: var(--kc-primary);
	font-weight: 700;
	box-shadow: inset 3px 0 0 var(--kc-primary);
}

.kc-move-inventory__category-count {
	font-size: 0.75rem;
	color: var(--kc-text-muted);
	font-weight: 600;
}

.kc-move-inventory__category.is-active .kc-move-inventory__category-count {
	color: var(--kc-primary);
}

.kc-move-inventory__panel {
	padding: 16px 20px;
	overflow-y: auto;
	max-height: 420px;
}

.kc-move-inventory__panel-title {
	margin: 0 0 14px;
	font-size: 1rem;
	font-weight: 700;
}

.kc-move-inventory__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kc-move-inventory__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--kc-border);
}

.kc-move-inventory__item:last-child {
	border-bottom: none;
}

.kc-move-inventory__item-name {
	flex: 1;
	font-size: 0.9375rem;
	font-weight: 500;
}

.kc-move-inventory__add-btn {
	padding: 8px 18px;
	border: 1px solid var(--kc-primary);
	border-radius: 8px;
	background: var(--kc-bg);
	color: var(--kc-primary);
	font-size: 0.8125rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--kc-transition);
}

.kc-move-inventory__add-btn:hover {
	background: var(--kc-primary);
	color: #fff;
}

.kc-move-inventory__qty {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--kc-border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--kc-bg);
	transition: transform 0.15s ease;
}

.kc-move-inventory__qty.is-bump {
	animation: kcQtyBump 0.25s ease;
}

@keyframes kcQtyBump {
	50% { transform: scale(1.06); }
}

.kc-move-inventory__qty-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: var(--kc-bg-soft);
	color: var(--kc-text);
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
	transition: var(--kc-transition);
}

.kc-move-inventory__qty-btn:hover {
	background: var(--kc-primary-light);
	color: var(--kc-primary);
}

.kc-move-inventory__qty-value {
	min-width: 32px;
	text-align: center;
	font-weight: 700;
	font-size: 0.9375rem;
}

.kc-move-inventory__empty {
	margin: 24px 0 0;
	text-align: center;
	color: var(--kc-text-muted);
	font-size: 0.875rem;
}

.kc-move-inventory__add-custom {
	flex-shrink: 0;
}

/* Modal */
.kc-move-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.kc-move-modal[hidden] {
	display: none !important;
}

.kc-move-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
}

.kc-move-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 24px;
	border-radius: var(--kc-radius);
	background: var(--kc-bg);
	box-shadow: var(--kc-shadow);
}

.kc-move-modal__title {
	margin: 0 0 20px;
	font-size: 1.125rem;
}

.kc-move-modal__actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 8px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 719px) {
	.kc-move-inventory__layout {
		grid-template-columns: 1fr;
	}

	.kc-move-inventory__sidebar {
		border-right: none;
		border-bottom: 1px solid var(--kc-border);
	}

	.kc-move-inventory__categories {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 8px;
		gap: 6px;
		-webkit-overflow-scrolling: touch;
	}

	.kc-move-inventory__categories li {
		flex-shrink: 0;
	}

	.kc-move-inventory__category {
		padding: 10px 14px;
		border-radius: 999px;
		border: 1px solid var(--kc-border);
		white-space: nowrap;
	}

	.kc-move-inventory__category.is-active {
		box-shadow: none;
		border-color: var(--kc-primary);
		background: var(--kc-primary-light);
	}

	.kc-move-inventory__volume {
		margin-left: 0;
		width: 100%;
		text-align: left;
	}

	.kc-move-inventory__panel {
		max-height: none;
	}
}
