/* Nexus Avalon child orderform: checkout-focused UI refresh */
:root {
	--nx-navy: #1c2738;
	--nx-ink: #1b2433;
	--nx-muted: #5c6981;
	--ui-fs-xs: 0.84rem;
	--ui-fs-sm: 0.92rem;
	--ui-fs-md: 0.98rem;
	--ui-fs-lg: 1.06rem;
	--ui-fs-xl: 1.24rem;
	--nx-surface: #ffffff;
	--nx-surface-alt: #f6f8fc;
	--nx-line: #d5ddeb;
	--nx-accent: #fab41b;
	--nx-accent-strong: #cb860a;
	--nx-success: #1e9f57;
	--nx-success-strong: #158247;
	--nx-danger: #b42318;
	--nx-form-height: 2.75rem;
	--nx-form-radius: 0.68rem;
	--nx-form-border: var(--nx-line);
	--nx-form-border-focus: #96b0d9;
	--nx-form-surface: #ffffff;
	--nx-form-placeholder: #7f8ea7;
	--nx-form-focus-ring: 0 0 0 0.2rem rgba(250, 180, 27, 0.2);
	--nx-form-error-border: rgba(180, 35, 24, 0.6);
	--nx-form-error-ring: 0 0 0 0.16rem rgba(180, 35, 24, 0.14);
	--nx-choice-border: #d7e1f1;
}

#order-standard_cart {
	color: var(--nx-ink);
}

#order-standard_cart .row {
	margin-left: -0.65rem;
	margin-right: -0.65rem;
}

#order-standard_cart [class*="col-"] {
	padding-left: 0.65rem;
	padding-right: 0.65rem;
}

#order-standard_cart .cart-sidebar .panel,
#order-standard_cart .cart-sidebar .card {
	border: 1px solid var(--nx-line);
	border-radius: 0.85rem;
	box-shadow: 0 10px 26px rgba(20, 33, 53, 0.06);
	overflow: hidden;
}

#order-standard_cart .cart-sidebar .card-header,
#order-standard_cart .cart-sidebar .panel-heading {
	background: linear-gradient(145deg, #ffffff, #f6f8fc);
	border-bottom: 1px solid var(--nx-line);
}

#order-standard_cart .cart-sidebar .panel-title,
#order-standard_cart .cart-sidebar .card-header h3 {
	color: var(--nx-navy);
	font-size: var(--ui-fs-lg);
	font-weight: 800;
	letter-spacing: 0.01em;
}

#order-standard_cart .cart-sidebar .list-group-item {
	border-color: #e7edf7;
	color: var(--nx-ink);
	font-size: var(--ui-fs-md);
	font-weight: 600;
	line-height: 1.45;
	transition:
		background-color 0.18s ease,
		color 0.18s ease;
}

#order-standard_cart .cart-sidebar .list-group-item:hover,
#order-standard_cart .cart-sidebar .list-group-item:focus {
	background: #f2f6fd;
	color: var(--nx-navy);
}

#order-standard_cart .cart-sidebar .list-group-item.active {
	background: var(--nx-navy);
	border-color: var(--nx-navy);
	color: #ffffff;
}

#order-standard_cart .cart-body {
	border-radius: 1rem;
}

#order-standard_cart .header-lined {
	border-bottom: 1px solid var(--nx-line);
	margin-bottom: 1.15rem;
	padding-bottom: 0.7rem;
}

#order-standard_cart .header-lined h1 {
	color: var(--nx-navy);
	font-size: clamp(1.7rem, 1.2rem + 1.1vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 0.35rem;
}

#order-standard_cart .products .product {
	background: var(--nx-surface);
	border: 1px solid var(--nx-line);
	border-radius: 1rem;
	box-shadow: 0 8px 22px rgba(22, 38, 63, 0.06);
	display: flex;
	flex-direction: column;
	margin-bottom: 2.2rem;
	min-height: 100%;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease;
}

#order-standard_cart .products .row.row-eq-height {
	margin-bottom: 0.7rem;
}

#order-standard_cart .products .product:hover {
	border-color: #bfd0ec;
	box-shadow: 0 16px 34px rgba(21, 40, 69, 0.13);
	transform: translateY(-2px);
}

#order-standard_cart .products .product > header {
	border-bottom: 1px solid #edf2fa;
	color: var(--nx-navy);
	font-size: 1.28rem;
	font-weight: 800;
	line-height: 1.25;
	padding: 1.05rem 1.15rem 0.95rem;
}

#order-standard_cart .products .product-desc {
	flex: 1;
	padding: 0.95rem 1.15rem 0.8rem;
}

#order-standard_cart .products .product-desc ul {
	margin-bottom: 0;
	padding-left: 1.2rem;
}

#order-standard_cart .products .product-desc li {
	color: var(--nx-muted);
	font-size: 0.94rem;
	margin-bottom: 0.45rem;
}

#order-standard_cart .products .product-desc .feature-value {
	color: #243145;
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 0.1rem;
}

#order-standard_cart .products .product > footer {
	align-items: center;
	border-top: 1px solid #edf2fa;
	display: flex;
	justify-content: space-between;
	gap: 0.6rem;
	flex-wrap: wrap;
	padding: 0.95rem 1.15rem 1.05rem;
}

/* Harden product card typography against legacy standard_cart rules */
#order-standard_cart .products .product {
	border-radius: 1rem !important;
	margin: 0 0 2rem !important;
	padding: 0 !important;
}

#order-standard_cart .products .product > header,
#order-standard_cart .products .product header span {
	font-size: clamp(1.25rem, 1.05rem + 0.35vw, 1.42rem);
	font-weight: 800;
	line-height: 1.25;
}

#order-standard_cart .products .product .product-desc,
#order-standard_cart .products .product div.product-desc {
	float: none !important;
	width: 100% !important;
	font-size: 0.96rem !important;
	line-height: 1.55;
	padding: 0.95rem 1.15rem 0.82rem !important;
}

#order-standard_cart .products .product .product-desc p,
#order-standard_cart .products .product div.product-desc p {
	color: #334862;
	font-size: 0.95rem !important;
	font-weight: 500;
	line-height: 1.5 !important;
	margin-bottom: 0.55rem;
	white-space: pre-line;
}

#order-standard_cart .products .product .product-pricing {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
}

#order-standard_cart .product-pricing {
	color: var(--nx-muted);
	font-size: 0.86rem;
	flex: 1 1 auto;
	min-width: 10rem;
}

#order-standard_cart .product-pricing .price {
	color: var(--nx-navy);
	font-size: 1.82rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.03;
}

#order-standard_cart .btn-order-now,
#order-standard_cart .btn-success,
#order-standard_cart .btn.btn-success {
	background: linear-gradient(135deg, var(--nx-accent), #f8c44f);
	border-color: transparent;
	border-radius: 0.66rem;
	box-shadow: 0 8px 18px rgba(203, 134, 10, 0.24);
	color: var(--nx-navy);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
	min-height: 2.3rem;
	min-width: 9.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.32rem;
	white-space: nowrap;
	flex: 0 0 auto;
	overflow: visible;
	padding: 0.42rem 0.82rem;
}

#order-standard_cart .btn-order-now i,
#order-standard_cart .btn-success i,
#order-standard_cart .btn.btn-success i {
	line-height: 1;
}

