/**
 * ATX Mats Designer — simplified wizard UI styles (v1.2.0).
 * Namespaced under .atx-wizard-shell / .atx-mats-designer-root.
 */

.atx-mats-designer-root {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: #111827;
	box-sizing: border-box;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.atx-mats-designer-root *, .atx-mats-designer-root *::before, .atx-mats-designer-root *::after {
	box-sizing: border-box;
}

.atx-designer-noscript {
	padding: 2rem;
	text-align: center;
	background: #fef3c7;
	border: 1px solid #fbbf24;
	border-radius: 8px;
}

/* -------- Hero -------- */
.atx-wizard-hero {
	background: linear-gradient(135deg, #111827 0%, #1E3A8A 100%);
	color: #fff;
	padding: 2rem 2rem 1.5rem;
	border-radius: 12px 12px 0 0;
}

.atx-wizard-hero-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}

.atx-wizard-hero-tagline {
	font-size: 1rem;
	margin: 0;
	opacity: 0.85;
}

/* -------- Main layout -------- */
.atx-wizard-main {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 2rem;
	padding: 2rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-top: none;
	border-radius: 0 0 12px 12px;
	min-height: 700px;
}

@media (max-width: 900px) {
	.atx-wizard-main {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1rem;
	}
}

/* -------- Preview -------- */
.atx-wizard-preview {
	background: #f9fafb;
	border-radius: 8px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: 1rem;
	max-height: 80vh;
}

.atx-preview-wrap {
	width: 100%;
	text-align: center;
}

.atx-preview-canvas {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
}

.atx-preview-caption {
	margin-top: 0.75rem;
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 500;
}

/* -------- Controls / wizard steps -------- */
.atx-wizard-controls {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* -------- Stepper -------- */
.atx-wizard-stepper {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
}

.atx-wizard-step {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: 100px;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 0.875rem;
	font-weight: 500;
	flex: 1;
	min-width: 100px;
}

.atx-wizard-step.active {
	background: #1E3A8A;
	color: #fff;
}

.atx-wizard-step.done {
	background: #dcfce7;
	color: #166534;
}

.atx-wizard-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 700;
}

.atx-wizard-step.active .atx-wizard-step-num {
	background: rgba(255,255,255,0.3);
}

.atx-wizard-step.done .atx-wizard-step-num {
	background: #166534;
	color: #fff;
}

/* -------- Step content -------- */
.atx-wizard-step-title {
	font-size: 1.375rem;
	font-weight: 700;
	margin: 0.5rem 0 0.25rem;
	color: #111827;
}

.atx-wizard-step-intro {
	font-size: 0.9375rem;
	color: #6b7280;
	margin: 0 0 1rem;
	line-height: 1.5;
}

.atx-wizard-sub-title {
	font-size: 1rem;
	font-weight: 600;
	margin: 1rem 0 0.5rem;
}

.atx-wizard-hint {
	font-size: 0.875rem;
	color: #2563eb;
	background: #eff6ff;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	margin: 0.5rem 0;
}

.atx-wizard-error {
	font-size: 0.875rem;
	color: #b91c1c;
	background: #fef2f2;
	border: 1px solid #fecaca;
	padding: 0.75rem;
	border-radius: 6px;
	margin: 0.75rem 0;
}

/* -------- Preset grid (size cards) -------- */
.atx-preset-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.atx-preset-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.875rem;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s;
	font-family: inherit;
}

.atx-preset-card:hover {
	border-color: #1E3A8A;
	background: #f5f7ff;
}

.atx-preset-card.selected {
	border-color: #1E3A8A;
	background: #1E3A8A;
	color: #fff;
}

.atx-preset-card-title {
	font-weight: 700;
	font-size: 0.9375rem;
}

.atx-preset-card-sub {
	font-size: 0.8125rem;
	color: #6b7280;
	margin-top: 0.25rem;
}

.atx-preset-card.selected .atx-preset-card-sub {
	color: #cbd5e1;
}

.atx-preset-custom {
	border-style: dashed;
}

