:root {
	--txexp-products-navy: #1a2b5c;
	--txexp-products-red: #c8102e;
	--txexp-products-blue: #2e4a8a;
	--txexp-products-ink: #242629;
	--txexp-products-muted: #687082;
	--txexp-products-bg: #f4f4f0;
	--txexp-products-card: #ffffff;
	--txexp-products-line: rgba(26, 43, 92, 0.14);
}

.txexp-products {
	background: var(--txexp-products-bg);
	color: var(--txexp-products-ink);
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.txexp-products * {
	box-sizing: border-box;
}

.txexp-products__container {
	width: min(100% - 40px, 1180px);
	margin-inline: auto;
}

.txexp-products__hero {
	padding: clamp(72px, 10vw, 124px) 0 clamp(44px, 6vw, 72px);
	background: linear-gradient(135deg, rgba(46, 74, 138, 0.34), transparent 44%), var(--txexp-products-navy);
	color: #fff;
}

.txexp-products__hero h1,
.txexp-product-single h1 {
	max-width: 820px;
	margin: 0 0 18px;
	font-size: clamp(40px, 5.4vw, 68px);
	line-height: 1.03;
	letter-spacing: 0;
}

.txexp-products__hero p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 18px;
	line-height: 1.7;
}

.txexp-products__eyebrow {
	margin: 0 0 14px;
	color: #f1a6b2;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.txexp-products__section {
	padding: clamp(48px, 7vw, 84px) 0;
}

.txexp-products__section--muted {
	background: #fff;
}

.txexp-products__filters {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	align-items: end;
	margin-bottom: 34px;
	padding: 18px;
	border: 1px solid var(--txexp-products-line);
	border-radius: 8px;
	background: #fff;
}

.txexp-products__filters label,
.txexp-product-request-box label,
.txexp-request-form label {
	display: grid;
	gap: 7px;
	color: var(--txexp-products-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.txexp-products__filters select,
.txexp-product-request-box input,
.txexp-product-request-box textarea,
.txexp-request-form input,
.txexp-request-form textarea {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--txexp-products-line);
	border-radius: 6px;
	background: #fff;
	color: var(--txexp-products-ink);
	font: inherit;
	padding: 10px 12px;
}

.txexp-products__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 0;
	border-radius: 6px;
	background: var(--txexp-products-red);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	padding: 13px 18px;
}

.txexp-products__button--quiet {
	border: 1px solid var(--txexp-products-line);
	background: #fff;
	color: var(--txexp-products-navy);
}

.txexp-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.txexp-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid var(--txexp-products-line);
	border-radius: 8px;
	background: var(--txexp-products-card);
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(26, 43, 92, 0.08);
}

.txexp-product-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(135deg, rgba(26, 43, 92, 0.08), transparent),
		repeating-linear-gradient(90deg, rgba(26, 43, 92, 0.08) 0 1px, transparent 1px 34px),
		#e3e5df;
}

.txexp-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.txexp-product-single__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.txexp-product-card__body {
	display: grid;
	gap: 14px;
	padding: 22px;
	flex: 1;
}

.txexp-product-card__meta {
	margin: 0;
	color: var(--txexp-products-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.txexp-product-card h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.16;
	letter-spacing: 0;
}

.txexp-product-card h2 a,
.txexp-product-card__actions a,
.txexp-products__back {
	color: var(--txexp-products-navy);
	text-decoration: none;
}

.txexp-product-card p {
	margin: 0;
	color: var(--txexp-products-muted);
	line-height: 1.65;
}

.txexp-product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: auto;
}

.txexp-add-to-cart,
.txexp-remove-cart-item {
	border: 0;
	background: transparent;
	color: var(--txexp-products-red);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	padding: 0;
}

.txexp-product-single__grid,
.txexp-product-specs,
.txexp-request-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
}

.txexp-products__back {
	display: inline-flex;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 800;
}

.txexp-products__back::before {
	content: "<";
	margin-right: 8px;
}

.txexp-product-single__excerpt {
	max-width: 720px;
	color: var(--txexp-products-muted);
	font-size: 18px;
	line-height: 1.7;
}

.txexp-product-single__content {
	line-height: 1.75;
}