#order-standard_cart .btn-order-now:hover,
#order-standard_cart .btn-order-now:focus,
#order-standard_cart .btn-success:hover,
#order-standard_cart .btn-success:focus {
	background: linear-gradient(135deg, #ffd166, #f7b733);
	color: var(--nx-navy);
	filter: none;
	transform: translateY(-1px);
}

#order-standard_cart .btn:not(:disabled):not(.disabled):hover,
#order-standard_cart .btn:not(:disabled):not(.disabled):focus {
	background: linear-gradient(135deg, #ffd166, #f7b733);
	border-color: transparent;
	color: var(--nx-navy);
	filter: none;
	text-decoration: none;
	transform: translateY(-1px);
}

#order-standard_cart .sub-heading {
	border-bottom: 1px solid var(--nx-line);
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.45rem;
}

#order-standard_cart .sub-heading .primary-bg-color {
	background: rgba(250, 180, 27, 0.22) !important;
	border-radius: 999px;
	color: var(--nx-navy);
	display: inline-block;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	padding: 0.3rem 0.74rem;
	text-transform: uppercase;
}

#order-standard_cart .cart-body .nav-justified {
	gap: 0.45rem;
	margin-bottom: 1rem;
}

#order-standard_cart .cart-body .nav-justified > li > a,
#order-standard_cart .cart-body .nav-justified > li > span {
	background: #f4f8ff;
	border: 1px solid #d5e0f1;
	border-radius: 0.72rem;
	color: #3f5677;
	font-weight: 700;
	min-height: 2.65rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.7rem;
}

#order-standard_cart .cart-body .nav-justified > li.active > a,
#order-standard_cart .cart-body .nav-justified > li.active > span {
	background: linear-gradient(135deg, var(--nx-accent), #f7c24a);
	border-color: rgba(203, 134, 10, 0.36);
	box-shadow: 0 6px 16px rgba(203, 134, 10, 0.2);
	color: var(--nx-navy);
}

/* Unified form system */
#order-standard_cart .form-group {
	margin-bottom: 0.92rem;
}

#order-standard_cart form label:not(.field-icon):not(.radio-inline) {
	color: #3e5678;
	font-size: 0.87rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-right: 0;
}

#order-standard_cart .form-group > label:not(.field-icon) {
	color: #3e5678;
	font-size: 0.87rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-bottom: 0.36rem;
}

#order-standard_cart .form-control,
#order-standard_cart .field,
#order-standard_cart .custom-select,
#order-standard_cart .select-inline,
#order-standard_cart input[type="text"],
#order-standard_cart input[type="email"],
#order-standard_cart input[type="tel"],
#order-standard_cart input[type="number"],
#order-standard_cart input[type="password"],
#order-standard_cart select,
#order-standard_cart textarea {
	background: var(--nx-form-surface);
	border: 1px solid var(--nx-form-border);
	border-radius: var(--nx-form-radius);
	box-shadow: none;
	color: var(--nx-ink);
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.3;
	min-height: var(--nx-form-height);
	padding: 0.56rem 0.78rem;
	transition:
		border-color 0.16s ease,
		box-shadow 0.16s ease,
		background-color 0.16s ease;
}

#order-standard_cart select,
#order-standard_cart .custom-select {
	background-image:
		linear-gradient(45deg, transparent 50%, #61789b 50%),
		linear-gradient(135deg, #61789b 50%, transparent 50%);
	background-position:
		calc(100% - 1.02rem) calc(50% - 0.12rem),
		calc(100% - 0.72rem) calc(50% - 0.12rem);
	background-size:
		0.35rem 0.35rem,
		0.35rem 0.35rem;
	background-repeat: no-repeat;
	padding-right: 2rem;
}

#order-standard_cart textarea {
	line-height: 1.45;
	min-height: 6.2rem;
	padding-top: 0.65rem;
	resize: vertical;
}

#order-standard_cart .form-control:focus,
#order-standard_cart .field:focus,
#order-standard_cart .custom-select:focus,
#order-standard_cart .select-inline:focus,
#order-standard_cart input:focus,
#order-standard_cart select:focus,
#order-standard_cart textarea:focus {
	border-color: var(--nx-form-border-focus);
	box-shadow: var(--nx-form-focus-ring) !important;
	outline: none;
}

#order-standard_cart .form-control::placeholder,
#order-standard_cart .field::placeholder,
#order-standard_cart input::placeholder,
#order-standard_cart textarea::placeholder {
	color: var(--nx-form-placeholder);
	font-weight: 500;
	opacity: 1;
}

#order-standard_cart .prepend-icon {
	position: relative;
}

#order-standard_cart form .prepend-icon > .field-icon {
	align-items: center;
	color: #5e7393;
	display: inline-flex;
	height: 1.1rem;
	justify-content: center;
	left: 0.82rem !important;
	margin: 0;
	position: absolute;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 1.25rem;
	z-index: 2;
}

#order-standard_cart form .prepend-icon .form-control,
#order-standard_cart form .prepend-icon .field,
#order-standard_cart form .prepend-icon .custom-select,
#order-standard_cart form .prepend-icon .select-inline {
	padding-left: 2.65rem !important;
}

#order-standard_cart form .prepend-icon input.field,
#order-standard_cart form .prepend-icon input.form-control,
#order-standard_cart form .prepend-icon select.field,
#order-standard_cart form .prepend-icon select.form-control {
	padding-left: 2.65rem !important;
}

#order-standard_cart label.radio-inline,
#order-standard_cart .cc-input-container li label.radio-inline {
	background: #ffffff;
	border: 1px solid var(--nx-choice-border);
	border-radius: 0.68rem;
	color: #2f496d;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.42rem;
	font-size: 0.92rem;
	font-weight: 700;
	margin: 0 !important;
	min-height: 2.55rem;
	padding: 0.56rem 0.86rem;
	transition:
		border-color 0.16s ease,
		box-shadow 0.16s ease,
		background-color 0.16s ease,
		color 0.16s ease;
}

#order-standard_cart label.radio-inline:hover,
#order-standard_cart label.radio-inline:focus-within {
	background: #f8fbff;
	border-color: #9fb7da;
	box-shadow: 0 0 0 0.13rem rgba(122, 158, 206, 0.16);
	color: #213e63;
}

#order-standard_cart label.radio-inline .iradio_square-blue {
	flex-shrink: 0;
}

#order-standard_cart .form-control[disabled],
#order-standard_cart .field[disabled],
#order-standard_cart input[disabled],
#order-standard_cart select[disabled],
#order-standard_cart textarea[disabled] {
	background: #f2f5fb;
	border-color: #d6dfef;
	color: #73859f;
	opacity: 1;
}

#order-standard_cart .intl-tel-input,
#order-standard_cart .intl-tel-input .selected-flag,
#order-standard_cart .intl-tel-input.allow-dropdown input {
	border-radius: var(--nx-form-radius);
}

#order-standard_cart .intl-tel-input {
	position: relative;
	width: 100%;
	z-index: 3;
}

#order-standard_cart .intl-tel-input.allow-dropdown .selected-flag {
	background: #f5f8ff;
	border: 1px solid var(--nx-form-border);
	border-right: 0;
}

