/**
 * Jedi-Robe WooCommerce basket page.
 *
 * Consolidated final stylesheet for the Shoptimizer / WooCommerce classic
 * basket. Superseded declarations and duplicate selector blocks have been
 * removed while preserving the effective styles from the supplied final CSS.
 *
 * WooCommerce retains ownership of basket calculations, quantities, coupons,
 * shipping, totals and checkout behaviour. Shoptimizer retains ownership of
 * the classic cart markup and progress-step structure.
 *
 * @package Jedi_Theme
 * @subpackage WooCommerce_Cart
 * @since 1.0.0
 */

/* ==========================================================================
   Basket tokens
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart {
	--jr-cart-border: rgba(152, 169, 192, 0.17);
	--jr-cart-border-strong: rgba(152, 169, 192, 0.28);
	--jr-cart-muted: rgba(255, 255, 255, 0.58);
	--jr-cart-panel: rgba(7, 13, 21, 0.54);
}

/* ==========================================================================
   Basket page shell
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	.entry-header {
	display: block;
}

body.jr-dark-commerce.woocommerce-cart
	.entry-content
	> .woocommerce {
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	color: var(--jr-text);
}

/* ==========================================================================
   Main basket layout
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	.shoptimizer-cart-wrapper {
	display: grid;
	grid-template-columns:
		minmax(0, 1.65fr)
		minmax(21rem, 0.85fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
	width: 100%;
	margin: 0;
	padding: 0;
}

body.jr-dark-commerce.woocommerce-cart
	.woocommerce-cart-form,
body.jr-dark-commerce.woocommerce-cart
	.cart-collaterals {
	float: none;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

/* ==========================================================================
   Basket table
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart {
	width: 100%;
	margin: 0;
	border: 0;
	background: transparent;
	color: var(--jr-text);
	border-collapse: collapse;
	border-spacing: 0;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	thead
	th {
	padding:
		0
		0.6rem
		0.85rem;
	border: 0;
	border-bottom: 1px solid var(--jr-cart-border);
	background: transparent;
	color: var(--jr-cart-muted);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	tr.cart_item {
	border: 0;
	border-bottom: 1px solid var(--jr-cart-border);
	background: transparent;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	tr.cart_item
	td {
	padding:
		1.05rem
		0.7rem;
	border: 0;
	background: transparent;
	color: var(--jr-text);
	vertical-align: middle;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.product-thumbnail {
	width: 5.75rem;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.product-thumbnail
	img {
	display: block;
	width: 4.75rem;
	height: 4.75rem;
	margin: 0;
	padding: 0.3rem;
	border: 1px solid rgba(152, 169, 192, 0.18);
	background: #fff;
	object-fit: contain;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.product-name
	a {
	color: var(--jr-text);
	font-size: 0.88rem;
	font-weight: 650;
	line-height: 1.45;
	text-decoration: none;
	transition: color 160ms ease;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	:is(
		.product-price,
		.product-subtotal
	) {
	color: var(--jr-text);
	font-size: 0.86rem;
	line-height: 1.4;
	white-space: nowrap;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.product-subtotal {
	font-weight: 750;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.product-remove
	a.remove {
	position: relative;
	display: block;
	width: 2rem;
	height: 2rem;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.46);
	font-size: 0;
	line-height: 1;
	text-decoration: none;
	transition: color 160ms ease;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.product-remove
	a.remove::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 15px;
	height: 15px;
	background: currentcolor;
	transform: translate(-50%, -50%);
	content: "";
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6 5 6 21 6'%3E%3C/polyline%3E%3Cpath d='M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'%3E%3C/path%3E%3Cline x1='10' y1='11' x2='10' y2='17'%3E%3C/line%3E%3Cline x1='14' y1='11' x2='14' y2='17'%3E%3C/line%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6 5 6 21 6'%3E%3C/polyline%3E%3Cpath d='M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'%3E%3C/path%3E%3Cline x1='10' y1='11' x2='10' y2='17'%3E%3C/line%3E%3Cline x1='14' y1='11' x2='14' y2='17'%3E%3C/line%3E%3C/svg%3E");
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.product-remove
	a.remove:focus-visible {
	outline: 2px solid var(--jr-blue-light);
	outline-offset: 2px;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.quantity {
	border: 1px solid var(--jr-cart-border-strong);
	border-radius: 0;
	background: rgba(2, 6, 9, 0.76);
	color: var(--jr-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.quantity
	input.qty {
	border: 0;
	background: transparent;
	color: var(--jr-text);
	caret-color: var(--jr-text);
	box-shadow: none;
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.quantity-nav {
	border-color: var(--jr-cart-border);
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.quantity-button.quantity-up:hover::before {
	background: var(--jr-text);
}

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	.quantity-button.quantity-down:hover::before {
	background: var(--jr-text);
}

/* ==========================================================================
   Basket actions
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	table.shop_table.cart
	td.actions {
	padding:
		1.25rem
		0
		0;
	border: 0;
	background: transparent;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	.coupon {
	display: flex;
	float: left;
	gap: 0.5rem;
	align-items: stretch;
	padding-top: 5px;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	#coupon_code {
	width: 10rem;
	min-height: 3.35rem;
	margin: 0;
	padding: 0.65rem 0.8rem;
	border: 1px solid var(--jr-cart-border-strong);
	border-radius: 0;
	outline: 0;
	background: rgba(2, 6, 9, 0.84);
	color: var(--jr-text);
	font-size: 0.95rem;
	box-shadow: none;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	#coupon_code::placeholder {
	color: var(--jr-cart-muted);
	opacity: 1;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	#coupon_code:focus {
	border-color: rgba(69, 217, 107, 0.62);
	box-shadow: 0 0 0 3px rgba(69, 217, 107, 0.07);
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button {
	--jr-button-hover-overlay:
		linear-gradient(
			135deg,
			rgba(69, 217, 107, 0.1),
			transparent 58%
		);
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.35rem;
	margin: 0;
	padding:
		0.9rem
		1.45rem;
	overflow: hidden;
	border: 1px solid rgba(152, 169, 192, 0.48);
	border-radius: 0;
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.045),
			transparent 42%
		),
		linear-gradient(
			180deg,
			rgba(14, 24, 36, 0.96),
			rgba(6, 12, 20, 0.96)
		);
	color: #f7f9fc;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.065em;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	box-shadow:
		0 0.65rem 1.5rem rgba(0, 0, 0, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		inset 0 -1px 0 rgba(69, 217, 107, 0.08);
	transform: translateY(0);
	transition:
		transform 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		color 180ms ease,
		filter 180ms ease;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	> button[name="update_cart"] {
	float: right;
	margin-top: 5px;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button:disabled {
	border-color: rgba(152, 169, 192, 0.2);
	background:
		linear-gradient(
			180deg,
			rgba(14, 24, 36, 0.48),
			rgba(6, 12, 20, 0.48)
		);
	color: rgba(247, 249, 252, 0.38);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
	filter: none;
	opacity: 1;
	cursor: not-allowed;
	transform: none;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button::after {
	position: absolute;
	right: 0.45rem;
	bottom: 0.4rem;
	z-index: 2;
	width: 0.42rem;
	height: 0.42rem;
	border-right: 1px solid rgba(247, 249, 252, 0.62);
	border-bottom: 1px solid rgba(247, 249, 252, 0.62);
	transition: border-color 180ms ease;
	content: "";
	pointer-events: none;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button:not(:disabled):active {
	transform:
		translateY(0)
		scale(0.985);
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button:focus-visible {
	outline: 2px solid var(--jr-blue-light);
	outline-offset: 3px;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button:disabled::after {
	border-right-color: rgba(247, 249, 252, 0.22);
	border-bottom-color: rgba(247, 249, 252, 0.22);
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--jr-button-hover-overlay);
	opacity: 0;
	transition: opacity 180ms ease;
	content: "";
	pointer-events: none;
}

body.jr-dark-commerce.woocommerce-cart
	.actions
	button.button:disabled::before {
	opacity: 0;
}

/* ==========================================================================
   Basket totals
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	.cart-collaterals
	.cart_totals {
	position: relative;
	isolation: isolate;
	float: none;
	width: 100%;
	margin: 0;
	padding: clamp(1.25rem, 2vw, 1.65rem);
	border: 1px solid rgba(152, 169, 192, 0.28);
	border-radius: 0;
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.025),
			transparent 42%
		),
		radial-gradient(
			circle at 100% 0,
			rgba(111, 203, 255, 0.05),
			transparent 18rem
		),
		var(--jr-cart-panel);
	color: var(--jr-text);
	box-shadow:
		0 1.5rem 3.5rem rgba(0, 0, 0, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

body.jr-dark-commerce.woocommerce-cart
	.cart-collaterals
	.cart_totals::before {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 1.35rem;
	height: 1.35rem;
	border-top: 2px solid var(--jr-green-light);
	border-left: 2px solid var(--jr-green-light);
	content: "";
	pointer-events: none;
}

body.jr-dark-commerce.woocommerce-cart
	.cart-collaterals
	.cart_totals::after {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 1.35rem;
	height: 1.35rem;
	border-right: 1px solid rgba(111, 203, 255, 0.48);
	border-bottom: 1px solid rgba(111, 203, 255, 0.48);
	content: "";
	pointer-events: none;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	h2 {
	display: block;
	margin:
		0
		0
		1rem;
	padding:
		0
		0
		0.85rem;
	border-bottom: 1px solid var(--jr-cart-border);
	color: var(--jr-text);
	font-size: clamp(1.35rem, 1.25rem + 0.2vw, 1.5rem);
	font-weight: 740;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	table.shop_table {
	width: 100%;
	margin: 0;
	border: 0;
	background: transparent;
	color: var(--jr-text);
	border-collapse: collapse;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	table.shop_table
	tr {
	border: 0;
	border-bottom: 1px solid var(--jr-cart-border);
	background: transparent;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	table.shop_table
	th,
body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	table.shop_table
	td {
	padding:
		0.9rem
		0;
	border: 0;
	background: transparent;
	color: var(--jr-text);
	font-size: 0.95rem;
	line-height: 1.5;
	vertical-align: top;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	table.shop_table
	th {
	font-weight: 700;
	text-align: left;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	table.shop_table
    tr.shipping
	th {
	padding-bottom: 0;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	table.shop_table
	td {
	text-align: right;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	#shipping_method {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: left;
	list-style: none;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	#shipping_method
	li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--jr-text);
	text-align: left;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	#shipping_method
	label {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--jr-text);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	.woocommerce-shipping-destination {
	width: 100%;
	margin:
		0.55rem
		0
		0;
	padding: 0;
	color: var(--jr-cart-muted);
	font-size: 0.88rem;
	line-height: 1.55;
	text-align: left;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	.woocommerce-shipping-destination
	strong {
	color: var(--jr-text);
	font-weight: 650;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	.order-total {
	border-bottom: 0;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	.order-total
	th,
body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	.order-total
	td {
	padding-top: 1rem;
	color: var(--jr-text);
	font-size: 1.08rem;
	font-weight: 800;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	.order-total
	.amount {
	color: var(--jr-text);
	font-size: 1.3rem;
	font-weight: 850;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	tr.woocommerce-shipping-totals
	td {
	text-align: left;
}

body.jr-dark-commerce.woocommerce-cart
	.cart_totals
	#shipping_method
	label
	.amount {
	margin-left: auto;
	padding-left: 1rem;
	color: var(--jr-text);
	font-weight: 500;
	white-space: nowrap;
}

/* ==========================================================================
   Proceed to checkout
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	.wc-proceed-to-checkout {
	margin:
		1.15rem
		0
		0;
	padding: 0;
}

body.jr-dark-commerce.woocommerce-cart
	.wc-proceed-to-checkout
	a.checkout-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.25rem;
	margin: 0;
	padding: 0.8rem 1rem;
	border: 1px solid var(--jr-green-light);
	border-radius: 0;
	background:
		linear-gradient(
			135deg,
			var(--jr-green-light),
			var(--jr-green)
		);
	color: #080a0e;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.015em;
	line-height: 1.1;
	text-decoration: none;
	box-shadow:
		0 0.7rem 1.5rem rgba(0, 0, 0, 0.24),
		0 0 1rem rgba(45, 166, 83, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
	transform: translateY(0);
	transition:
		filter 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

body.jr-dark-commerce.woocommerce-cart
	.cart-collaterals
	.checkout-button::before {
	background-color: #080a0e;
}

/* ==========================================================================
   Trust symbols
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	.cart-custom-field {
	margin:
		1rem
		0
		0;
	padding: 0;
}

body.jr-dark-commerce.woocommerce-cart
	.cart-custom-field
	p {
	margin: 0;
}

body.jr-dark-commerce.woocommerce-cart
	.cart-custom-field
	img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0.35rem;
	border: 1px solid var(--jr-cart-border);
	background: #fff;
}

/* ==========================================================================
   WooCommerce notices
   ========================================================================== */

