/**
 * Polar Forge — 3D Print Studio (split-pane + bottom bar + fullscreen)
 */

/* ── App bar (blank full-page template) ── */
.pf-app-bar {
	display: flex;
	align-items: center;
	height: 48px;
	background: #0d0d14;
	border-bottom: 1px solid #1a1a28;
	padding: 0 20px;
	gap: 16px;
	flex-shrink: 0;
	position: relative;
	z-index: 200;
	box-sizing: border-box;
}

.pf-app-bar__logo {
	text-decoration: none;
	display: flex;
	align-items: center;
}

.pf-app-bar__logo-text {
	font-size: 16px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.06em;
}

.pf-logo-accent {
	color: #00c8ff;
}

.pf-app-bar__title {
	font-size: 13px;
	color: #5a6070;
	flex: 1;
}

.pf-app-bar__back {
	font-size: 12px;
	color: #4a5060;
	text-decoration: none;
	transition: color 0.2s;
}

.pf-app-bar__back:hover {
	color: #00c8ff;
}

/* Wrapper when blank template loads shortcode */
.pf-studio-page-wrap {
	display: flex;
	flex-direction: column;
	height: calc(100vh - 48px);
	overflow: hidden;
	box-sizing: border-box;
}

.pf-3d-studio-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	min-height: 0;
	flex: 1;
}

.pf-studio-page-wrap > .pf-3d-studio-wrap {
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

body.pf-studio-fullscreen-page .pf-3d-studio-wrap {
	border-radius: 0;
}

/* ── Root: sidebar + viewport ── */
.pf-studio-root {
	display: flex;
	flex-direction: row;
	width: 100%;
	flex: 1;
	min-height: 0;
	overflow: hidden;
	background: #0a0a0f;
	position: relative;
	border-radius: 12px;
}

/* Theme-embedded studio (no blank template) */
body:not(.pf-studio-fullscreen-page) .pf-studio-root {
	height: calc(100vh - 260px);
	min-height: 500px;
	max-height: calc(100vh - 140px);
}

body.pf-studio-fullscreen-page .pf-studio-root {
	height: auto;
	max-height: none;
	min-height: 400px;
}

.pf-studio-sidebar {
	width: 380px;
	min-width: 300px;
	max-width: 420px;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: #111118;
	border-right: 1px solid #1e1e2e;
	padding: 16px;
	box-sizing: border-box;
	flex-shrink: 0;
	scrollbar-width: thin;
	scrollbar-color: #2a2a3a #111118;
	overscroll-behavior: contain;
}

.pf-studio-sidebar::-webkit-scrollbar {
	width: 6px;
}

.pf-studio-sidebar::-webkit-scrollbar-track {
	background: #111118;
}

.pf-studio-sidebar::-webkit-scrollbar-thumb {
	background: #2a2a3a;
	border-radius: 3px;
}

.pf-studio-viewport {
	flex: 1;
	height: 100%;
	min-height: 0;
	position: relative;
	background: #050508;
	overflow: hidden;
}

.pf-viewer-canvas-container,
#pf-viewer-canvas-container {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	min-height: 0;
}

#pf-viewer-canvas-container canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

/* Placeholder (centered over viewport) */
.pf-viewer-placeholder-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #6a7080;
	pointer-events: none;
	z-index: 5;
}

.pf-viewer-placeholder-inner[hidden] {
	display: none !important;
}

.pf-placeholder-icon {
	font-size: 64px;
	opacity: 0.35;
	margin-bottom: 16px;
	line-height: 1;
}

.pf-viewer-placeholder-inner p {
	font-size: 14px;
	color: #6a7080;
	margin: 4px 0;
	text-align: center;
}

.pf-placeholder-sub {
	font-size: 12px !important;
	color: #4a5060 !important;
}

.pf-viewer-controls-hint {
	position: absolute;
	bottom: 12px;
	right: 16px;
	font-size: 11px;
	color: #5a6070;
	pointer-events: none;
	z-index: 10;
	margin: 0;
}

.pf-viewer-controls-hint[hidden] {
	display: none !important;
}

.pf-studio3d__loading {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: rgba(5, 5, 8, 0.88);
	z-index: 15;
}

.pf-studio3d__loading[hidden] {
	display: none !important;
}