#order-standard_cart .intl-tel-input .country-list {
	border: 1px solid #cddbef;
	border-radius: 0.72rem;
	box-shadow: 0 14px 30px rgba(18, 32, 52, 0.18);
	max-height: 15rem;
	overflow-y: auto;
	z-index: 1500;
}

#order-standard_cart .field-error-msg,
#order-standard_cart .field-error,
#order-standard_cart .help-block {
	color: var(--nx-danger);
	font-size: 0.86rem;
	font-weight: 600;
	margin-top: 0.35rem;
}

#order-standard_cart .has-error .form-control,
#order-standard_cart .has-error .field,
#order-standard_cart .has-error .custom-select,
#order-standard_cart .has-error input,
#order-standard_cart .has-error select,
#order-standard_cart .has-error textarea {
	border-color: var(--nx-form-error-border);
	box-shadow: var(--nx-form-error-ring);
}

#order-standard_cart .view-cart-items-header {
	background: linear-gradient(140deg, #f9fbff, #eef3fb);
	border: 1px solid var(--nx-line);
	border-radius: 0.74rem 0.74rem 0 0;
	color: var(--nx-navy) !important;
	font-size: 0.96rem;
	font-weight: 700;
}

#order-standard_cart .view-cart-items-header .row > [class*="col-"] {
	color: var(--nx-navy) !important;
	line-height: 1.35;
}

#order-standard_cart .view-cart-items {
	border: 1px solid var(--nx-line);
	border-top: 0;
	border-radius: 0 0 0.74rem 0.74rem;
	overflow: visible;
}

#order-standard_cart .view-cart-items .item {
	border-top: 1px solid #e8eef8;
	padding: 1rem 0.84rem;
}

#order-standard_cart .view-cart-items .item:first-child {
	border-top: 0;
}

#order-standard_cart .item-title {
	color: var(--nx-navy);
	font-size: 1rem;
	font-weight: 700;
}

#order-standard_cart .item-price {
	color: var(--nx-navy);
	font-size: 1.05rem;
	font-weight: 700;
}

#order-standard_cart .btn-primary,
#order-standard_cart #btnCompleteOrder {
	background: linear-gradient(135deg, var(--nx-accent), #f8c44f);
	border-color: transparent;
	border-radius: 0.72rem;
	box-shadow: 0 10px 24px rgba(203, 134, 10, 0.23);
	color: #1d2a3f;
	font-weight: 800;
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-primary:focus,
#order-standard_cart #btnCompleteOrder:hover,
#order-standard_cart #btnCompleteOrder:focus {
	background: linear-gradient(135deg, #ffd166, #f7b733);
	color: var(--nx-navy);
}

#order-standard_cart .alert-danger {
	border-left: 4px solid var(--nx-danger);
}

#order-standard_cart .alert-success {
	border-left: 4px solid var(--nx-success);
}

#order-standard_cart .recommendation-container,
#order-standard_cart .cart-totals,
#order-standard_cart .summary-container,
#order-standard_cart .cart-total,
#order-standard_cart .order-summary {
	border: 1px solid var(--nx-line);
	border-radius: 0.88rem;
}

/* Configure product flow */
#order-standard_cart #frmConfigureProduct .secondary-cart-body,
#order-standard_cart #frmConfigureProduct .secondary-cart-sidebar {
	padding-top: 0.2rem;
}

#order-standard_cart #frmConfigureProduct .secondary-cart-body > p:first-child {
	color: var(--nx-muted);
	font-size: 1.02rem;
	margin-bottom: 1rem;
}

#order-standard_cart #frmConfigureProduct .product-info {
	background: linear-gradient(150deg, #ffffff, #f6f8fd);
	border: 1px solid var(--nx-line);
	border-radius: 0.92rem;
	box-shadow: 0 10px 24px rgba(23, 36, 58, 0.06);
	margin-bottom: 1.15rem;
	padding: 0.95rem 1.1rem;
}

#order-standard_cart #frmConfigureProduct .product-title {
	color: var(--nx-navy);
	font-family: "Outfit", "Segoe UI", sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.22rem;
}

#order-standard_cart #frmConfigureProduct .product-info p:last-child {
	color: var(--nx-muted);
	margin-bottom: 0;
}

#order-standard_cart #frmConfigureProduct .field-container {
	background: #ffffff;
	border: 1px solid var(--nx-line);
	border-radius: 0.92rem;
	margin-bottom: 1rem;
	padding: 0.95rem 1.1rem 0.85rem;
}

#order-standard_cart #frmConfigureProduct .field-container label {
	color: var(--nx-navy);
	font-size: 0.94rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-bottom: 0.55rem;
}

#order-standard_cart #frmConfigureProduct .field-container .select-inline {
	background: #ffffff;
	border: 1px solid var(--nx-line-mid, #c8d5e8);
	border-radius: 0.78rem;
	box-shadow: 0 4px 10px rgba(19, 33, 52, 0.06);
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #536a8d 50%),
		linear-gradient(135deg, #536a8d 50%, transparent 50%) !important;
	background-position:
		calc(100% - 1rem) calc(50% - 0.12rem),
		calc(100% - 0.7rem) calc(50% - 0.12rem) !important;
	background-repeat: no-repeat !important;
	background-size:
		0.38rem 0.38rem,
		0.38rem 0.38rem !important;
	font-size: 1.06rem;
	font-weight: 700;
	max-width: 19rem;
	padding-right: 2.35rem;
}

#order-standard_cart
	#frmConfigureProduct
	.field-container
	.select-inline:focus {
	border-color: #8ea8d4;
	box-shadow: 0 0 0 0.2rem rgba(250, 180, 27, 0.2);
}

#order-standard_cart
	#frmConfigureProduct
	.field-container
	.select-inline:hover {
	border-color: #9ab4da;
	box-shadow: 0 6px 14px rgba(24, 39, 62, 0.08);
}

#order-standard_cart #frmConfigureProduct .info-text-sm {
	background: linear-gradient(
		145deg,
		rgba(250, 180, 27, 0.22),
		rgba(250, 180, 27, 0.16)
	);
	border: 1px solid rgba(203, 134, 10, 0.32);
	border-radius: 0.78rem;
	box-shadow: none;
	color: #63440b;
	font-weight: 600;
	padding: 0.72rem 0.9rem;
}

#order-standard_cart #frmConfigureProduct .info-text-sm a {
	color: #5a3905;
	font-weight: 800;
	text-decoration: underline;
}

#order-standard_cart #frmConfigureProduct #productAddonsContainer {
	margin-top: 1rem;
}