body.jr-dark-commerce.woocommerce-cart
	:is(
		.woocommerce-message,
		.woocommerce-info,
		.woocommerce-error
	) {
	margin:
		0
		0
		1.5rem;
	padding:
		1rem
		1.15rem;
	border: 1px solid var(--jr-cart-border-strong);
	border-radius: 0;
	background: rgba(10, 17, 27, 0.82);
	color: var(--jr-text);
	box-shadow: none;
}

body.jr-dark-commerce.woocommerce-cart
	.woocommerce-message {
	border-left: 2px solid var(--jr-success);
}

body.jr-dark-commerce.woocommerce-cart
	.woocommerce-info {
	border-left: 2px solid var(--jr-blue);
}

body.jr-dark-commerce.woocommerce-cart
	.woocommerce-error {
	border-left: 2px solid var(--jr-danger);
}

body.jr-dark-commerce.woocommerce-cart
	.wp-jedi-toolkit-shipping-restriction-notice {
	border-color: rgba(226, 164, 71, 0.25);
	border-left-color: var(--jr-warning);
	background:
		linear-gradient(
			90deg,
			rgba(226, 164, 71, 0.08),
			rgba(10, 17, 27, 0.82) 65%
		);
}

body.jr-dark-commerce.woocommerce-cart .cart-custom-field img {
    background: none;
}