.pf-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid rgba(0, 200, 255, 0.2);
	border-top-color: #00c8ff;
	border-radius: 50%;
	animation: pf-spin 0.8s linear infinite;
}

@keyframes pf-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ── Bottom bar ── */
.pf-studio-bottom-bar {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 72px;
	min-height: 72px;
	background: #0d0d14;
	border-top: 1px solid #1a1a28;
	padding: 0 24px;
	box-sizing: border-box;
	flex-shrink: 0;
	z-index: 100;
	border-radius: 0 0 12px 12px;
}

body.pf-studio-fullscreen-page .pf-studio-bottom-bar {
	border-radius: 0;
}

.pf-studio-bottom-bar[hidden] {
	display: none !important;
}

.pf-summary-stats {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px 32px;
	flex: 1;
	min-width: 0;
}

.pf-summary-stats--with-note {
	align-items: flex-end;
}

.pf-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.pf-stat--discount[hidden],
#pf-summary-discount-row[hidden] {
	display: none !important;
}

.pf-stat-label {
	font-size: 10px;
	color: #7a8090;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pf-stat-value {
	font-size: 15px;
	color: #c8ccd8;
	font-weight: 500;
}

.pf-discount-value {
	color: #22c55e;
}

.pf-total-price {
	color: #00c8ff;
	font-size: 18px;
	font-weight: 700;
}

.pf-estimate-note {
	font-size: 10px;
	color: #4a5060;
	margin-left: 4px;
	line-height: 1.3;
	max-width: 200px;
}

.pf-summary-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	flex-shrink: 0;
}

.pf-assembly-warning {
	font-size: 11px;
	color: #f59e0b;
	text-align: right;
}

.pf-assembly-warning[hidden] {
	display: none !important;
}

.pf-rtm-button {
	background: #00c8ff;
	color: #000;
	border: none;
	padding: 12px 24px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s, opacity 0.2s;
	white-space: nowrap;
}

.pf-rtm-button:hover:not(:disabled) {
	background: #33d4ff;
}

.pf-rtm-button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.pf-studio3d__cta-notice {
	font-size: 0.8rem;
	color: #f85149;
	margin: 0;
	text-align: right;
	max-width: 280px;
}

.pf-studio3d__cta-notice[hidden] {
	display: none !important;
}

/* ── Sidebar panels (legacy class names kept for JS) ── */
.pf-studio3d__panel {
	background: #0d1117;
	border: 1px solid rgba(48, 54, 61, 0.8);
	border-radius: 10px;
	padding: 0.875rem;
	margin-bottom: 0.75rem;
}

.pf-studio3d__panel[hidden] {
	display: none !important;
}

.pf-studio3d__panel-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #e6edf3;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pf-studio3d__upload-zone {
	border: 2px dashed rgba(0, 200, 255, 0.4);
	border-radius: 10px;
	padding: 1.25rem;
	text-align: center;
	transition: border-color 0.2s;
}

.pf-studio3d__upload-zone:hover,
.pf-studio3d__upload-zone.drag-over {
	border-color: #00c8ff;
}

.pf-studio3d__upload-zone[hidden] {
	display: none !important;
}

.pf-studio3d__upload-btn {
	padding: 0.6rem 1.25rem;
	border-radius: 999px;
	border: 1.5px solid #00c8ff;
	background: transparent;
	color: #00c8ff;
	font-weight: 700;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background 0.2s;
	min-height: 44px;
}

.pf-studio3d__upload-btn:hover {
	background: rgba(0, 200, 255, 0.1);
}

.pf-studio3d__upload-hint {
	font-size: 0.78rem;
	color: #8b949e;
	margin: 0.5rem 0 0;
}

.pf-studio3d__file-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: #e6edf3;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}

.pf-studio3d__file-info[hidden] {
	display: none !important;
}

.pf-studio3d__link-btn {
	background: none;
	border: none;
	color: #00c8ff;
	cursor: pointer;
	font-size: 0.8rem;
	text-decoration: underline;
	padding: 0;
}

.pf-scale-section {
	margin-top: 0.75rem;
}

.pf-scale-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.pf-section-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: #8b949e;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.pf-lock-btn {
	background: none;
	border: 1px solid #2a2a3a;
	border-radius: 4px;
	padding: 4px 8px;
	cursor: pointer;
	font-size: 14px;
	color: #00c8ff;
	transition: border-color 0.2s, opacity 0.2s;
	line-height: 1;
}