.txexp-product-single__panel,
.txexp-request-form,
.txexp-request-cart {
	border: 1px solid var(--txexp-products-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 16px rgba(26, 43, 92, 0.08);
}

.txexp-product-single__panel {
	overflow: hidden;
}

.txexp-product-single__image {
	aspect-ratio: 4 / 3;
	background: #e3e5df;
}

.txexp-product-request-box,
.txexp-request-form {
	display: grid;
	gap: 16px;
	padding: 22px;
}

.txexp-product-request-box p {
	margin: 0;
}

.txexp-product-request-box__check {
	display: flex !important;
	grid-template-columns: none;
	align-items: center;
	gap: 10px;
	color: var(--txexp-products-ink) !important;
	font-size: 14px !important;
	text-transform: none !important;
}

.txexp-product-request-box__check input {
	width: auto;
	min-height: 0;
}

.txexp-product-specs h2 {
	margin-top: 0;
	color: var(--txexp-products-navy);
}

.txexp-product-specs dl {
	display: grid;
	gap: 12px;
	margin: 0;
}

.txexp-product-specs dl div,
.txexp-request-cart__item {
	padding: 14px 0;
	border-bottom: 1px solid var(--txexp-products-line);
}

.txexp-product-specs dt {
	color: var(--txexp-products-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.txexp-product-specs dd {
	margin: 4px 0 0;
}

.txexp-request-cart {
	padding: 22px;
}

.txexp-request-cart__item:first-child {
	padding-top: 0;
}

.txexp-request-cart__item h2 {
	margin: 0 0 8px;
	font-size: 20px;
}

.txexp-request-cart__item p {
	margin: 0 0 10px;
	color: var(--txexp-products-muted);
}

.txexp-request-form__notice {
	margin: 0;
	padding: 12px 14px;
	border-radius: 6px;
	background: rgba(46, 138, 86, 0.1);
	color: #1b6b43;
	font-weight: 800;
}

.txexp-request-form__notice--error {
	background: rgba(200, 16, 46, 0.1);
	color: var(--txexp-products-red);
}

@media (max-width: 980px) {
	.txexp-products__filters,
	.txexp-products__grid,
	.txexp-product-single__grid,
	.txexp-product-specs,
	.txexp-request-page__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	.txexp-products__container {
		width: min(100% - 28px, 1180px);
	}

	.txexp-products__filters,
	.txexp-products__grid,
	.txexp-product-single__grid,
	.txexp-product-specs,
	.txexp-request-page__grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Single-product redesign — Variation C (builder band)
   ========================================================================== */

.txp-single {
	--txp-navy:        #1a2b5c;
	--txp-red:         #c8102e;
	--txp-red-deep:    #a40d24;
	--txp-blue:        #2e4a8a;
	--txp-ink:         #242629;
	--txp-muted:       #687082;
	--txp-muted-soft:  #8a909c;
	--txp-bg:          #f4f4f0;
	--txp-card:        #ffffff;
	--txp-line:        rgba(26, 43, 92, 0.14);
	--txp-line-strong: rgba(26, 43, 92, 0.22);
	--txp-tint:        rgba(26, 43, 92, 0.04);
	--txp-radius:      6px;

	font-family: "Geist", "DM Sans", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	color: var(--txp-ink);
	background: var(--txp-bg);
	-webkit-font-smoothing: antialiased;
}

.txp-single * { box-sizing: border-box; }
.txp-single button { font: inherit; cursor: pointer; }
.txp-single input,
.txp-single textarea { font: inherit; color: var(--txp-ink); }

/* Wrapper */
.txp-wrap {
	max-width: 1350px;
	margin-inline: auto;
	padding: 20px 32px 80px;
}

/* Utility bar */
.txp-utility {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--txp-line);
	margin-bottom: 24px;
}

/* Breadcrumbs */
.txp-crumbs {
	display: flex;
	gap: 6px;
	align-items: center;
}
.txp-crumbs a,
.txp-crumbs span { color: var(--txp-muted); text-decoration: none; }
.txp-crumbs .sep { color: var(--txp-line-strong); }
.txp-crumbs .here { color: var(--txp-ink); }

/* Type primitives */
.txp-mono {
	font-family: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txp-muted);
	font-weight: 500;
}
.txp-mono-tight {
	font-family: "Geist Mono", ui-monospace, monospace;
	font-size: 12px;
	color: var(--txp-muted);
}
.txp-eyebrow { color: var(--txp-blue); }
.txp-h1 {
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--txp-navy);
	font-size: 52px;
	line-height: 1.02;
	margin: 12px 0 0;
}
.txp-h2 {
	font-weight: 500;
	letter-spacing: -0.012em;
	color: var(--txp-navy);
	font-size: 22px;
	line-height: 1.15;
	margin: 0;
}
.txp-excerpt {
	color: var(--txp-muted);
	font-size: 16px;
	line-height: 1.55;
	max-width: 56ch;
	margin: 0;
}
.txp-excerpt-sm {
	color: var(--txp-muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

/* Status pill */
.txp-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: "Geist Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txp-navy);
}
.txp-status .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2f8f5e;
	box-shadow: 0 0 0 3px rgba(47, 143, 94, 0.14);
	flex: 0 0 auto;
}

/* Hairline */
.txp-rule {
	height: 1px;
	background: var(--txp-line);
	border: 0;
	margin: 16px 0 12px;
}

/* Title band */
.txp-title-band {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: end;
	padding: 8px 0 24px;
	border-bottom: 1px solid var(--txp-line);
	margin-bottom: 32px;
}
.txp-title-band__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
}

/* Three-column body */
.txp-body-grid {
	display: grid;
	grid-template-columns: 240px 1fr 280px;
	gap: 32px;
}

/* Meta stack (left column) */
.txp-meta-stack {
	border-top: 1px solid var(--txp-line-strong);
}
.txp-meta-stack__row {
	padding: 11px 0;
	border-bottom: 1px solid var(--txp-line);
}
.txp-meta-stack__row .txp-mono {
	margin-bottom: 3px;
}