/* ==========================================================================
   Pointer hover interactions
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table.cart
			tr.cart_item:hover {
		background:
			linear-gradient(
				90deg,
				rgba(69, 217, 107, 0.02),
				transparent 72%
			);
	}

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table.cart
			.product-name
			a:hover {
		color: var(--jr-green-bright);
	}

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table.cart
			.product-remove
			a.remove:hover {
		background: transparent;
		color: var(--jr-danger);
	}

	body.jr-dark-commerce.woocommerce-cart
			.actions
			button.button:not(:disabled):hover {
		border-color: rgba(69, 217, 107, 0.68);
		background: rgba(23, 34, 48, 0.9);
		color: #fff;
		box-shadow:
			0 1rem 2.2rem rgba(0, 0, 0, 0.32),
			0 0 1.2rem rgba(45, 166, 83, 0.16),
			inset 0 1px 0 rgba(255, 255, 255, 0.1);
		filter: brightness(1.1);
		transform: translateY(-2px);
	}

	body.jr-dark-commerce.woocommerce-cart
			.wc-proceed-to-checkout
			a.checkout-button:hover {
		color: #080a0e;
		box-shadow:
			0 0.9rem 1.8rem rgba(0, 0, 0, 0.3),
			0 0 1.25rem rgba(45, 166, 83, 0.14);
		filter: brightness(1.06);
		transform: translateY(-1px);
	}

	body.jr-dark-commerce.woocommerce-cart
			.checkout-wrap
			> ul.checkout-bar
			> li
			> span
			> a:hover {
		color: var(--jr-text);
	}

	body.jr-dark-commerce.woocommerce-cart
			.actions
			button.button:not(:disabled):hover::after {
		border-right-color: rgba(69, 217, 107, 0.95);
		border-bottom-color: rgba(69, 217, 107, 0.95);
	}

	body.jr-dark-commerce.woocommerce-cart
			.actions
			button.button:not(:disabled):hover::before {
		opacity: 1;
	}
}

/* ==========================================================================
   Medium screens
   ========================================================================== */

