.mac-add-to-quote-button {
	align-items: center;
	background: #1319b0;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	line-height: 1;
	margin-top: 10px;
	padding: 13px 18px;
	transition: background-color 180ms ease, transform 180ms ease;
}

.mac-add-to-quote-button:hover,
.mac-add-to-quote-button:focus {
	background: #0682ff;
	color: #fff;
	transform: translateY(-1px);
}

.mac-add-to-quote-icon {
	border: 2px solid currentColor;
	border-radius: 3px;
	display: inline-block;
	height: 16px;
	position: relative;
	width: 13px;
}

.mac-add-to-quote-icon::before {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 2px;
	left: 3px;
	position: absolute;
	top: 4px;
	width: 5px;
}

.mac-add-to-quote-icon::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 2px;
	left: 3px;
	position: absolute;
	top: 9px;
	width: 5px;
}

.mac-quote-single-box {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 22px 0;
}

.mac-quote-qty-label {
	font-weight: 700;
	margin: 0;
}

.mac-quote-qty-input {
	border: 1px solid #c9d1d1;
	border-radius: 6px;
	height: 46px;
	max-width: 92px;
	padding: 0 12px;
}

.mac-quote-overlay {
	background: rgba(0, 0, 0, 0.46);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 220ms ease;
	z-index: 9997;
}

.mac-quote-sidebar {
	background: #fff;
	box-shadow: -18px 0 48px rgba(12, 30, 33, 0.18);
	display: flex;
	flex-direction: column;
	height: 100vh;
	max-width: min(440px, calc(100vw - 22px));
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition: transform 260ms ease;
	width: 440px;
	z-index: 9998;
}

.mac-quote-sidebar-open .mac-quote-overlay {
	opacity: 1;
	pointer-events: auto;
}

.mac-quote-sidebar-open .mac-quote-sidebar {
	transform: translateX(0);
}

.mac-quote-sidebar-header {
	align-items: center;
	border-bottom: 1px solid #ecf0f0;
	display: flex;
	justify-content: space-between;
	padding: 22px 24px;
}

.mac-quote-sidebar-header h2 {
	color: #0c1e21;
	font-size: 24px;
	margin: 0;
}

.mac-quote-close {
	align-items: center;
	background: #ecf0f0;
	border: 0;
	border-radius: 999px;
	color: #0c1e21;
	cursor: pointer;
	display: inline-flex;
	font-size: 28px;
	height: 40px;
	justify-content: center;
	line-height: 1;
	width: 40px;
}

.mac-quote-sidebar-body {
	flex: 1;
	overflow-y: auto;
	padding: 18px 24px;
}

.mac-quote-empty {
	background: #f6f8f8;
	border: 1px dashed #c9d1d1;
	border-radius: 8px;
	color: #364e52;
	padding: 22px;
	text-align: center;
}

.mac-quote-item {
	align-items: flex-start;
	border: 1px solid #ecf0f0;
	border-radius: 8px;
	display: grid;
	gap: 12px;
	grid-template-columns: 66px 1fr 32px;
	margin-bottom: 12px;
	padding: 12px;
}

.mac-quote-item-image {
	background: #f6f8f8;
	border-radius: 6px;
	display: block;
	height: 66px;
	overflow: hidden;
	width: 66px;
}

.mac-quote-item-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.mac-quote-item-content h3 {
	font-size: 15px;
	line-height: 1.35;
	margin: 0 0 10px;
}

.mac-quote-item-content h3 a {
	color: #0c1e21;
	text-decoration: none;
}

.mac-quote-quantity-control {
	align-items: center;
	display: inline-flex;
	gap: 6px;
}

.mac-quote-quantity-control button,
.mac-quote-remove {
	align-items: center;
	background: #ecf0f0;
	border: 0;
	border-radius: 999px;
	color: #0c1e21;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.mac-quote-quantity-control input {
	border: 1px solid #c9d1d1;
	border-radius: 6px;
	height: 32px;
	text-align: center;
	width: 58px;
}