/* Gallery (center column) */
.txp-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
.txp-gallery__main {
	aspect-ratio: 1 / 1;
	border-radius: var(--txp-radius);
	overflow: hidden;
	background: rgba(26, 43, 92, 0.04);
}
.txp-gallery__main-button {
	width: 100%;
	height: 100%;
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}
.txp-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.txp-gallery__rail {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
}
.txp-gallery__thumb {
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid transparent;
	background: rgba(26, 43, 92, 0.04);
	padding: 0;
	cursor: pointer;
}
.txp-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.txp-gallery__thumb:hover,
.txp-gallery__thumb:focus-visible,
.txp-gallery__thumb.is-active {
	border-color: var(--txp-red);
}
.txp-gallery__placeholder {
	background-color: rgba(26, 43, 92, 0.04);
	background-image: repeating-linear-gradient(
		135deg,
		rgba(26, 43, 92, 0.075) 0 1px,
		transparent 1px 14px
	);
}

.txp-lightbox[hidden] {
	display: none;
}
.txp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	grid-template-columns: 72px 1fr 72px;
	align-items: center;
	gap: 16px;
	padding: 32px;
	background: rgba(9, 19, 42, 0.92);
}
.txp-lightbox__figure {
	margin: 0;
	min-width: 0;
	display: grid;
	gap: 12px;
	justify-items: center;
}
.txp-lightbox__figure img {
	max-width: 100%;
	max-height: calc(100vh - 120px);
	object-fit: contain;
	display: block;
	background: #fff;
}
.txp-lightbox__figure figcaption {
	font-family: "Geist Mono", monospace;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.72);
}
.txp-lightbox__close,
.txp-lightbox__nav {
	border: 0;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.txp-lightbox__close:hover,
.txp-lightbox__nav:hover,
.txp-lightbox__close:focus-visible,
.txp-lightbox__nav:focus-visible {
	background: var(--txp-red);
}
.txp-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	font-size: 28px;
	line-height: 1;
}
.txp-lightbox__nav {
	width: 56px;
	height: 72px;
	border-radius: var(--txp-radius);
	font-size: 44px;
	line-height: 1;
	justify-self: center;
}

/* Request stack (right column) */
.txp-request-stack {
	border-top: 1px solid var(--txp-line-strong);
	padding-top: 16px;
	display: grid;
	gap: 14px;
	align-content: start;
}
.txp-request-stack__label {
	color: var(--txp-navy);
	margin-bottom: 0;
}
.txp-request-stack__note {
	line-height: 1.6;
}

/* Field label */
.txp-field-label {
	font-family: "Geist Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txp-muted);
	display: block;
	margin-bottom: 0;
}

/* Stepper */
.txp-stepper-row {
	display: flex;
	gap: 12px;
	align-items: center;
}
.txp-stepper {
	display: inline-grid;
	grid-template-columns: 36px 1fr 36px;
	align-items: stretch;
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	background: var(--txp-card);
	height: 40px;
	width: 140px;
	overflow: hidden;
}
.txp-stepper__btn {
	border: 0;
	background: transparent;
	color: var(--txp-navy);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.txp-stepper__btn:hover { background: var(--txp-tint); }
.txp-stepper__input {
	border: 0;
	background: transparent;
	text-align: center;
	font-size: 15px;
	color: var(--txp-ink);
	width: 100%;
	outline: none;
	border-left: 1px solid var(--txp-line);
	border-right: 1px solid var(--txp-line);
	-moz-appearance: textfield;
}
.txp-stepper__input::-webkit-outer-spin-button,
.txp-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; }
.txp-suffix {
	font-family: "Geist Mono", monospace;
	font-size: 12px;
	color: var(--txp-muted);
}

/* Toggle */
.txp-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	background: var(--txp-card);
	font-size: 14px;
	color: var(--txp-ink);
	cursor: pointer;
	user-select: none;
	width: 100%;
}
.txp-toggle input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}
.txp-toggle__check {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	border: 1.5px solid var(--txp-line-strong);
	background: var(--txp-card);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: transparent;
}
.txp-toggle:has(input:checked) {
	border-color: var(--txp-navy);
	background: rgba(26, 43, 92, 0.04);
}
.txp-toggle:has(input:checked) .txp-toggle__check {
	background: var(--txp-navy);
	border-color: var(--txp-navy);
	color: #fff;
}
.txp-toggle__meta {
	color: var(--txp-muted);
	font-size: 12px;
	margin-left: auto;
}

/* Textarea */
.txp-textarea {
	width: 100%;
	min-height: 72px;
	padding: 10px 12px;
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	background: var(--txp-card);
	color: var(--txp-ink);
	font-size: 14px;
	line-height: 1.45;
	resize: none;
	outline: none;
}
.txp-textarea::placeholder { color: var(--txp-muted-soft); }

/* Buttons */
.txp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 18px;
	height: 44px;
	border: 1px solid transparent;
	border-radius: var(--txp-radius);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.005em;
	background: var(--txp-card);
	color: var(--txp-ink);
	white-space: nowrap;
	text-decoration: none;
}
.txp-btn .arrow {
	font-family: "Geist Mono", monospace;
	font-size: 14px;
}
.txp-btn--primary {
	background: var(--txp-red);
	color: #fff;
	border-color: var(--txp-red);
}
.txp-btn--primary:hover { background: var(--txp-red-deep); border-color: var(--txp-red-deep); }
.txp-btn--outline {
	background: var(--txp-card);
	border-color: var(--txp-line-strong);
	color: var(--txp-navy);
}
.txp-btn--outline:hover { background: var(--txp-tint); }
.txp-btn--lg { height: 48px; font-size: 15px; padding: 0 22px; }
.txp-btn--block { width: 100%; }