#order-standard_cart
	#frmConfigureProduct
	#productAddonsContainer
	> .sub-heading {
	margin-top: 1.25rem;
	margin-bottom: 0.8rem;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container {
	background: linear-gradient(155deg, #ffffff, #f8fbff);
	border: 1px solid var(--nx-line-mid, #c8d5e8);
	border-radius: 0.98rem;
	box-shadow: 0 12px 28px rgba(17, 31, 53, 0.08);
	margin-bottom: 0.95rem;
	overflow: hidden;
	padding: 0.95rem 1rem;
	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container:hover {
	border-color: #b8cbe8;
	box-shadow: 0 16px 32px rgba(17, 31, 53, 0.13);
	transform: translateY(-1px);
}

#order-standard_cart #frmConfigureProduct .addon-promo-container .description {
	display: grid;
	align-items: center;
	gap: 0.8rem;
	grid-template-areas:
		"logo title"
		"copy copy";
	grid-template-columns: 3.4rem 1fr;
	column-gap: 1.2rem;
	row-gap: 0.62rem;
	margin: 0 0 0.75rem;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container .logo {
	align-items: center;
	background: #ffffff;
	border: 1px solid #d9e5f6;
	border-radius: 0.72rem;
	display: inline-flex;
	height: 3.4rem;
	justify-content: center;
	line-height: 1;
	padding: 0.28rem;
	text-align: center;
	width: 3.4rem;
	grid-area: logo;
	justify-self: start;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container .logo img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container h3 {
	color: var(--nx-navy);
	font-family: "Outfit", "Segoe UI", sans-serif;
	font-weight: 700;
	grid-area: title;
	line-height: 1.25;
	margin: 0;
	padding: 0.5rem 0.8rem;
	align-self: center;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container p {
	color: #526582;
	font-size: 0.92rem;
	grid-area: copy;
	line-height: 1.45;
	margin: 0;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container p a {
	font-weight: 700;
	text-decoration: underline;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container .radio-inline {
	align-items: center;
	background: #f8fbff;
	border: 1px solid #d8e3f4;
	border-radius: 0.72rem;
	display: flex;
	gap: 0.55rem;
	margin: 0.38rem 0 0 !important;
	min-height: 2.6rem;
	padding: 0.5rem 0.72rem;
	width: 100%;
}

#order-standard_cart
	#frmConfigureProduct
	.addon-promo-container
	.radio-inline:hover,
#order-standard_cart
	#frmConfigureProduct
	.addon-promo-container
	.radio-inline:focus-within {
	background: #f0f6ff;
	border-color: #aac2e5;
	box-shadow: 0 0 0 0.16rem rgba(138, 170, 218, 0.16);
}

#order-standard_cart
	#frmConfigureProduct
	.addon-promo-container
	.radio-inline:has(.iradio_square-blue.checked) {
	background: rgba(250, 180, 27, 0.16);
	border-color: rgba(203, 134, 10, 0.48);
	box-shadow: 0 0 0 0.16rem rgba(250, 180, 27, 0.14);
	color: #2a3f5d;
	font-weight: 800;
}

#order-standard_cart
	#frmConfigureProduct
	.addon-promo-container
	.radio-inline
	.pull-right,
#order-standard_cart
	#frmConfigureProduct
	.addon-promo-container
	.radio-inline
	.float-right {
	float: none !important;
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
}

#order-standard_cart
	#frmConfigureProduct
	.addon-promo-container
	.radio-inline
	.iCheck-helper {
	cursor: pointer;
}

#order-standard_cart #frmConfigureProduct .addon-promo-container .clearfix {
	display: none;
}

#order-standard_cart #orderSummary {
	position: sticky;
	top: 1.2rem;
}

#order-standard_cart #frmConfigureProduct .order-summary {
	background: linear-gradient(175deg, #ffffff, #f9fbff);
	border: 1px solid var(--nx-line-mid, #c8d5e8);
	border-radius: 1rem;
	box-shadow: 0 14px 32px rgba(17, 31, 53, 0.12);
	overflow: hidden;
	padding: 0;
}

#order-standard_cart #frmConfigureProduct .order-summary h2 {
	background: linear-gradient(145deg, var(--nx-navy), #2d3f5d);
	color: #f5f8ff;
	font-family: "Outfit", "Segoe UI", sans-serif;
	font-size: 1.72rem;
	font-weight: 700;
	margin: 0;
	padding: 0.9rem 1rem 0.82rem;
	text-align: center;
}

#order-standard_cart #frmConfigureProduct .order-summary .summary-container {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	font-size: 0.95rem;
	line-height: 1.42;
	padding: 0.95rem 1rem 1rem;
}

#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-container
	> .clearfix,
#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-totals
	> .clearfix {
	align-items: flex-start;
	display: flex;
	gap: 0.7rem;
	justify-content: space-between;
	margin-bottom: 0.34rem;
}

#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-container
	> .clearfix
	.pull-left,
#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-container
	> .clearfix
	.float-left,
#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-totals
	> .clearfix
	.pull-left,
#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-totals
	> .clearfix
	.float-left {
	color: #3a4e6c;
	float: none !important;
	font-size: 0.95rem;
	line-height: 1.38;
	max-width: 78%;
}

#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-container
	> .clearfix
	.pull-right,
#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-container
	> .clearfix
	.float-right,
#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-totals
	> .clearfix
	.pull-right,
#order-standard_cart
	#frmConfigureProduct
	.order-summary
	.summary-totals
	> .clearfix
	.float-right {
	color: #223753;
	float: none !important;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
}

#order-standard_cart #frmConfigureProduct .order-summary .summary-totals {
	border-top: 1px solid #d9e4f5;
	margin-top: 0.52rem;
	padding-top: 0.56rem;
}

#order-standard_cart #frmConfigureProduct .order-summary .product-name {
	color: var(--nx-navy);
	font-size: 1.22rem;
	font-weight: 700;
}

#order-standard_cart #frmConfigureProduct .order-summary .product-group {
	color: var(--nx-muted);
	font-size: 0.98rem;
	font-weight: 600;
}

#order-standard_cart #frmConfigureProduct .order-summary .total-due-today {
	background: #f8fbff;
	border: 1px solid #d9e4f5;
	border-radius: 0.78rem;
	margin-top: 0.7rem;
	padding: 0.75rem 0.8rem;
	text-align: center;
}

#order-standard_cart #frmConfigureProduct .order-summary .total-due-today .amt {
	color: var(--nx-navy);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

#order-standard_cart #btnCompleteProductConfig {
	font-size: 1.18rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	margin-top: 1rem;
	min-height: 3rem;
	min-width: 13.5rem;
	width: 100%;
}

/* View cart flow */
#order-standard_cart .view-cart-items {
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(19, 31, 49, 0.07);
}

#order-standard_cart .view-cart-items .item {
	background: linear-gradient(145deg, #ffffff, #f9fbff);
	border-top: 1px solid #e0e9f8;
	font-size: 0.96rem !important;
	padding: 0.98rem 0.9rem !important;
	transition: background-color 0.18s ease;
}

#order-standard_cart .view-cart-items .item:hover {
	background: #f8fbff;
}

#order-standard_cart .view-cart-items .item + .item {
	border-top: 1px solid #dfe8f7;
}

#order-standard_cart .view-cart-items .item-title {
	color: var(--nx-navy);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.3;
}

#order-standard_cart .view-cart-items .item-title .btn-link {
	color: #41628f;
	font-size: 0.92rem;
	font-weight: 700;
	padding: 0;
	text-decoration: none;
	vertical-align: baseline;
}

#order-standard_cart .view-cart-items .item-title .btn-link:hover,
#order-standard_cart .view-cart-items .item-title .btn-link:focus {
	color: var(--nx-navy);
	text-decoration: underline;
}

#order-standard_cart .view-cart-items .item-group,
#order-standard_cart .view-cart-items .item-domain {
	color: var(--nx-muted);
	display: block;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
}

#order-standard_cart .view-cart-items .item-domain {
	color: #2b4e78;
	font-weight: 700;
	margin-top: 0.18rem;
}

#order-standard_cart .view-cart-items .item small {
	color: #3f5574;
	display: block;
	font-size: 0.88rem;
	line-height: 1.42;
	margin-top: 0.42rem;
}