/* -------- Custom size inputs -------- */
.atx-custom-size-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.atx-field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 0.75rem;
}

.atx-field label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #374151;
}

.atx-field input[type="text"],
.atx-field input[type="email"],
.atx-field input[type="tel"],
.atx-field input[type="number"],
.atx-field input[type="date"],
.atx-field textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 0.9375rem;
	font-family: inherit;
	background: #fff;
	transition: border-color 0.15s;
}

.atx-field input:focus,
.atx-field textarea:focus {
	outline: none;
	border-color: #1E3A8A;
	box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.atx-field input[type="range"] {
	width: 100%;
	accent-color: #1E3A8A;
}

/* -------- Color grid -------- */
.atx-color-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.atx-color-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.5rem;
	cursor: pointer;
	transition: all 0.15s;
	font-family: inherit;
}

.atx-color-card:hover {
	border-color: #1E3A8A;
	transform: translateY(-1px);
}

.atx-color-card.selected {
	border-color: #1E3A8A;
	box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}

.atx-color-swatch {
	height: 60px;
	border-radius: 4px;
	margin-bottom: 0.5rem;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.atx-color-name {
	font-size: 0.8125rem;
	font-weight: 600;
	text-align: center;
	color: #374151;
}

/* -------- Logo step -------- */
.atx-logo-mode-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.atx-logo-mode-btn {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 1.25rem 1rem;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: inherit;
	color: #374151;
	transition: all 0.15s;
	position: relative;
}

.atx-logo-mode-btn:hover {
	border-color: #1E3A8A;
	background: #f5f7ff;
}

.atx-logo-mode-btn.selected {
	border-color: #1E3A8A;
	background: #1E3A8A;
	color: #fff;
}

.atx-logo-upload-btn {
	background: linear-gradient(135deg, #1E3A8A, #2563eb);
	color: #fff;
	border-color: #1E3A8A;
}

.atx-logo-upload-btn:hover {
	background: linear-gradient(135deg, #1E3A8A, #1d4ed8);
}

.atx-logo-pos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.atx-logo-pos-btn {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 6px;
	padding: 0.625rem;
	cursor: pointer;
	font-size: 0.8125rem;
	font-weight: 500;
	font-family: inherit;
	color: #374151;
	transition: all 0.15s;
}

.atx-logo-pos-btn:hover {
	border-color: #1E3A8A;
	background: #f5f7ff;
}

.atx-logo-pos-btn.selected {
	border-color: #1E3A8A;
	background: #1E3A8A;
	color: #fff;
}

/* -------- Quote summary + form -------- */
.atx-summary {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
}

.atx-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 0.375rem 0;
	border-bottom: 1px solid #e5e7eb;
	font-size: 0.875rem;
}

.atx-summary-row:last-child {
	border-bottom: none;
}

.atx-summary-label {
	color: #6b7280;
	font-weight: 500;
}

.atx-summary-value {
	color: #111827;
	font-weight: 600;
	text-align: right;
}

.atx-quote-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

/* -------- Price card -------- */
.atx-price-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
	border: 1px solid #86efac;
	border-radius: 8px;
	padding: 1rem;
	margin: 1rem 0;
	text-align: center;
}

.atx-price-label {
	font-size: 0.8125rem;
	color: #166534;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.atx-price-value {
	font-size: 2rem;
	font-weight: 800;
	color: #14532d;
	line-height: 1.2;
	margin: 0.25rem 0;
}

.atx-price-note {
	font-size: 0.75rem;
	color: #166534;
	opacity: 0.85;
}

/* -------- Footer / buttons -------- */
.atx-wizard-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
	margin-top: auto;
}