/* Editorial sections (below fold) */
.txp-editorial {
	margin-top: 64px;
	padding-top: 24px;
	border-top: 1px solid var(--txp-line-strong);
}
.txp-editorial--s2 {
	margin-top: 40px;
	border-top: 0;
	padding-top: 0;
}
.txp-editorial__grid {
	display: grid;
	grid-template-columns: 240px 1fr 1fr;
	gap: 32px;
}
.txp-editorial__label {
	color: var(--txp-navy);
	margin-bottom: 8px;
}
.txp-editorial__col-label {
	color: var(--txp-navy);
	margin-bottom: 12px;
}

/* Numbered feature/application list */
.txp-num-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.txp-num-list li {
	display: grid;
	grid-template-columns: 32px 1fr;
	padding: 12px 0;
	border-top: 1px solid var(--txp-line);
}
.txp-num-list li:last-child {
	border-bottom: 1px solid var(--txp-line);
}

/* --- Responsive --- */
@media (max-width: 1060px) {
	.txp-body-grid {
		grid-template-columns: 200px 1fr 260px;
		gap: 24px;
	}
	.txp-h1 { font-size: 40px; }
}

@media (max-width: 860px) {
	.txp-title-band {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.txp-body-grid {
		grid-template-columns: 1fr;
	}
	.txp-meta-stack {
		display: grid;
		grid-template-columns: 1fr 1fr;
		border-top: 0;
	}
	.txp-meta-stack__row {
		padding: 12px;
		border: 1px solid var(--txp-line);
		margin: -1px 0 0 -1px;
	}
	.txp-gallery {
		grid-template-columns: 1fr;
	}
	.txp-gallery__rail {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.txp-gallery__main {
		aspect-ratio: 4 / 3;
	}
	.txp-editorial__grid {
		grid-template-columns: 1fr 1fr;
	}
	.txp-editorial__grid > :first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.txp-wrap {
		padding: 16px 18px 60px;
	}
	.txp-h1 { font-size: 32px; }
	.txp-meta-stack {
		grid-template-columns: 1fr 1fr;
	}
	.txp-editorial__grid {
		grid-template-columns: 1fr;
	}
	.txp-lightbox {
		grid-template-columns: 1fr;
		padding: 18px;
	}
	.txp-lightbox__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 44px;
		height: 56px;
	}
	.txp-lightbox__nav.prev { left: 12px; }
	.txp-lightbox__nav.next { right: 12px; }
}

/* ==========================================================================
   Archive — sidebar + grid
   ========================================================================== */

.txp-archive {
	--txp-navy:        #1a2b5c;
	--txp-red:         #c8102e;
	--txp-red-deep:    #a40d24;
	--txp-blue:        #2e4a8a;
	--txp-ink:         #242629;
	--txp-muted:       #687082;
	--txp-muted-soft:  #8a909c;
	--txp-bg:          #f4f4f0;
	--txp-card:        #ffffff;
	--txp-line:        rgba(26, 43, 92, 0.14);
	--txp-line-strong: rgba(26, 43, 92, 0.22);
	--txp-tint:        rgba(26, 43, 92, 0.04);
	--txp-radius:      6px;

	font-family: "Geist", "DM Sans", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	color: var(--txp-ink);
	background: var(--txp-bg);
	-webkit-font-smoothing: antialiased;
}

.txp-archive * { box-sizing: border-box; }
.txp-archive button { font: inherit; cursor: pointer; }
.txp-archive input,
.txp-archive select { font: inherit; color: var(--txp-ink); }
.txp-archive a { text-decoration: none; color: inherit; }

/* Wide wrapper for archive (slightly wider than single) */
.txp-archive-wrap {
	max-width: 1350px;
	margin-inline: auto;
	padding: 20px 32px 80px;
}

/* Reuse title band from single product */
.txp-archive .txp-title-band {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: end;
	padding: 8px 0 22px;
	border-bottom: 1px solid var(--txp-line);
	margin-bottom: 24px;
}
.txp-archive .txp-h1 {
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--txp-navy);
	font-size: 52px;
	line-height: 1.02;
	margin: 12px 0 0;
}
.txp-archive .txp-mono { font-family: "Geist Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--txp-muted); font-weight: 500; }
.txp-archive .txp-mono-tight { font-family: "Geist Mono", ui-monospace, monospace; font-size: 12px; color: var(--txp-muted); }
.txp-archive .txp-eyebrow { color: var(--txp-blue); }
.txp-archive .txp-excerpt { color: var(--txp-muted); font-size: 16px; line-height: 1.55; max-width: 56ch; margin: 0; }
.txp-archive .txp-utility { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--txp-line); margin-bottom: 24px; }
.txp-archive .txp-crumbs { display: flex; gap: 6px; align-items: center; }
.txp-archive .txp-crumbs a,
.txp-archive .txp-crumbs span { color: var(--txp-muted); }
.txp-archive .txp-crumbs .sep { color: var(--txp-line-strong); }
.txp-archive .txp-crumbs .here { color: var(--txp-ink); }