#order-standard_cart .view-cart-items .item-price {
	text-align: right;
}

#order-standard_cart .view-cart-items .item-price > span:first-child {
	color: var(--nx-navy);
	display: block;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.15;
}

#order-standard_cart .view-cart-items .item-price .cycle {
	color: #2f415f;
	display: block;
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.25;
	margin-top: 0.18rem;
}

#order-standard_cart .view-cart-items,
#order-standard_cart .view-cart-items .item,
#order-standard_cart .view-cart-items .item-price,
#order-standard_cart .view-cart-items .item-price .dropdown {
	position: relative;
}

#order-standard_cart .view-cart-items .item-price .dropdown.show {
	z-index: 1200;
}

#order-standard_cart .view-cart-items .item-price .dropdown-menu {
	background: #ffffff;
	border: 1px solid #ccd9ef;
	border-radius: 0.68rem;
	box-shadow: 0 14px 32px rgba(18, 32, 52, 0.2);
	max-height: 16rem;
	min-width: 13.5rem;
	overflow-y: auto;
	padding: 0.28rem 0;
	z-index: 1201;
}

#order-standard_cart
	.view-cart-items
	.item-price
	.dropdown-menu
	.dropdown-item {
	padding: 0;
}

#order-standard_cart
	.view-cart-items
	.item-price
	.dropdown-menu
	.dropdown-item
	a {
	color: #2e4869;
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.44rem 0.76rem;
	text-decoration: none;
}

#order-standard_cart
	.view-cart-items
	.item-price
	.dropdown-menu
	.dropdown-item
	a:hover,
#order-standard_cart
	.view-cart-items
	.item-price
	.dropdown-menu
	.dropdown-item
	a:focus {
	background: #edf4ff;
	color: #1f3b61;
	text-decoration: none;
}

#order-standard_cart .btn-remove-from-cart,
#order-standard_cart .item .col-sm-1 .btn-link {
	align-items: center;
	background: #f1f5fc;
	border: 1px solid #d2deef;
	border-radius: 999px;
	color: #7b879a;
	display: inline-flex;
	font-size: 0.95rem;
	height: 1.95rem;
	justify-content: center;
	padding: 0.22rem;
	text-decoration: none;
	width: 1.95rem;
}

#order-standard_cart .btn-remove-from-cart:hover,
#order-standard_cart .btn-remove-from-cart:focus,
#order-standard_cart .item .col-sm-1 .btn-link:hover,
#order-standard_cart .item .col-sm-1 .btn-link:focus {
	background: rgba(180, 35, 24, 0.08);
	border-color: rgba(180, 35, 24, 0.28);
	color: var(--nx-danger);
	text-decoration: none;
}

#order-standard_cart .empty-cart {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.78rem;
	padding-right: 0.1rem;
}

#order-standard_cart .empty-cart .btn {
	background: rgba(180, 35, 24, 0.08);
	border: 1px solid rgba(180, 35, 24, 0.24);
	border-radius: 0.62rem;
	color: #8f2b23;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.3rem 0.62rem;
	text-decoration: none;
}

#order-standard_cart .empty-cart .btn:hover,
#order-standard_cart .empty-cart .btn:focus {
	background: rgba(180, 35, 24, 0.14);
	color: #6f1d17;
}

#order-standard_cart .view-cart-tabs {
	margin-top: 1rem;
}

#order-standard_cart .view-cart-tabs .nav-tabs {
	border-bottom: 1px solid var(--nx-line);
	gap: 0.25rem;
	padding-bottom: 0.1rem;
	padding-left: 0.1rem;
}

#order-standard_cart .view-cart-tabs .nav-tabs .nav-link {
	background: #f4f8ff;
	border: 1px solid #d9e4f5;
	border-radius: 0.62rem 0.62rem 0 0;
	color: #3c567c;
	font-size: 0.92rem;
	font-weight: 700;
	padding: 0.5rem 0.9rem;
}

#order-standard_cart .view-cart-tabs .nav-tabs .nav-link.active {
	background: #ffffff;
	border-bottom-color: #ffffff;
	color: var(--nx-navy);
	position: relative;
}

#order-standard_cart .view-cart-tabs .tab-content {
	background: #ffffff;
	border: 1px solid var(--nx-line);
	border-radius: 0 0.78rem 0.78rem 0.78rem;
	padding: 0.95rem;
	box-shadow: 0 8px 20px rgba(20, 33, 52, 0.05);
}

#order-standard_cart .view-cart-tabs .btn.btn-default,
#order-standard_cart .view-cart-tabs button[name="validatepromo"] {
	background: linear-gradient(135deg, #ffffff, #f4f8ff);
	border: 1px solid #c9d8ef;
	border-radius: 0.62rem;
	color: #314a70;
	font-weight: 700;
	min-height: 2.5rem;
}

#order-standard_cart .view-cart-tabs .btn.btn-default:hover,
#order-standard_cart .view-cart-tabs .btn.btn-default:focus,
#order-standard_cart .view-cart-tabs button[name="validatepromo"]:hover,
#order-standard_cart .view-cart-tabs button[name="validatepromo"]:focus {
	background: linear-gradient(135deg, #edf3fc, #ffffff);
	color: var(--nx-navy);
}

#order-standard_cart #orderSummary.order-summary {
	background: linear-gradient(175deg, #ffffff, #f9fbff);
	border: 1px solid #c8d5e8;
	box-shadow: 0 14px 30px rgba(17, 31, 53, 0.11);
	overflow: hidden;
	padding: 0;
}

#order-standard_cart #orderSummary.order-summary h2 {
	background: linear-gradient(145deg, var(--nx-navy), #2d3f5d);
	color: #f5f8ff;
	font-family: "Outfit", "Segoe UI", sans-serif;
	font-size: 1.72rem;
	font-weight: 700;
	margin: 0;
	padding: 0.9rem 1rem 0.82rem;
	text-align: center;
}

#order-standard_cart #orderSummary.order-summary .summary-container {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0.95rem 1rem 1rem;
}

#order-standard_cart #orderSummary.order-summary .subtotal,
#order-standard_cart #orderSummary.order-summary .recurring-totals {
	color: #415672;
	font-size: 1rem;
	font-weight: 600;
	padding: 0.15rem 0;
}

#order-standard_cart #orderSummary.order-summary .recurring-charges {
	color: #5f718c;
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.45;
	text-align: right;
}

#order-standard_cart #orderSummary.order-summary .total-due-today {
	background: #f8fbff;
	border: 1px solid #d9e4f5;
	border-radius: 0.78rem;
	margin-top: 0.7rem;
	padding: 0.75rem 0.8rem;
	text-align: center;
}

#order-standard_cart #orderSummary.order-summary .total-due-today .amt {
	color: var(--nx-navy);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

#order-standard_cart #checkout.btn-checkout {
	font-size: 1.15rem;
	font-weight: 800;
	margin-top: 0.86rem;
	min-height: 3rem;
	width: 100%;
}

#order-standard_cart #continueShopping.btn-continue-shopping {
	color: #506585;
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	margin-top: 0.38rem;
	text-decoration: none;
}

#order-standard_cart #continueShopping.btn-continue-shopping:hover,
#order-standard_cart #continueShopping.btn-continue-shopping:focus {
	color: var(--nx-navy);
	text-decoration: underline;
}