.atx-cta {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	border: none;
	font-family: inherit;
	transition: all 0.15s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.atx-cta.primary {
	background: linear-gradient(135deg, #B91C1C, #DC2626);
	color: #fff;
	box-shadow: 0 1px 2px rgba(185,28,28,0.25);
}

.atx-cta.primary:hover:not(:disabled) {
	background: linear-gradient(135deg, #991B1B, #B91C1C);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(185,28,28,0.3);
}

.atx-cta.primary:disabled {
	background: #93c5fd;
	cursor: wait;
}

.atx-cta.secondary {
	background: #fff;
	color: #1E3A8A;
	border: 2px solid #1E3A8A;
}

.atx-cta.secondary:hover:not(:disabled) {
	background: #f5f7ff;
}

.atx-cta.ghost {
	background: transparent;
	color: #6b7280;
	border: 1px solid transparent;
}

.atx-cta.ghost:hover:not(:disabled) {
	color: #111827;
	background: #f3f4f6;
}

/* -------- Success -------- */
.atx-wizard-success {
	text-align: center;
	padding: 3rem 2rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.atx-success-check {
	width: 80px;
	height: 80px;
	line-height: 80px;
	background: #dcfce7;
	color: #166534;
	font-size: 2.5rem;
	font-weight: 700;
	border-radius: 50%;
	margin: 0 auto 1rem;
}

.atx-wizard-success h2 {
	font-size: 1.5rem;
	margin: 0 0 0.5rem;
	color: #111827;
}

.atx-wizard-success p {
	color: #6b7280;
	margin: 0.25rem 0;
}

.atx-success-photos {
	background: #f5f7ff;
	border: 1px solid #dbeafe;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	color: #1E3A8A !important;
	margin: 1rem auto;
	max-width: 480px;
	font-size: 0.9375rem;
}

.atx-success-next {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

.atx-success-next h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 0.75rem;
}

.atx-success-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	max-width: 720px;
	margin: 0 auto;
}

@media (max-width: 640px) {
	.atx-success-links { grid-template-columns: 1fr; }
}

.atx-success-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.75rem;
	text-align: left;
	text-decoration: none;
	color: inherit !important;
	transition: all 0.15s;
}

.atx-success-card:hover {
	border-color: #1E3A8A;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.atx-success-card strong {
	color: #1E3A8A;
	font-size: 0.9375rem;
	font-weight: 700;
	margin-bottom: 0.125rem;
}

.atx-success-card span {
	font-size: 0.8125rem;
	color: #6b7280;
	line-height: 1.4;
}

/* -------- Mobile: compact stepper progress bar -------- */
@media (max-width: 640px) {
	.atx-wizard-stepper {
		display: none;
	}
	.atx-wizard-stepper.atx-mobile-bar {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0.5rem 0.75rem;
		background: #f3f4f6;
		border-radius: 100px;
		margin-bottom: 0.75rem;
	}
	.atx-mobile-bar .atx-mobile-label {
		flex-shrink: 0;
		font-size: 0.8125rem;
		font-weight: 600;
		color: #1E3A8A;
	}
	.atx-mobile-bar .atx-mobile-progress {
		flex: 1;
		height: 4px;
		background: #e5e7eb;
		border-radius: 2px;
		overflow: hidden;
	}
	.atx-mobile-bar .atx-mobile-progress-fill {
		height: 100%;
		background: linear-gradient(90deg, #1E3A8A, #2563eb);
		transition: width 0.25s ease;
	}
}

/* -------- Spinner (used by cart button) -------- */
.atx-designer-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	margin-right: 0.5rem;
	animation: atx-spin 0.8s linear infinite;
}

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

/* -------- Cart button wrap -------- */
.atx-cart-button {
	width: 100%;
	margin-top: 0.75rem;
}

/* -------- Coupon box -------- */
.atx-coupon-box {
	background: #fffbeb;
	border: 1px dashed #fcd34d;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	margin: 1rem 0;
}
.atx-coupon-box label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #92400e;
	margin-bottom: 0.25rem;
}
.atx-coupon-box input[type="text"] {
	width: 100%;
	padding: 0.5rem 0.625rem;
	border: 1px solid #fcd34d;
	border-radius: 6px;
	font-size: 0.9375rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: #fff;
	font-family: monospace;
}
.atx-coupon-hint {
	font-size: 0.8125rem;
	margin-top: 0.375rem;
	min-height: 1em;
}
.atx-coupon-valid { color: #065f46; font-weight: 700; }
.atx-coupon-invalid { color: #b91c1c; }

/* -------- Quote utility row (save-email + PDF) -------- */
.atx-quote-utility-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin: 0.75rem 0 1rem;
	padding: 0.75rem;
	background: #f0f9ff;
	border: 1px dashed #bfdbfe;
	border-radius: 8px;
}
.atx-util-btn {
	font-size: 0.875rem !important;
	padding: 0.5rem 0.75rem !important;
	color: #1E3A8A !important;
	background: #fff !important;
}
.atx-util-btn:hover {
	background: #f5f7ff !important;
	color: #1E3A8A !important;
	border-color: #1E3A8A !important;
}
@media (max-width: 640px) {
	.atx-quote-utility-row { grid-template-columns: 1fr; }
}

/* -------- Header / nav CTA injected by nav filter -------- */
.menu-item.atx-design-cta a,
a.atx-design-cta {
	color: #B91C1C;
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* -------- Texture step -------- */
.atx-texture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
}
.atx-texture-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.5rem;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: all 0.15s;
}
.atx-texture-card:hover {
	border-color: #1E3A8A;
	transform: translateY(-1px);
}
.atx-texture-card.selected {
	border-color: #1E3A8A;
	box-shadow: 0 0 0 3px rgba(30,58,138,0.15);
	background: #f5f7ff;
}
.atx-texture-swatch {
	width: 100%;
	height: 120px;
	border-radius: 4px;
	margin-bottom: 0.5rem;
	overflow: hidden;
}
.atx-texture-name {
	font-weight: 700;
	font-size: 0.95rem;
	color: #111827;
	margin-bottom: 0.25rem;
}
.atx-texture-desc {
	font-size: 0.8125rem;
	color: #6b7280;
	line-height: 1.4;
}

/* -------- Wall mats step -------- */
.atx-walls-empty {
	background: #f9fafb;
	border: 1px dashed #d1d5db;
	border-radius: 8px;
	padding: 1.25rem;
	color: #6b7280;
	font-size: 0.875rem;
	text-align: center;
	margin-bottom: 0.75rem;
}
.atx-walls-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}
.atx-wall-row {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.75rem;
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 0.75rem;
	align-items: end;
}
.atx-wall-label-input {
	grid-column: 1 / 2;
	padding: 0.5rem 0.625rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 0.875rem;
	font-family: inherit;
	font-weight: 600;
}
.atx-wall-dims {
	display: grid;
	grid-template-columns: auto auto;
	gap: 0.5rem;
}
.atx-wall-field {
	margin: 0;
	width: 90px;
}
.atx-wall-field input {
	width: 90px !important;
	padding: 0.5rem 0.5rem !important;
}
.atx-wall-remove {
	background: transparent;
	color: #b91c1c;
	border: 1px solid #fecaca;
	border-radius: 6px;
	padding: 0.5rem 0.75rem;
	cursor: pointer;
	font-size: 0.8125rem;
	font-weight: 600;
	font-family: inherit;
	transition: all 0.15s;
	height: fit-content;
}
.atx-wall-remove:hover {
	background: #fef2f2;
}
.atx-add-wall-btn {
	width: 100%;
	margin-bottom: 0.75rem;
}
.atx-walls-subtotal {
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	background: #f5f7ff;
	border-radius: 6px;
	font-size: 0.9375rem;
	color: #1E3A8A;
	margin-bottom: 0.5rem;
}
.atx-walls-subtotal strong {
	font-weight: 700;
}
@media (max-width: 640px) {
	.atx-wall-row {
		grid-template-columns: 1fr;
	}
	.atx-wall-field, .atx-wall-field input {
		width: 100% !important;
	}
	.atx-wall-dims {
		grid-template-columns: 1fr 1fr;
	}
}