/* Two-column archive layout */
.txp-archive-body {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
}


.txp-archive-filter-toggle {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 44px;
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	background: var(--txp-card);
	color: var(--txp-navy);
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	padding: 0 12px;
	cursor: pointer;
}
.txp-archive-filter-toggle .count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--txp-navy);
	color: #fff;
	font-family: "Geist Mono", monospace;
	font-size: 11px;
}
.txp-archive-filter-toggle::after {
	content: "+";
	font-family: "Geist Mono", monospace;
	font-size: 16px;
	color: var(--txp-muted);
	margin-left: 10px;
}
.txp-archive-filter-toggle[aria-expanded="true"]::after {
	content: "-";
}
/* ---- Sidebar ---- */
.txp-archive-sidebar {
	border-right: 1px solid var(--txp-line);
	padding-right: 24px;
	align-self: start;
	position: sticky;
	top: 16px;
}

.txp-archive-search {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	background: var(--txp-card);
	padding: 0 10px;
	height: 38px;
	margin-bottom: 18px;
}
.txp-archive-search .ico { color: var(--txp-muted); font-size: 14px; flex: 0 0 auto; }
.txp-archive-search input {
	border: 0;
	outline: none;
	flex: 1;
	background: transparent;
	font-size: 13.5px;
	color: var(--txp-ink);
	min-width: 0;
}
.txp-archive-search input::placeholder { color: var(--txp-muted-soft); }

.txp-archive-active-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.txp-archive-active-row .clear {
	font-family: "Geist Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txp-muted);
}
.txp-archive-active-row .clear:hover { color: var(--txp-red); }

.txp-archive-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding-bottom: 18px;
	margin-bottom: 6px;
	border-bottom: 1px solid var(--txp-line);
}
.txp-archive-chips .chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 8px 5px 10px;
	background: rgba(26, 43, 92, 0.06);
	border: 1px solid var(--txp-line);
	border-radius: 4px;
	color: var(--txp-navy);
	font-size: 12px;
}
.txp-archive-chips .chip .x { color: var(--txp-muted); font-size: 14px; line-height: 1; }

/* Filter groups */
.txp-archive-fgroup {
	border-bottom: 1px solid var(--txp-line);
	padding: 14px 0;
}
.txp-archive-fgroup .fgroup-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
}
.txp-archive-fgroup .fgroup-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.txp-archive-fgroup .fterm {
	display: grid;
	grid-template-columns: 14px 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 5px 0;
	font-size: 13.5px;
	color: inherit;
	text-decoration: none;
}
.txp-archive-fgroup .fterm:hover .flabel { color: var(--txp-navy); }
.txp-archive-fgroup .fcheck {
	width: 14px;
	height: 14px;
	border: 1.5px solid var(--txp-line-strong);
	border-radius: 3px;
	background: var(--txp-card);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex: 0 0 auto;
}
.txp-archive-fgroup .fcheck.on {
	background: var(--txp-navy);
	border-color: var(--txp-navy);
}
.txp-archive-fgroup .flabel { color: var(--txp-ink); line-height: 1.3; }
.txp-archive-fgroup .flabel.on { color: var(--txp-navy); font-weight: 500; }
.txp-archive-fgroup .fcount {
	font-family: "Geist Mono", monospace;
	font-size: 11px;
	color: var(--txp-muted);
}

/* ---- Toolbar ---- */
.txp-archive-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--txp-line);
	margin-bottom: 18px;
}
.txp-archive-toolbar .count {
	font-size: 14px;
	color: var(--txp-muted);
}
.txp-archive-toolbar .count strong { color: var(--txp-ink); font-weight: 500; }
.txp-archive-toolbar .tools {
	display: flex;
	align-items: center;
	gap: 12px;
}
.txp-archive-toolbar .sort {
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	background: var(--txp-card);
	padding: 7px 28px 7px 10px;
	font-size: 13px;
	color: var(--txp-ink);
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--txp-muted) 50%),
		linear-gradient(135deg, var(--txp-muted) 50%, transparent 50%);
	background-position: calc(100% - 14px) 14px, calc(100% - 9px) 14px;
	background-size: 5px 5px;
	background-repeat: no-repeat;
	outline: none;
	cursor: pointer;
}
.txp-archive-toolbar .viewtoggle {
	display: inline-flex;
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	overflow: hidden;
}
.txp-archive-toolbar .viewtoggle button {
	border: 0;
	background: var(--txp-card);
	padding: 7px 10px;
	color: var(--txp-muted);
	font-size: 13px;
}
.txp-archive-toolbar .viewtoggle button.on {
	background: var(--txp-navy);
	color: #fff;
}
.txp-archive-toolbar .viewtoggle button + button {
	border-left: 1px solid var(--txp-line);
}

/* ---- Product card grid ---- */
.txp-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.txp-archive-card {
	display: flex;
	flex-direction: column;
	background: var(--txp-card);
	border: 1px solid var(--txp-line);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.15s;
}
.txp-archive-card:hover { border-color: var(--txp-line-strong); }
.txp-archive-card:hover .quick-add { opacity: 1; transform: translateY(0); }