/* Checkout flow */
#order-standard_cart #frmCheckout {
	margin-top: 0.45rem;
}

#order-standard_cart #containerExistingAccountSelect {
	margin-bottom: 0.9rem;
}

#order-standard_cart #containerNewUserSignup {
	background: linear-gradient(150deg, #ffffff, #f8fbff);
	border: 1px solid var(--nx-line);
	border-radius: 0.92rem;
	box-shadow: 0 8px 20px rgba(18, 32, 52, 0.06);
	margin-bottom: 0.95rem;
	padding: 0.82rem 0.9rem 0.18rem;
	position: relative;
	overflow: visible;
}

#order-standard_cart #containerNewUserSignup > .sub-heading {
	margin-top: 0.35rem;
	margin-bottom: 0.55rem;
}

#order-standard_cart #containerNewUserSignup > .sub-heading + .row {
	background: #ffffff;
	border: 1px solid #dde6f5;
	border-radius: 0.84rem;
	margin-bottom: 0.82rem;
	padding: 0.82rem 0.7rem 0.18rem;
}

#order-standard_cart #containerNewUserSignup .form-group {
	margin-bottom: 0.75rem;
}

#order-standard_cart #containerExistingAccountSelect .account {
	background: linear-gradient(150deg, #ffffff, #f8fbff);
	border: 1px solid var(--nx-line) !important;
	border-radius: 0.82rem;
	margin-bottom: 0.65rem;
	padding: 0.72rem 0.85rem !important;
	position: relative;
	z-index: 1;
}

#order-standard_cart
	#containerExistingAccountSelect
	.account:not(.border-bottom) {
	border-bottom: 1px solid var(--nx-line) !important;
}

#order-standard_cart #containerExistingAccountSelect .account.active {
	background: #ffffff;
	border-color: #9eb6da !important;
	box-shadow: 0 0 0 0.17rem rgba(122, 158, 206, 0.2);
	z-index: 2;
}

#order-standard_cart
	#containerExistingAccountSelect
	.account
	label.radio-inline {
	align-items: flex-start;
	display: flex;
	gap: 0.62rem;
	margin: 0;
	width: 100%;
}

#order-standard_cart
	#containerExistingAccountSelect
	.account
	label.radio-inline
	.iradio_square-blue {
	flex-shrink: 0;
	margin-top: 0.08rem;
}

#order-standard_cart
	#containerExistingAccountSelect
	.account
	label.radio-inline
	.address {
	display: block;
	line-height: 1.45;
	min-width: 0;
	padding-right: 0.2rem;
}

#order-standard_cart
	#containerExistingAccountSelect
	.account
	label.radio-inline
	.address
	.small {
	color: var(--nx-muted);
	display: block;
	font-size: 0.92rem;
	line-height: 1.45;
}

#order-standard_cart .already-registered {
	background: linear-gradient(145deg, #ffffff, #f9fbff);
	border: 1px solid var(--nx-line);
	border-radius: 0.9rem;
	box-shadow: 0 8px 22px rgba(17, 31, 53, 0.06);
	margin-bottom: 1rem;
	padding: 0.82rem 0.95rem;
}

#order-standard_cart .already-registered p {
	color: var(--nx-muted);
	font-size: 1.01rem;
	margin: 0.2rem 0;
	padding-right: 0.5rem;
}

#order-standard_cart #btnAlreadyRegistered,
#order-standard_cart #btnNewUserSignup {
	border: 0;
	border-radius: 0.68rem;
	font-weight: 700;
	min-height: 2.35rem;
	padding: 0.4rem 0.85rem;
}

#order-standard_cart #btnAlreadyRegistered {
	background: linear-gradient(135deg, #11a7b8, #158da2);
	box-shadow: 0 8px 18px rgba(21, 141, 162, 0.2);
	color: #ffffff;
}

#order-standard_cart #btnAlreadyRegistered:hover,
#order-standard_cart #btnAlreadyRegistered:focus {
	filter: brightness(1.03);
	transform: translateY(-1px);
}

#order-standard_cart #btnNewUserSignup {
	background: linear-gradient(135deg, var(--nx-accent), #f8c44f);
	box-shadow: 0 8px 18px rgba(203, 134, 10, 0.2);
	color: var(--nx-navy);
}

#order-standard_cart #frmCheckout > .sub-heading {
	margin-top: 1.35rem;
	margin-bottom: 0.7rem;
}

#order-standard_cart #frmCheckout > .sub-heading + .row,
#order-standard_cart #containerPassword,
#order-standard_cart #paymentGatewaysContainer,
#order-standard_cart .cc-input-container,
#order-standard_cart #newCardSaveSettings,
#order-standard_cart .marketing-email-optin {
	background: linear-gradient(150deg, #ffffff, #f8fbff);
	border: 1px solid var(--nx-line);
	border-radius: 0.92rem;
	box-shadow: 0 8px 20px rgba(18, 32, 52, 0.06);
	padding: 0.9rem 1rem;
	margin-bottom: 0.92rem;
}

#order-standard_cart #paymentGatewaysContainer {
	padding-bottom: 0.75rem;
}

#order-standard_cart #paymentGatewaysContainer .small.text-muted {
	color: var(--nx-muted) !important;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.6rem;
}

#order-standard_cart #paymentGatewaysContainer .text-center {
	display: flex;
	flex-wrap: wrap;
	gap: 0.62rem;
	justify-content: center;
}

#order-standard_cart .cc-input-container ul {
	margin-bottom: 0.75rem;
	padding-left: 0;
	list-style: none;
}

#order-standard_cart #totalDueToday.alert-success {
	background: linear-gradient(
		145deg,
		rgba(36, 122, 69, 0.1),
		rgba(36, 122, 69, 0.05)
	);
	border: 1px solid rgba(36, 122, 69, 0.25);
	border-left: 4px solid #247a45;
	border-radius: 0.82rem;
	color: #1a4d2d;
	font-size: 1.08rem;
	font-weight: 700;
	padding: 0.82rem 0.9rem;
}

#order-standard_cart #totalDueToday #totalCartPrice {
	font-size: 1.25rem;
	font-weight: 800;
}

#order-standard_cart .gateway-errors {
	border-left: 4px solid var(--nx-danger);
	border-radius: 0.72rem;
	margin-bottom: 0.8rem;
}

#order-standard_cart #btnCompleteOrder {
	font-size: 1.16rem;
	font-weight: 800;
	min-height: 3rem;
	min-width: 14rem;
	margin-top: 0.55rem;
}

#order-standard_cart .btn[disabled],
#order-standard_cart .btn.disabled,
#order-standard_cart #btnCompleteOrder[disabled] {
	background: #d7deea !important;
	border-color: #d7deea !important;
	box-shadow: none !important;
	color: #7f8da3 !important;
	cursor: not-allowed;
	opacity: 1;
	transform: none;
}

#order-standard_cart .checkout-security-msg {
	background-color: #fff3cd;
	border: 1px solid #ffeeba;
	border-radius: 0.25rem;
	color: #856404;
	font-weight: 400;
	padding: 0.75rem 1.25rem;
	line-height: 1.5;
	margin-top: 1rem;
}