/* -------- Space photos (quote step) -------- */
.atx-photos-box {
	background: #f9fafb;
	border: 2px dashed #d1d5db;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	transition: background 0.15s, border-color 0.15s;
	position: relative;
}
.atx-photos-box-active {
	background: #eff6ff;
	border-color: #1E3A8A;
}
.atx-photos-box::before {
	content: "";
	display: none;
}
.atx-photos-box-active::after {
	content: "📥 Drop to upload";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(239, 246, 255, 0.9);
	border-radius: 8px;
	font-weight: 700;
	color: #1E3A8A;
	pointer-events: none;
}
.atx-photos-box .atx-wizard-sub-title {
	margin-top: 0;
}
.atx-photos-hint {
	font-size: 0.8125rem;
	color: #6b7280;
	margin: 0 0 0.75rem;
	line-height: 1.4;
}
.atx-photos-trigger {
	width: auto;
}
.atx-photos-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 0.5rem;
	margin-top: 0.75rem;
}
.atx-photo-cell {
	position: relative;
	aspect-ratio: 1;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
}
.atx-photo-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.atx-photo-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	line-height: 1;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,0.7);
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.atx-photo-remove:hover {
	background: #b91c1c;
}

/* -------- Gym flooring style picker -------- */
.atx-gym-style-wrap {
	margin-bottom: 1rem;
}
.atx-gym-style-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}
@media (max-width: 640px) {
	.atx-gym-style-grid {
		grid-template-columns: 1fr;
	}
}
.atx-gym-style-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.75rem;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: all 0.15s;
}
.atx-gym-style-card:hover {
	border-color: #1E3A8A;
	background: #f5f7ff;
}
.atx-gym-style-card.selected {
	border-color: #1E3A8A;
	background: #1E3A8A;
	color: #fff;
}
.atx-gym-style-title {
	font-weight: 700;
	font-size: 0.9375rem;
	margin-bottom: 0.25rem;
}
.atx-gym-style-desc {
	font-size: 0.8125rem;
	opacity: 0.85;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}