.pf-lock-btn[aria-pressed='false'] {
	opacity: 0.4;
	border-color: #1e1e2a;
}

.pf-lock-btn:hover {
	border-color: #00c8ff;
	opacity: 1;
}

.pf-xyz-inputs {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 12px;
}

.pf-xyz-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pf-xyz-label {
	width: 14px;
	font-size: 12px;
	color: #5a6070;
	font-weight: 600;
	flex-shrink: 0;
}

.pf-dim-input {
	flex: 1;
	background: #1a1a28;
	border: 1px solid #2a2a3a;
	border-radius: 4px;
	color: #d0d4e0;
	font-size: 14px;
	padding: 6px 8px;
	text-align: right;
	-moz-appearance: textfield;
	appearance: textfield;
}

.pf-dim-input::-webkit-outer-spin-button,
.pf-dim-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.pf-dim-input:focus {
	outline: none;
	border-color: #00c8ff;
}

.pf-xyz-unit {
	font-size: 11px;
	color: #3a4050;
	width: 20px;
	flex-shrink: 0;
}

.pf-scale-slider-row {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.pf-scale-slider {
	flex: 1;
	min-width: 0;
	accent-color: #00c8ff;
	height: 6px;
}

.pf-scale-pct-input-wrap {
	display: flex;
	align-items: center;
	gap: 3px;
	flex-shrink: 0;
}

.pf-scale-pct-input {
	width: 52px;
	background: #1a1a28;
	border: 1px solid #2a2a3a;
	border-radius: 4px;
	color: #d0d4e0;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	padding: 4px 0;
	-moz-appearance: textfield;
	appearance: textfield;
}

.pf-scale-pct-input::-webkit-outer-spin-button,
.pf-scale-pct-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.pf-scale-pct-input:focus {
	outline: 1px solid #00c8ff;
	border-color: #00c8ff;
}

.pf-scale-pct-symbol {
	font-size: 12px;
	color: #5a6070;
}

/* ── Oversize build plate options ── */
.pf-oversize-block {
	margin: 12px 0;
}

.pf-oversize-block[hidden] {
	display: none !important;
}

.pf-oversize-warning {
	font-size: 12px;
	color: #f59e0b;
	margin-bottom: 10px;
	font-weight: 600;
}

.pf-oversize-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pf-oversize-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1.5px solid rgba(48, 54, 61, 0.8);
	background: #16161f;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}

.pf-oversize-option:hover {
	border-color: #3a3a50;
	background: #1a1a28;
}

.pf-oversize-option--selected {
	border-color: #00c8ff;
	background: rgba(0, 200, 255, 0.08);
}

.pf-oversize-option__icon {
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}

.pf-oversize-option__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.pf-oversize-option__body strong {
	font-size: 13px;
	color: #d0d4e0;
	font-weight: 600;
}

.pf-oversize-option__body span {
	font-size: 11px;
	color: #5a6070;
	line-height: 1.4;
}

.pf-oversize-option--selected .pf-oversize-option__body strong {
	color: #00c8ff;
}

.pf-studio-btn-row {
	margin-top: 0.5rem;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pf-studio3d__dims {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pf-studio3d__dims label {
	font-size: 0.8rem;
	color: #8b949e;
	display: flex;
	align-items: center;
	gap: 4px;
}

.pf-studio3d__dim-input {
	width: 70px;
	padding: 4px 6px;
	border-radius: 6px;
	border: 1px solid rgba(48, 54, 61, 0.8);
	background: #161b22;
	color: #e6edf3;
	font-size: 0.85rem;
	min-height: 32px;
}

.pf-studio3d__slider {
	width: 100%;
	accent-color: #00c8ff;
	margin-top: 4px;
}

.pf-studio3d__sm-btn {
	padding: 5px 10px;
	border-radius: 6px;
	border: 1px solid rgba(48, 54, 61, 0.8);
	background: transparent;
	color: #8b949e;
	cursor: pointer;
	font-size: 0.78rem;
	min-height: 32px;
	transition: border-color 0.15s, color 0.15s;
}

.pf-studio3d__sm-btn:hover {
	border-color: #00c8ff;
	color: #00c8ff;
}

.pf-studio3d__warning {
	margin-top: 0.5rem;
	font-size: 0.78rem;
	color: #ffc400;
	background: rgba(255, 196, 0, 0.08);
	border: 1px solid rgba(255, 196, 0, 0.25);
	border-radius: 6px;
	padding: 6px 10px;
}

.pf-studio3d__warning[hidden] {
	display: none !important;
}

.pf-customer-notes {
	width: 100%;
	background: #111118;
	border: 1px solid #2a2a3a;
	border-radius: 4px;
	color: #c8ccd8;
	font-size: 13px;
	line-height: 1.5;
	padding: 10px 12px;
	resize: vertical;
	min-height: 80px;
	box-sizing: border-box;
	font-family: inherit;
	transition: border-color 0.15s;
}

.pf-customer-notes::placeholder {
	color: #3a4050;
}

.pf-customer-notes:focus {
	outline: none;
	border-color: #00c8ff;
}

.pf-notes-counter {
	text-align: right;
	font-size: 11px;
	color: #3a4050;
	margin-top: 4px;
}

.pf-studio3d__bbox-info {
	margin-top: 0.5rem;
	font-size: 0.82rem;
	color: #00c8ff;
	font-family: ui-monospace, monospace;
}

.pf-studio3d__filament-grid {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-height: 280px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.pf-fil-card {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1.5px solid rgba(48, 54, 61, 0.8);
	background: #161b22;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}

.pf-fil-card:hover,
.pf-fil-card:focus-visible {
	border-color: #00c8ff;
	background: rgba(0, 200, 255, 0.05);
	outline: none;
}

.pf-fil-card.active {
	border-color: #00c8ff;
	background: rgba(0, 200, 255, 0.1);
}

.pf-fil-card__dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 3px;
}

.pf-fil-card__body {
	flex: 1;
	min-width: 0;
}

.pf-fil-card__name {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	color: #e6edf3;
}

.pf-fil-card__badge {
	display: inline-block;
	font-size: 0.7rem;
	background: rgba(0, 200, 255, 0.12);
	color: #00c8ff;
	border-radius: 999px;
	padding: 1px 7px;
	margin-top: 2px;
}

.pf-fil-card__desc {
	font-size: 0.75rem;
	color: #8b949e;
	margin: 4px 0 0;
	line-height: 1.5;
}

.pf-studio3d__qty-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pf-studio3d__qty-btn {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid rgba(48, 54, 61, 0.8);
	background: #161b22;
	color: #e6edf3;
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pf-studio3d__qty-btn:hover {
	border-color: #00c8ff;
	color: #00c8ff;
}

.pf-studio3d__qty-num {
	width: 60px;
	text-align: center;
	padding: 6px;
	border-radius: 8px;
	border: 1px solid rgba(48, 54, 61, 0.8);
	background: #161b22;
	color: #e6edf3;
	font-size: 1rem;
	min-height: 36px;
}

.pf-discount-tiers-title {
	font-size: 0.8rem;
	color: #8b949e;
	margin: 0.5rem 0 0.25rem;
}

.pf-disc-badge {
	display: inline-block;
	font-size: 0.75rem;
	background: rgba(63, 185, 80, 0.1);
	color: #3fb950;
	border-radius: 999px;
	padding: 2px 8px;
	margin: 2px 3px 0 0;
}

/* Issue 1 — Assembly visibility */
.pf-studio-assembly,
.pf-studio-assembly label,
.pf-studio-assembly p,
.pf-studio-assembly span,
.pf-assembly-label,
.pf-assembly-label span,
.pf-assembly-note {
	color: #d0d0d0 !important;
}

.pf-assembly-label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-top: 1rem;
	cursor: pointer;
	font-size: 0.875rem;
	line-height: 1.45;
}

.pf-assembly-label__sub {
	display: block;
	font-size: 0.78rem;
	color: #9aa0a8 !important;
	margin-top: 4px;
}

.pf-studio-assembly input[type='checkbox'] {
	accent-color: #00c8ff;
	width: 18px;
	height: 18px;
	cursor: pointer;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Aliases from prompt */
.pf-assembly-label,
.pf-assembly-note {
	color: #d0d0d0 !important;
}

/* Mobile */
@media (max-width: 900px) {
	.pf-studio-root {
		flex-direction: column;
		height: auto;
		max-height: none;
		min-height: 0;
	}

	body.pf-studio-fullscreen-page .pf-studio-root {
		flex: 1;
		min-height: 0;
	}

	.pf-studio-sidebar {
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: 55vh;
		border-right: none;
		border-bottom: 1px solid #1e1e2e;
	}

	.pf-studio-viewport {
		height: 45vh;
		min-height: 300px;
	}

	.pf-studio-bottom-bar {
		flex-direction: column;
		align-items: stretch;
		height: auto;
		padding: 12px 16px;
		gap: 12px;
		position: relative;
	}

	.pf-summary-stats {
		flex-wrap: wrap;
		gap: 16px;
	}

	.pf-summary-action {
		align-items: stretch;
	}

	.pf-rtm-button {
		width: 100%;
		text-align: center;
	}
}

/* ── File queue (multi-file batch) ── */
.pf-file-queue {
	margin-top: 12px;
	border: 1px solid #1e1e2e;
	border-radius: 6px;
	overflow: hidden;
}

.pf-file-queue__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	background: #0d0d18;
	border-bottom: 1px solid #1e1e2e;
}

.pf-file-queue__label {
	font-size: 10px;
	color: #4a5060;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pf-add-file-btn {
	background: none;
	border: 1px solid #2a2a3a;
	border-radius: 4px;
	color: #00c8ff;
	font-size: 11px;
	padding: 3px 8px;
	cursor: pointer;
	transition: border-color 0.15s;
}

.pf-add-file-btn:hover {
	border-color: #00c8ff;
}

.pf-file-queue__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pf-queue-item {
	display: flex;
	align-items: center;
	min-height: 44px;
	border-bottom: 1px solid #131320;
}

.pf-queue-item--active {
	background: #0d2030;
}

.pf-queue-item__preview {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: inherit;
	font: inherit;
	overflow: hidden;
}

.pf-queue-icon {
	font-size: 14px;
	color: #00c8ff;
	flex-shrink: 0;
}

.pf-queue-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}

.pf-queue-name {
	font-size: 11px;
	color: #c0c4d0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 130px;
}

.pf-queue-dims {
	font-size: 10px;
	color: #4a5060;
	white-space: nowrap;
}

.pf-queue-qty {
	display: flex;
	align-items: center;
	gap: 3px;
	flex-shrink: 0;
	padding: 0 6px;
}

.pf-qty-dec,
.pf-qty-inc {
	width: 20px;
	height: 20px;
	background: #1a1a28;
	border: 1px solid #2a2a3a;
	border-radius: 3px;
	color: #c0c4d0;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	flex-shrink: 0;
}

.pf-qty-dec:hover,
.pf-qty-inc:hover {
	border-color: #00c8ff;
	color: #00c8ff;
}

.pf-qty-val {
	font-size: 12px;
	color: #d0d4e0;
	font-weight: 600;
	min-width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.pf-queue-item__remove {
	flex-shrink: 0;
	width: 32px;
	min-height: 44px;
	background: none;
	border: none;
	border-left: 1px solid #131320;
	color: #3a4050;
	font-size: 13px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.15s, background 0.15s;
	padding: 0;
}

.pf-queue-item__remove:hover {
	color: #ff4444;
	background: #1a0505;
}

.pf-plate-fit {
	padding: 8px 12px;
	font-size: 12px;
	line-height: 1.4;
}

.pf-plate-fit--ok {
	background: #0a1f0a;
	color: #4ade80;
}

/* Multi-plate informational — batch pricing covers all plates */
.pf-plate-fit--split {
	background: #141000;
	color: #f59e0b;
	padding: 10px 12px;
	font-size: 12px;
	line-height: 1.5;
	border-top: 1px solid #2a2000;
}

.pf-plate-fit--split strong {
	color: #fbbf24;
}

/* Oversize — model exceeds plate; no batch discount */
.pf-plate-fit--oversize {
	background: #1a0000;
	color: #f87171;
	padding: 10px 12px;
	font-size: 12px;
	line-height: 1.5;
	border-top: 1px solid #2a0000;
}

.pf-plate-fit--oversize strong {
	color: #fca5a5;
}

.pf-batch-label {
	color: #00c8ff;
	font-size: 12px;
}

/* WooCommerce cart thumbnail override for studio */
.woocommerce img.pf-studio-cart-thumb,
img.pf-studio-cart-thumb {
	width: 80px !important;
	height: 80px !important;
	object-fit: cover;
	border-radius: 4px;
	background: #111;
}