/* Domain search and listing UX */
.avalon-client .master-breadcrumb .breadcrumb {
	background: #f7faff;
	border: 1px solid var(--nx-line);
	border-radius: 0.72rem;
	box-shadow: 0 4px 14px rgba(20, 33, 53, 0.04);
	margin-top: 0.7rem;
	padding: 0.62rem 0.92rem;
}

.avalon-client .master-breadcrumb .breadcrumb-item,
.avalon-client .master-breadcrumb .breadcrumb-item.active {
	color: var(--nx-navy);
	font-weight: 700;
}

#order-standard_cart .domain-checker-bg {
	background: linear-gradient(135deg, #ffd24c, #f7b71f);
	border: 1px solid rgba(203, 134, 10, 0.24);
	border-radius: 1rem;
	box-shadow: 0 14px 34px rgba(203, 134, 10, 0.2);
	padding: 1.15rem 1rem;
}

#order-standard_cart .cart-body > p {
	color: var(--nx-muted);
	font-size: 1rem;
	margin-bottom: 0.95rem;
}

#order-standard_cart #frmDomainChecker .input-group.input-group-box {
	background: #ffffff;
	border: 2px solid rgba(28, 39, 56, 0.12);
	border-radius: 0.95rem;
	box-shadow: 0 10px 24px rgba(20, 33, 53, 0.12);
	overflow: hidden;
}

#order-standard_cart #frmDomainChecker #inputDomain {
	border: 0;
	box-shadow: none;
	font-size: 1.14rem;
	font-weight: 600;
	height: 3.25rem;
	padding-left: 1rem;
}

#order-standard_cart #frmDomainChecker #btnCheckAvailability {
	border-radius: 0.72rem;
	font-size: 1.12rem;
	font-weight: 800;
	height: 3rem;
	line-height: 1.1;
	margin: 0.2rem;
	min-width: 7.4rem;
	padding: 0 1.05rem;
}

#order-standard_cart #frmDomainChecker #btnCheckAvailability:disabled,
#order-standard_cart #frmDomainChecker #btnCheckAvailability.disabled {
	background: #d8deea !important;
	box-shadow: none !important;
	color: #74829a !important;
	opacity: 1;
}

#order-standard_cart #DomainSearchResults {
	margin-top: 1rem;
}

#order-standard_cart #searchDomainInfo,
#order-standard_cart #primaryLookupResult {
	background: #ffffff;
	border: 1px solid var(--nx-line);
	border-radius: 0.86rem;
	box-shadow: 0 8px 22px rgba(18, 32, 52, 0.06);
	padding: 0.95rem 1rem;
}

#order-standard_cart #primaryLookupResult .domain-available {
	color: #247a45;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

#order-standard_cart #primaryLookupResult .domain-price {
	align-items: center;
	display: flex;
	justify-content: center;
	gap: 0.72rem;
	margin-bottom: 0;
	margin-top: 0.7rem;
}

#order-standard_cart #primaryLookupResult .domain-price .price {
	color: var(--nx-navy);
	font-size: 2rem;
	font-weight: 800;
}

#order-standard_cart .domain-lookup-result .btn-add-to-cart {
	background: linear-gradient(135deg, var(--nx-accent), #f8c44f);
	border: 0;
	border-radius: 0.72rem;
	box-shadow: 0 8px 18px rgba(203, 134, 10, 0.2);
	color: var(--nx-navy);
	font-weight: 800;
	padding: 0.45rem 0.9rem;
}

#order-standard_cart .domain-lookup-result .btn-add-to-cart .to-add,
#order-standard_cart .domain-lookup-result .btn-add-to-cart .added,
#order-standard_cart .domain-lookup-result .btn-add-to-cart .unavailable {
	font-weight: 900;
}

#order-standard_cart .domain-lookup-result .btn-add-to-cart:hover,
#order-standard_cart .domain-lookup-result .btn-add-to-cart:focus {
	background: linear-gradient(135deg, #ffd166, #f7b733);
	color: var(--nx-navy);
	text-decoration: none;
	transform: translateY(-1px);
}

#order-standard_cart .suggested-domains {
	margin-top: 1rem;
}

#order-standard_cart .suggested-domains .list-group-item {
	align-items: center;
	border-color: #e7edf8;
	display: flex;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 0.75rem 0.9rem;
}

#order-standard_cart .domain-pricing .bg-white {
	border: 1px solid var(--nx-line);
	border-radius: 0.9rem;
	box-shadow: 0 10px 24px rgba(18, 32, 52, 0.06);
	overflow: hidden;
}

#order-standard_cart .domain-pricing .tld-pricing-header {
	background: linear-gradient(145deg, #f6f9ff, #edf3fd);
	border-bottom: 1px solid #dce6f7;
	color: var(--nx-navy);
	font-weight: 700;
}

#order-standard_cart .domain-pricing .tld-row {
	border-top: 1px solid #e6edf9;
	transition: background-color 0.16s ease;
}

#order-standard_cart .domain-pricing .tld-row:hover {
	background: #f8fbff;
}

#order-standard_cart .tld-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.46rem;
	margin-bottom: 0.9rem;
}

#order-standard_cart .tld-filters .badge {
	background: #eef4ff;
	border: 1px solid #d5e0f1;
	border-radius: 999px;
	color: #2d4569;
	font-size: 0.84rem;
	font-weight: 700;
	padding: 0.38rem 0.72rem;
	text-decoration: none;
}

#order-standard_cart .tld-filters .badge:hover,
#order-standard_cart .tld-filters .badge:focus {
	background: #e4efff;
	color: #1f3556;
	text-decoration: none;
}

#order-standard_cart .domain-promo-box {
	background: linear-gradient(145deg, #ffffff, #f7faff);
	border: 1px solid var(--nx-line);
	border-radius: 0.9rem;
	box-shadow: 0 10px 22px rgba(19, 33, 52, 0.06);
	height: 100%;
	padding: 1rem;
}

/* Configure domains page */
#order-standard_cart #frmConfigureDomains > p:first-of-type {
	color: var(--nx-muted);
	font-size: 1rem;
	margin-bottom: 1.1rem;
}

#order-standard_cart #frmConfigureDomains .sub-heading {
	margin-top: 1.1rem;
}

#order-standard_cart #frmConfigureDomains .addon-products {
	margin-top: 0.35rem;
	margin-bottom: 0.8rem;
}

#order-standard_cart #frmConfigureDomains .panel-addon {
	background: linear-gradient(155deg, #ffffff, #f8fbff);
	border: 1px solid var(--nx-line);
	border-radius: 0.9rem;
	box-shadow: 0 10px 24px rgba(18, 32, 52, 0.06);
	overflow: hidden;
	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
	height: 100%;
}

#order-standard_cart #frmConfigureDomains .panel-addon:hover {
	border-color: #bfd0ec;
	box-shadow: 0 14px 30px rgba(19, 33, 52, 0.12);
	transform: translateY(-1px);
}

#order-standard_cart #frmConfigureDomains .panel-addon .panel-body {
	color: #49576f;
	font-size: 0.95rem;
	line-height: 1.45;
	padding: 0.88rem 0.95rem 0.82rem;
	min-height: 9.2rem;
}

#order-standard_cart #frmConfigureDomains .panel-addon label {
	align-items: center;
	color: var(--nx-navy);
	display: flex;
	font-size: 0.98rem;
	font-weight: 800;
	gap: 0.45rem;
	margin-bottom: 0.4rem;
}