.atx-gym-style-meta {
	display: flex;
	gap: 0.75rem;
	font-size: 0.75rem;
	opacity: 0.85;
	flex-wrap: wrap;
}
.atx-gym-style-sizes {
	background: #f5f7ff;
	border: 1px solid #dbeafe;
	border-radius: 6px;
	padding: 0.625rem 0.75rem;
	font-size: 0.8125rem;
	color: #1E3A8A;
	margin-bottom: 0.75rem;
	line-height: 1.5;
}

/* -------- Factory note (Drop In Mats differentiator) -------- */
.atx-factory-note {
	background: #fef3c7;
	border: 1px solid #fbbf24;
	border-left: 4px solid #f59e0b;
	border-radius: 6px;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: #78350f;
	margin-bottom: 1rem;
	line-height: 1.5;
}
.atx-factory-note strong {
	color: #78350f;
}

/* -------- Delivery address -------- */
.atx-address-box {
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
}
.atx-address-box .atx-wizard-sub-title {
	margin-top: 0;
	color: #92400e;
}
.atx-address-box .atx-wizard-hint {
	color: #92400e;
	background: transparent;
	padding: 0;
	margin: 0 0 0.75rem;
}
.atx-address-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 0.5rem;
}
.atx-address-grid .atx-field {
	margin-bottom: 0.5rem;
}
.atx-address-grid .atx-field:nth-child(1) { grid-column: 1 / 2; }
.atx-address-grid .atx-field:nth-child(2) { grid-column: 2 / 3; }
.atx-address-grid .atx-field:nth-child(3) { grid-column: 1 / 2; }
.atx-address-grid .atx-field:nth-child(4) { grid-column: 2 / 3; }
.atx-address-grid .atx-field:nth-child(5) { grid-column: 1 / 2; }
.atx-address-grid .atx-field:nth-child(6) { grid-column: 2 / 3; }
@media (max-width: 640px) {
	.atx-address-grid {
		grid-template-columns: 1fr;
	}
	.atx-address-grid .atx-field:nth-child(n) { grid-column: 1 / 2; }
}