.txp-archive-card .card-link {
	display: block;
	text-decoration: none;
}
.txp-archive-card .img {
	position: relative;
	border-bottom: 1px solid var(--txp-line);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: rgba(26, 43, 92, 0.04);
	background-image: repeating-linear-gradient(
		135deg,
		rgba(26, 43, 92, 0.075) 0 1px,
		transparent 1px 14px
	);
}
.txp-archive-card .card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.txp-archive-card .card-img-placeholder {
	width: 100%;
	height: 100%;
}
.txp-archive-card .quick-add {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	height: 36px;
	border: 0;
	border-radius: var(--txp-radius);
	background: var(--txp-navy);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.15s, transform 0.15s;
	width: auto;
}

.txp-archive-card .card-body {
	display: block;
	padding: 14px 14px 12px;
	text-decoration: none;
	color: inherit;
	flex: 1;
}
.txp-archive-card .title-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}
.txp-archive-card .card-title {
	margin: 0;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--txp-navy);
	font-size: 15.5px;
	line-height: 1.25;
}
.txp-archive-card .card-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 8px;
}
.txp-archive-card .meta-item {
	font-family: "Geist Mono", monospace;
	font-size: 11px;
	color: var(--txp-muted);
	letter-spacing: 0.02em;
}
.txp-archive-card .card-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid var(--txp-line);
}
.txp-archive-card .card-unit {
	font-family: "Geist Mono", monospace;
	font-size: 11px;
	color: var(--txp-muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Stock status pill (scoped to archive) */
.txp-archive .txp-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: "Geist Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txp-navy);
}
.txp-archive .txp-status .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2f8f5e;
	box-shadow: 0 0 0 3px rgba(47, 143, 94, 0.14);
	flex: 0 0 auto;
}
.txp-archive .txp-status.low .dot {
	background: #c87a10;
	box-shadow: 0 0 0 3px rgba(200, 122, 16, 0.14);
}
.txp-archive .txp-status.mto .dot {
	background: var(--txp-muted);
	box-shadow: 0 0 0 3px rgba(104, 112, 130, 0.14);
}

/* ---- Archive footer / pagination ---- */
.txp-archive-foot {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--txp-line);
}
.txp-archive-foot__pager .page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.txp-archive-foot__pager .page-numbers li a,
.txp-archive-foot__pager .page-numbers li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	background: var(--txp-card);
	color: var(--txp-navy);
	font-size: 13px;
	text-decoration: none;
}
.txp-archive-foot__pager .page-numbers li span.current {
	background: var(--txp-navy);
	color: #fff;
	border-color: var(--txp-navy);
}
.txp-archive-foot__pager .page-numbers li a:hover {
	background: var(--txp-tint);
}

.txp-archive-empty {
	padding: 48px 0;
	color: var(--txp-muted);
	font-size: 15px;
}
.txp-archive-empty a { color: var(--txp-navy); }