.mac-quote-remove {
	background: transparent;
	color: #67787a;
	font-size: 22px;
}

.mac-quote-sidebar-footer {
	border-top: 1px solid #ecf0f0;
	padding: 18px 24px 24px;
}

.mac-quote-summary {
	display: grid;
	gap: 10px;
	margin-bottom: 14px;
}

.mac-quote-summary div {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.mac-quote-summary span {
	color: #364e52;
}

.mac-quote-summary strong {
	color: #1319b0;
}

.mac-quote-note {
	background: #f6f8f8;
	border-radius: 8px;
	color: #364e52;
	margin: 0 0 16px;
	padding: 12px;
}

.mac-quote-continue {
	align-items: center;
	background: #1319b0;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-weight: 800;
	justify-content: center;
	padding: 15px 18px;
	text-decoration: none;
}

.mac-quote-continue:hover {
	background: #0682ff;
	color: #fff;
}

.mac-quote-floating-button {
	align-items: center;
	background: #1319b0;
	border: 0;
	border-radius: 999px;
	bottom: 124px;
	box-shadow: 0 14px 36px rgba(19, 25, 176, 0.28);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 58px;
	justify-content: center;
	position: fixed;
	right: 44px;
	width: 58px;
	z-index: 9996;
}

.mac-quote-floating-icon {
	border: 2px solid currentColor;
	border-radius: 4px;
	display: inline-block;
	height: 24px;
	position: relative;
	width: 19px;
}

.mac-quote-floating-icon::before,
.mac-quote-floating-icon::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 2px;
	left: 5px;
	position: absolute;
	width: 8px;
}

.mac-quote-floating-icon::before {
	top: 7px;
}

.mac-quote-floating-icon::after {
	top: 14px;
}

.mac-quote-floating-badge {
	align-items: center;
	background: #ff0000;
	border: 2px solid #fff;
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	height: 24px;
	justify-content: center;
	min-width: 24px;
	position: absolute;
	right: -5px;
	top: -5px;
}

.mac-quote-floating-badge.is-empty {
	background: #67787a;
}

.mac-quote-toast {
	background: #0c1e21;
	border-radius: 999px;
	bottom: 92px;
	color: #fff;
	font-weight: 700;
	opacity: 0;
	padding: 12px 18px;
	pointer-events: none;
	position: fixed;
	right: 24px;
	transform: translateY(10px);
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 9999;
}

.mac-quote-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.mac-quote-page-header .tj-page-header-content {
	max-width: 860px;
	margin: 0 auto;
}

.mac-quote-page-header .tj-page-title {
	margin-bottom: 14px;
}

.mac-quote-page-header .desc {
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	line-height: 1.65;
	margin: 0 auto 22px;
	max-width: 680px;
}

.mac-quote-request,
.mac-quote-request.section-gap {
	background: #f6f8f8;
	padding-bottom: 74px;
	padding-top: 72px;
}

.mac-quote-request-header {
	display: block;
	margin-bottom: 24px;
	max-width: 880px;
}