#order-standard_cart #frmConfigureDomains .panel-addon .panel-price {
	background: #f3f7ff;
	border-top: 1px solid #dce6f7;
	color: #415672;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.42rem 0.72rem;
	text-align: center;
}

#order-standard_cart #frmConfigureDomains .panel-addon .panel-add {
	background: linear-gradient(135deg, var(--nx-accent), #f8c44f);
	border-top: 1px solid rgba(203, 134, 10, 0.28);
	color: var(--nx-navy);
	font-size: 0.96rem;
	font-weight: 900;
	padding: 0.46rem 0.72rem;
	text-align: center;
	text-transform: none;
}

#order-standard_cart #frmConfigureDomains .panel-addon.panel-addon-selected {
	border-color: rgba(203, 134, 10, 0.52);
	box-shadow: 0 0 0 0.18rem rgba(250, 180, 27, 0.18);
}

#order-standard_cart #frmConfigureDomains a[href*="/cart.php"][style] {
	align-items: center;
	background: linear-gradient(145deg, #edf4ff, #dce9ff);
	border: 1px solid rgba(88, 126, 177, 0.42);
	border-radius: 999px;
	color: #1c3f6f !important;
	display: inline-flex;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1;
	padding: 0.42rem 0.7rem;
	text-decoration: none;
	transition:
		background-color 0.16s ease,
		border-color 0.16s ease,
		color 0.16s ease,
		transform 0.16s ease;
}

#order-standard_cart #frmConfigureDomains a[href*="/cart.php"][style]:hover,
#order-standard_cart #frmConfigureDomains a[href*="/cart.php"][style]:focus {
	background: linear-gradient(145deg, #dceaff, #cfe0fb);
	border-color: rgba(64, 107, 163, 0.62);
	color: #102e57 !important;
	text-decoration: none;
	transform: translateY(-1px);
}

#order-standard_cart #frmConfigureDomains input[id^="inputNs"] {
	background: #ffffff;
	border: 1px solid var(--nx-line);
	border-radius: 0.72rem;
	min-height: 2.75rem;
}

#order-standard_cart #frmConfigureDomains .text-center.pt-4 {
	margin-top: 0.5rem;
}

@media (min-width: 992px) {
	#order-standard_cart .cart-sidebar {
		position: sticky;
		top: 1.2rem;
	}
}

@media (max-width: 991.98px) {
	#order-standard_cart #frmDomainChecker #inputDomain {
		font-size: 1.02rem;
		height: 2.95rem;
	}

	#order-standard_cart #frmDomainChecker #btnCheckAvailability {
		font-size: 1.02rem;
		height: 2.6rem;
		min-width: 6.2rem;
	}

	#order-standard_cart #primaryLookupResult .domain-available {
		font-size: 1.45rem;
	}

	#order-standard_cart #primaryLookupResult .domain-price .price {
		font-size: 1.45rem;
	}

	#order-standard_cart #frmConfigureDomains .panel-addon .panel-body {
		min-height: auto;
	}

	#order-standard_cart .cart-body .nav-justified {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	#order-standard_cart .products .product > footer {
		align-items: flex-start;
		flex-direction: column;
	}

	#order-standard_cart .btn-order-now,
	#order-standard_cart .btn-success,
	#order-standard_cart .btn.btn-success {
		min-width: 0;
		width: 100%;
	}

	#order-standard_cart .product-pricing .price {
		font-size: 1.5rem;
	}

	#order-standard_cart #orderSummary {
		position: static;
	}

	#order-standard_cart #frmConfigureProduct .addon-promo-container {
		padding: 0.82rem 0.82rem;
	}

	#order-standard_cart
		#frmConfigureProduct
		.addon-promo-container
		.description {
		column-gap: 0.95rem;
		gap: 0.62rem;
		grid-template-columns: 3rem 1fr;
	}

	#order-standard_cart #frmConfigureProduct .addon-promo-container .logo {
		height: 3rem;
		width: 3rem;
	}

	#order-standard_cart
		#frmConfigureProduct
		.addon-promo-container
		.radio-inline {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 0.4rem;
	}

	#order-standard_cart
		#frmConfigureProduct
		.addon-promo-container
		.radio-inline
		.pull-right,
	#order-standard_cart
		#frmConfigureProduct
		.addon-promo-container
		.radio-inline
		.float-right {
		margin-left: 1.7rem;
	}

	#order-standard_cart #frmConfigureProduct .field-container .select-inline {
		max-width: 100%;
	}

	#order-standard_cart .view-cart-items .item-price {
		text-align: right;
	}

	#order-standard_cart .view-cart-items .item-price > span:first-child,
	#order-standard_cart .view-cart-items .item-price .cycle {
		text-align: right;
	}

	#order-standard_cart .empty-cart {
		justify-content: flex-start;
		padding-right: 0;
	}

	#order-standard_cart .view-cart-tabs .tab-content {
		border-radius: 0.78rem;
	}

	#order-standard_cart #btnCompleteOrder {
		min-width: 16rem;
	}
}

@media (max-width: 767.98px) {
	.avalon-client .master-breadcrumb .breadcrumb {
		padding: 0.52rem 0.72rem;
	}

	#order-standard_cart .domain-checker-bg {
		padding: 0.82rem 0.72rem;
	}

	#order-standard_cart #frmDomainChecker .input-group.input-group-box {
		border-radius: 0.82rem;
	}

	#order-standard_cart #frmDomainChecker .input-group.input-group-box,
	#order-standard_cart #frmDomainChecker .input-group-btn,
	#order-standard_cart #frmDomainChecker .input-group-append {
		display: flex;
		flex-direction: column;
		gap: 0.45rem;
	}

	#order-standard_cart #frmDomainChecker #btnCheckAvailability {
		margin: 0 0.28rem 0.28rem;
		width: calc(100% - 0.56rem);
	}

	#order-standard_cart #searchDomainInfo,
	#order-standard_cart #primaryLookupResult {
		padding: 0.72rem 0.78rem;
	}

	#order-standard_cart #primaryLookupResult .domain-price {
		flex-direction: column;
		gap: 0.42rem;
	}

	#order-standard_cart .suggested-domains .list-group-item {
		align-items: flex-start;
		flex-direction: column;
	}

	#order-standard_cart .cart-body .nav-justified {
		grid-template-columns: 1fr;
	}

	#order-standard_cart .header-lined h1 {
		font-size: 1.7rem;
	}

	#order-standard_cart .products .product > header,
	#order-standard_cart .products .product-desc,
	#order-standard_cart .products .product > footer {
		padding-left: 0.92rem;
		padding-right: 0.92rem;
	}

	#order-standard_cart .view-cart-items .item {
		padding-left: 0.62rem;
		padding-right: 0.62rem;
	}

	#order-standard_cart .already-registered {
		padding: 0.72rem 0.75rem;
	}

	#order-standard_cart .already-registered .pull-right,
	#order-standard_cart .already-registered .float-right {
		float: none !important;
		margin-bottom: 0.6rem;
		text-align: left;
	}

	#order-standard_cart #btnAlreadyRegistered,
	#order-standard_cart #btnNewUserSignup,
	#order-standard_cart #btnCompleteOrder {
		width: 100%;
	}
}