/* ---- Responsive ---- */
@media (max-width: 1060px) {
	.txp-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.txp-archive-body {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.txp-archive-filter-toggle {
		display: inline-flex;
	}
	.txp-archive-sidebar {
		border-right: 0;
		border-bottom: 1px solid var(--txp-line);
		padding-right: 0;
		padding-bottom: 18px;
		position: static;
	}
	.txp-archive-sidebar:not(.is-open) {
		border-bottom: 0;
		padding-bottom: 0;
	}
	.txp-archive-sidebar:not(.is-open) .txp-archive-sidebar__inner {
		display: none;
	}
	.txp-archive-fgroup .fgroup-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.txp-archive .txp-title-band {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.txp-archive .txp-h1 { font-size: 40px; }
}

@media (max-width: 560px) {
	.txp-archive-wrap { padding: 16px 18px 60px; }
	.txp-archive .txp-h1 { font-size: 32px; }
	.txp-archive-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.txp-archive-fgroup .fgroup-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Cart / request-quote page
   ========================================================================== */

.txp-cart {
	--txp-navy:        #1a2b5c;
	--txp-red:         #c8102e;
	--txp-red-deep:    #a40d24;
	--txp-blue:        #2e4a8a;
	--txp-ink:         #242629;
	--txp-muted:       #687082;
	--txp-muted-soft:  #8a909c;
	--txp-bg:          #f4f4f0;
	--txp-card:        #ffffff;
	--txp-line:        rgba(26, 43, 92, 0.14);
	--txp-line-strong: rgba(26, 43, 92, 0.22);
	--txp-tint:        rgba(26, 43, 92, 0.04);
	--txp-radius:      6px;

	font-family: "Geist", "DM Sans", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	color: var(--txp-ink);
	background: var(--txp-bg);
	-webkit-font-smoothing: antialiased;
}

.txp-cart * { box-sizing: border-box; }
.txp-cart button { font: inherit; cursor: pointer; }
.txp-cart input,
.txp-cart select,
.txp-cart textarea { font: inherit; color: var(--txp-ink); }
.txp-cart a { text-decoration: none; color: inherit; }

/* Reuse shared type tokens */
.txp-cart .txp-mono       { font-family: "Geist Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--txp-muted); font-weight: 500; }
.txp-cart .txp-mono-tight { font-family: "Geist Mono", ui-monospace, monospace; font-size: 12px; color: var(--txp-muted); }
.txp-cart .txp-eyebrow    { color: var(--txp-blue); }
.txp-cart .txp-h1         { font-weight: 500; letter-spacing: -0.025em; color: var(--txp-navy); font-size: 52px; line-height: 1.02; margin: 12px 0 0; }
.txp-cart .txp-h2         { font-weight: 500; letter-spacing: -0.012em; color: var(--txp-navy); font-size: 20px; margin: 0; }
.txp-cart .txp-excerpt    { color: var(--txp-muted); font-size: 16px; line-height: 1.55; max-width: 56ch; margin: 0; }

/* Wrapper */
.txp-cart-wrap {
	max-width: 1280px;
	margin-inline: auto;
	padding: 20px 32px 80px;
}

/* Title band */
.txp-cart .txp-title-band {
	display: block;
	padding: 8px 0 24px;
	border-bottom: 1px solid var(--txp-line);
	margin-bottom: 32px;
}

/* Main two-column layout */
.txp-cart-layout {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
	align-items: start;
}

/* Items column */
.txp-cart-listhead {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 12px;
}

.txp-cart-list {
	border-top: 1px solid var(--txp-line-strong);
}

.txp-cart-empty-msg {
	padding: 32px 0;
	color: var(--txp-muted);
	text-align: center;
}

/* Cart row */
.txp-cart-row {
	display: grid;
	grid-template-columns: 56px 1fr auto auto;
	gap: 18px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--txp-line);
}
.txp-cart-row.dense { padding: 14px 0; }

.txp-cart-row .thumb {
	width: 56px;
	height: 56px;
	border: 1px solid var(--txp-line);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}
.txp-cart-row .swatch-placeholder {
	position: absolute;
	inset: 0;
	background-color: rgba(26, 43, 92, 0.06);
	background-image: repeating-linear-gradient(
		135deg,
		rgba(26, 43, 92, 0.08) 0 1px,
		transparent 1px 10px
	);
}

.txp-cart-row .info { min-width: 0; }
.txp-cart-row .info .txp-mono-tight { display: block; }
.txp-cart-row .info .title {
	margin: 4px 0 0;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--txp-navy);
	font-size: 16px;
	line-height: 1.25;
}
.txp-cart-row .info .title a { color: inherit; }
.txp-cart-row .info .note {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--txp-muted);
	font-style: italic;
}

.txp-cart-row .specs { display: flex; gap: 28px; }
.txp-cart-row .specs .cell .k {
	font-family: "Geist Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txp-muted);
	margin-bottom: 3px;
}
.txp-cart-row .specs .cell .v {
	font-size: 14px;
	color: var(--txp-ink);
}
.txp-cart-row .specs .cell .num { font-weight: 500; color: var(--txp-navy); }
.txp-cart-row .specs .cell .u {
	font-family: "Geist Mono", monospace;
	font-size: 12px;
	color: var(--txp-muted);
}

.txp-cart-row .actions { display: flex; align-items: center; gap: 6px; }
.txp-cart-row .actions .remove {
	width: 28px;
	height: 28px;
	border: 1px solid var(--txp-line);
	background: var(--txp-card);
	border-radius: 4px;
	font-size: 16px;
	line-height: 1;
	color: var(--txp-muted);
}
.txp-cart-row .actions .remove:hover { color: var(--txp-red); border-color: var(--txp-red); }

/* Cart actions below list */
.txp-cart-actions { margin-top: 14px; }

/* Form column */
.txp-form-card {
	background: var(--txp-card);
	border: 1px solid var(--txp-line);
	border-radius: 8px;
	padding: 22px 22px 18px;
}
.txp-form-card-head {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--txp-line);
	margin-bottom: 18px;
}

.txp-form-section { padding-bottom: 18px; }
.txp-form-section + .txp-form-section {
	border-top: 1px solid var(--txp-line);
	padding-top: 18px;
}
.txp-form-section header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 14px;
}
.txp-form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.txp-form-field {
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}
.txp-form-field__lab,
.txp-form-field .lab {
	font-family: "Geist Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txp-muted);
	margin-bottom: 6px;
}
.txp-form-field input,
.txp-form-field select,
.txp-form-field textarea {
	border: 1px solid var(--txp-line-strong);
	background: var(--txp-card);
	border-radius: var(--txp-radius);
	padding: 10px 12px;
	font-size: 14px;
	color: var(--txp-ink);
	outline: none;
	width: 100%;
}
.txp-form-field input::placeholder,
.txp-form-field textarea::placeholder { color: var(--txp-muted-soft); }
.txp-form-field input:focus,
.txp-form-field select:focus,
.txp-form-field textarea:focus {
	border-color: var(--txp-navy);
	box-shadow: 0 0 0 3px rgba(26, 43, 92, 0.10);
}
.txp-form-field textarea { resize: vertical; line-height: 1.45; }
.txp-form-field select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--txp-muted) 50%),
		linear-gradient(135deg, var(--txp-muted) 50%, transparent 50%);
	background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
	background-size: 5px 5px;
	background-repeat: no-repeat;
	padding-right: 32px;
	cursor: pointer;
}