.mac-quote-request-header .sub-title {
	align-items: center;
	color: #1319b0;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 8px;
	line-height: 1;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.mac-quote-request-heading h2 {
	color: #0c1e21;
	font-size: 38px;
	line-height: 1.12;
	margin: 0 0 12px;
	max-width: 780px;
}

.mac-quote-request-heading p,
.mac-quote-request-panel-header p {
	color: #364e52;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

.mac-quote-request-steps {
	background: #fff;
	border: 1px solid rgba(12, 30, 33, 0.08);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(12, 30, 33, 0.06);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 24px;
	overflow: hidden;
}

.mac-quote-step {
	align-items: center;
	background: #fff;
	display: flex;
	gap: 12px;
	min-height: 62px;
	padding: 14px 20px;
	position: relative;
}

.mac-quote-step:not(:last-child)::after {
	background: #ecf0f0;
	content: "";
	height: 30px;
	position: absolute;
	right: 0;
	top: 16px;
	width: 1px;
}

.mac-quote-step span {
	align-items: center;
	background: #ecf0f0;
	border-radius: 999px;
	color: #0c1e21;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.mac-quote-step strong {
	color: #0c1e21;
	font-size: 15px;
}

.mac-quote-step.is-active span {
	background: #1319b0;
	color: #fff;
}

.mac-quote-request-grid {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.mac-quote-request-panel {
	background: #fff;
	border: 1px solid rgba(12, 30, 33, 0.08);
	border-radius: 8px;
	box-shadow: 0 18px 55px rgba(12, 30, 33, 0.07);
	overflow: hidden;
	padding: 26px;
}

.mac-quote-request-panel-form {
	position: sticky;
	top: 110px;
}

.mac-quote-request-panel-header {
	border-bottom: 1px solid #ecf0f0;
	margin-bottom: 18px;
	padding-bottom: 16px;
}

.mac-quote-request-panel-header span {
	color: #1319b0;
	display: block;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.mac-quote-request-panel-header h3 {
	color: #0c1e21;
	font-size: 26px;
	line-height: 1.2;
	margin: 0 0 8px;
}

.mac-quote-request-items {
	display: grid;
	gap: 14px;
}

.mac-quote-request-items .mac-quote-item {
	background: #fff;
	border: 1px solid #ecf0f0;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(12, 30, 33, 0.04);
	grid-template-columns: 96px 1fr 38px;
	margin-bottom: 0;
	padding: 14px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mac-quote-request-items .mac-quote-item:hover {
	border-color: rgba(19, 25, 176, 0.26);
	box-shadow: 0 16px 38px rgba(12, 30, 33, 0.08);
	transform: translateY(-1px);
}

.mac-quote-request-items .mac-quote-item-image {
	background: #f6f8f8;
	border-radius: 8px;
	height: 96px;
	width: 96px;
}

.mac-quote-request-items .mac-quote-item-content h3 {
	font-size: 17px;
	line-height: 1.35;
	margin-bottom: 8px;
}

.mac-quote-item-sku {
	color: #67787a;
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin: -2px 0 10px;
}

.mac-quote-item-prices {
	color: #364e52;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 10px;
	margin: 0 0 12px;
}

.mac-quote-item-prices span {
	background: #f6f8f8;
	border-radius: 999px;
	padding: 5px 10px;
}

.mac-quote-item-prices strong {
	color: #1319b0;
}

.mac-quote-request-items .mac-quote-quantity-control {
	background: #f6f8f8;
	border-radius: 999px;
	padding: 4px;
}

.mac-quote-request-items .mac-quote-quantity-control button {
	background: #fff;
	box-shadow: 0 4px 12px rgba(12, 30, 33, 0.08);
}

.mac-quote-request-items .mac-quote-quantity-control input {
	background: transparent;
	border: 0;
	font-weight: 800;
	height: 30px;
	width: 52px;
}

.mac-quote-request-empty {
	background: #fff;
	border: 1px dashed #a9b8b8;
	border-radius: 8px;
	color: #364e52;
	font-weight: 700;
	padding: 42px 28px;
	text-align: center;
}

.mac-quote-request-summary {
	background: #0c1e21;
	border-radius: 8px;
	display: grid;
	gap: 1px;
	margin-top: 22px;
	overflow: hidden;
}

.mac-quote-request-summary div {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	padding: 16px 18px;
}

.mac-quote-request-summary span {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 700;
}

.mac-quote-request-summary strong {
	color: #fff;
	font-size: 24px;
	line-height: 1;
}

.mac-quote-request-assurance {
	align-items: flex-start;
	background: #eef7ff;
	border-left: 4px solid #1319b0;
	border-radius: 8px;
	color: #364e52;
	display: flex;
	font-weight: 700;
	line-height: 1.55;
	margin: 18px 0 0;
	padding: 14px 16px;
}

.mac-quote-request-form {
	display: grid;
	gap: 20px;
}

.mac-form-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mac-form-field-wide {
	grid-column: 1 / -1;
}

.mac-form-field label {
	color: #0c1e21;
	display: block;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 8px;
}

.mac-form-field label span {
	color: #e53935;
}

.mac-form-field input,
.mac-form-field textarea {
	background: #f8fafb;
	border: 1px solid #dfe7e7;
	border-radius: 8px;
	box-shadow: none;
	color: #0c1e21;
	display: block;
	font-size: 15px;
	min-height: 52px;
	outline: none;
	padding: 13px 15px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.mac-form-field textarea {
	line-height: 1.55;
	min-height: 136px;
	resize: vertical;
}

.mac-form-field input:focus,
.mac-form-field textarea:focus {
	background: #fff;
	border-color: #1319b0;
	box-shadow: 0 0 0 4px rgba(19, 25, 176, 0.1);
}

.mac-form-field textarea::placeholder {
	color: #7b8e91;
}

.mac-quote-request-submit-wrap {
	border-top: 1px solid #ecf0f0;
	display: grid;
	gap: 12px;
	padding-top: 20px;
}

.mac-quote-request-submit {
	align-items: center;
	background: #1319b0;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(19, 25, 176, 0.22);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	justify-content: center;
	line-height: 1;
	min-height: 56px;
	padding: 17px 24px;
	text-transform: none;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: 100%;
}

.mac-quote-request-submit:hover,
.mac-quote-request-submit:focus {
	background: #0682ff;
	box-shadow: 0 16px 34px rgba(6, 130, 255, 0.24);
	color: #fff;
	transform: translateY(-1px);
}

.mac-quote-request-submit:disabled {
	background: #a9b8b8;
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.mac-quote-request-submit.is-loading {
	opacity: 0.78;
}

.mac-quote-request-stage-note {
	border-radius: 8px;
	color: #364e52;
	font-weight: 800;
	line-height: 1.5;
	margin: 0;
	min-height: 24px;
}

.mac-quote-continue.is-disabled {
	background: #a9b8b8;
	cursor: not-allowed;
}

@media (max-width: 1199px) {
	.mac-quote-request-grid {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
	}
}

@media (max-width: 991px) {
	.mac-quote-request,
	.mac-quote-request.section-gap {
		padding-bottom: 64px;
		padding-top: 62px;
	}

	.mac-quote-request-grid {
		grid-template-columns: 1fr;
	}

	.mac-quote-request-heading h2 {
		font-size: 34px;
	}

	.mac-quote-request-panel-form {
		position: static;
	}
}

@media (max-width: 767px) {
	.mac-quote-request-steps {
		grid-template-columns: 1fr;
	}

	.mac-quote-step:not(:last-child)::after {
		bottom: 0;
		height: 1px;
		left: 22px;
		right: 22px;
		top: auto;
		width: auto;
	}

	.mac-form-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.mac-quote-sidebar {
		max-width: 100vw;
		width: 100vw;
	}

	.mac-quote-floating-button {
		bottom: 16px;
		right: 16px;
	}

	.mac-quote-page-header .desc {
		font-size: 15px;
	}

	.mac-quote-request,
	.mac-quote-request.section-gap {
		padding-bottom: 56px;
		padding-top: 52px;
	}

	.mac-quote-request-heading h2 {
		font-size: 29px;
	}

	.mac-quote-request-panel {
		padding: 20px;
	}

	.mac-quote-request-panel-header h3 {
		font-size: 23px;
	}

	.mac-quote-request-items .mac-quote-item {
		grid-template-columns: 74px 1fr 30px;
		padding: 12px;
	}

	.mac-quote-request-items .mac-quote-item-image {
		height: 74px;
		width: 74px;
	}

	.mac-quote-request-items .mac-quote-item-content h3 {
		font-size: 15px;
	}

	.mac-quote-request-items .mac-quote-quantity-control {
		margin-top: 2px;
	}
}

@media (max-width: 420px) {
	.mac-quote-request-items .mac-quote-item {
		grid-template-columns: 1fr 30px;
	}

	.mac-quote-request-items .mac-quote-item-image {
		grid-column: 1 / -1;
		height: auto;
		aspect-ratio: 16 / 10;
		width: 100%;
	}
}