@media (max-width: 1100px) {

	body.jr-dark-commerce.woocommerce-cart
			.shoptimizer-cart-wrapper {
		grid-template-columns: minmax(0, 1fr);
		gap: 2rem;
	}

	body.jr-dark-commerce.woocommerce-cart
			.cart-collaterals {
		max-width: none;
	}
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 720px) {

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table_responsive
			tr.cart_item {
		border: 1px solid var(--jr-cart-border);
		background: rgba(7, 13, 21, 0.28);
	}

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table_responsive
			tr.cart_item
			td {
		border-bottom: 1px solid var(--jr-cart-border);
	}

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table_responsive
			tr.cart_item
			td:last-child {
		border-bottom: 0;
	}

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table_responsive
			td::before {
		color: var(--jr-cart-muted);
		font-weight: 700;
	}

	body.jr-dark-commerce.woocommerce-cart
			.actions
			.coupon {
		display: grid;
		float: none;
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}

	body.jr-dark-commerce.woocommerce-cart
			.actions
			#coupon_code {
		width: 100%;
	}

	body.jr-dark-commerce.woocommerce-cart
			.actions
			.coupon
			button,
		body.jr-dark-commerce.woocommerce-cart
			.actions
			> button[name="update_cart"] {
		float: none;
		width: 100%;
	}

	body.jr-dark-commerce.woocommerce-cart
			.actions
			> button[name="update_cart"] {
		margin-top: 0.75rem;
	}

	body.jr-dark-commerce.woocommerce-cart
			.cart-collaterals
			.cart_totals {
		padding:
			1.25rem
			1rem;
	}

	body.jr-dark-commerce.woocommerce-cart
			.checkout-wrap {
		min-height: 4.5rem;
		margin-bottom: 1.4rem;
	}

	body.jr-dark-commerce.woocommerce-cart
			.checkout-wrap
			> ul.checkout-bar {
		min-height: 4.25rem;
	}

	body.jr-dark-commerce.woocommerce-cart
			.checkout-wrap
			> ul.checkout-bar
			> li {
		min-height: 4.25rem;
		padding:
			0
			0.25rem;
		font-size: 0.66rem;
	}

	body.jr-dark-commerce.woocommerce-cart
			.checkout-wrap
			> ul.checkout-bar
			> li::before {
		flex-basis: 1.75rem;
		width: 1.75rem;
		height: 1.75rem;
		font-size: 0.66rem;
		box-shadow: 0 0 0 0.25rem #050a10;
	}

	body.jr-dark-commerce.woocommerce-cart
			.checkout-wrap
			> ul.checkout-bar
			> li:not(:last-child)::after {
		top: 0.875rem;
		right: calc(-50% + 1.15rem);
		left: calc(50% + 1.15rem);
	}

	body.jr-dark-commerce.woocommerce-cart
			.checkout-wrap
			> ul.checkout-bar
			> li
			> span {
		margin-top: 0.55rem;
	}
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	body.jr-dark-commerce.woocommerce-cart
			table.shop_table.cart
			a,
		body.jr-dark-commerce.woocommerce-cart
			.actions
			button,
		body.jr-dark-commerce.woocommerce-cart
			.wc-proceed-to-checkout
			a.checkout-button {
		transition: none;
	}

	body.jr-dark-commerce.woocommerce-cart
			.wc-proceed-to-checkout
			a.checkout-button:hover {
		transform: none;
	}
}