.txp-cart .txexp-request-form .txp-form-field input:not([type="hidden"]),
.txp-cart .txexp-request-form .txp-form-field select,
.txp-cart .txexp-request-form .txp-form-field textarea {
	border: 1px solid var(--txp-line-strong) !important;
}

.txp-cart .txexp-request-form .txp-form-field input:not([type="hidden"]):focus,
.txp-cart .txexp-request-form .txp-form-field select:focus,
.txp-cart .txexp-request-form .txp-form-field textarea:focus {
	border-color: var(--txp-navy) !important;
	box-shadow: 0 0 0 3px rgba(26, 43, 92, 0.10);
}

/* Segmented timeline picker */
.txp-segmented {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--txp-line-strong);
	border-radius: var(--txp-radius);
	overflow: hidden;
	margin-top: 8px;
}
.txp-segmented button {
	border: 0;
	background: var(--txp-card);
	padding: 9px 0;
	font-size: 13px;
	color: var(--txp-ink);
	border-left: 1px solid var(--txp-line);
}
.txp-segmented button:first-child { border-left: 0; }
.txp-segmented button.on { background: var(--txp-navy); color: #fff; }

/* Form footer + notice */
.txp-form-foot {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--txp-line);
}
.txp-form-notice {
	padding: 12px 14px;
	border-radius: var(--txp-radius);
	font-size: 14px;
	margin-bottom: 16px;
}
.txp-form-notice--error {
	background: rgba(200, 16, 46, 0.08);
	color: var(--txp-red);
	border: 1px solid rgba(200, 16, 46, 0.20);
}

/* Shared button styles (cart scope) */
.txp-cart .txp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 18px;
	height: 44px;
	border: 1px solid transparent;
	border-radius: var(--txp-radius);
	font-weight: 500;
	font-size: 14px;
	background: var(--txp-card);
	color: var(--txp-ink);
	white-space: nowrap;
	cursor: pointer;
}
.txp-cart .txp-btn--primary { background: var(--txp-red); color: #fff; border-color: var(--txp-red); }
.txp-cart .txp-btn--primary:hover { background: var(--txp-red-deep); border-color: var(--txp-red-deep); }
.txp-cart .txp-btn--outline { border-color: var(--txp-line-strong); color: var(--txp-navy); }
.txp-cart .txp-btn--outline:hover { background: var(--txp-tint); }
.txp-cart .txp-btn--ghost { color: var(--txp-navy); padding: 0 4px; height: auto; background: transparent; }
.txp-cart .txp-btn--lg { height: 48px; font-size: 15px; padding: 0 22px; }
.txp-cart .txp-btn--block { width: 100%; }

/* Success state */
.txp-success-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.txp-success-card {
	border: 1px solid var(--txp-line);
	border-radius: 8px;
	background: var(--txp-card);
	padding: 22px;
}
.txp-success-card__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 14px;
}
.txp-success-card__foot {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

/* "What happens next" steps */
.txp-steps {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
}
.txp-steps li {
	display: grid;
	grid-template-columns: 40px 1fr;
	align-items: start;
	gap: 16px;
	padding: 14px 0;
	border-top: 1px solid var(--txp-line);
}
.txp-steps li:last-child { border-bottom: 1px solid var(--txp-line); }
.txp-steps li .num {
	font-family: "Geist Mono", monospace;
	font-size: 12px;
	color: var(--txp-muted);
	letter-spacing: 0.04em;
	margin-top: 1px;
}
.txp-steps li strong {
	font-weight: 500;
	color: var(--txp-navy);
	font-size: 15px;
	display: block;
	margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 960px) {
	.txp-cart-layout {
		grid-template-columns: 1fr;
	}
	.txp-cart .txp-title-band {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.txp-cart .txp-h1 { font-size: 40px; }
	.txp-success-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.txp-cart-wrap { padding: 16px 18px 60px; }
	.txp-cart .txp-h1 { font-size: 32px; }
	.txp-form-grid-2 { grid-template-columns: 1fr; }
	.txp-cart-row {
		grid-template-columns: 44px 1fr;
		grid-template-rows: auto auto;
	}
	.txp-cart-row .specs { grid-column: 2; gap: 16px; }
	.txp-cart-row .actions { grid-column: 1; grid-row: 1; align-self: start; justify-self: center; }
	.txp-segmented button { font-size: 11px; padding: 8px 4px; }
}

/* Final override for the request-quote form; site-pages.css globally removes field borders. */
.txp-cart .txexp-request-form label.txp-form-field > input:not([type="hidden"]),
.txp-cart .txexp-request-form label.txp-form-field > select,
.txp-cart .txexp-request-form label.txp-form-field > textarea {
	border: 1px solid rgba(26, 43, 92, 0.32) !important;
	box-shadow: inset 0 0 0 1px rgba(26, 43, 92, 0.08) !important;
	background-color: #fff !important;
}

.txp-cart .txexp-request-form label.txp-form-field > input:not([type="hidden"]):focus,
.txp-cart .txexp-request-form label.txp-form-field > select:focus,
.txp-cart .txexp-request-form label.txp-form-field > textarea:focus {
	border-color: var(--txp-navy) !important;
	box-shadow: 0 0 0 3px rgba(26, 43, 92, 0.12), inset 0 0 0 1px rgba(26, 43, 92, 0.12) !important;
	outline: none !important;
}
