/*
 * ParentRoute
 * Modern classic WooCommerce cart page
 */

/* =========================================================
   PAGE FOUNDATION
   ========================================================= */

/* Hide the global newsletter only on the custom cart page. */
.pr-cart-page-active #PRFooterNewsletterSection {
	display: none !important;
}

.pr-cart-page-active {
	background: #f7f8f5;
}

.pr-cart-page-active .entry-header,
.pr-cart-page-active .hero-section {
	display: none;
}

.pr-cart-page {
	--pr-cart-bg: #f7f8f5;
	--pr-cart-surface: #ffffff;
	--pr-cart-surface-soft: #f8faf7;
	--pr-cart-text: #17231e;
	--pr-cart-muted: #68746d;
	--pr-cart-accent: #78917f;
	--pr-cart-accent-soft: rgba(120, 145, 127, 0.1);
	--pr-cart-border: rgba(23, 35, 30, 0.1);
	--pr-cart-border-strong: rgba(23, 35, 30, 0.15);
	--pr-cart-shadow:
		0 26px 78px rgba(23, 35, 30, 0.075);
	--pr-cart-shadow-soft:
		0 14px 38px rgba(23, 35, 30, 0.05);

	width: 100%;
	padding:
		clamp(54px, 7vw, 94px)
		0
		clamp(82px, 10vw, 132px);
	background:
		radial-gradient(
			circle at 88% 8%,
			rgba(120, 145, 127, 0.06),
			transparent 26%
		),
		var(--pr-cart-bg);
	color: var(--pr-cart-text);
}

.pr-cart-page,
.pr-cart-page *,
.pr-cart-page *::before,
.pr-cart-page *::after {
	box-sizing: border-box;
}

.pr-cart-page__container {
	width:
		min(
			calc(100% - 48px),
			1240px
		);
	margin-inline: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.pr-cart-page__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 28px;
}

.pr-cart-page__heading {
	max-width: 760px;
}

.pr-cart-page__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 18px;
	color: var(--pr-cart-accent);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.pr-cart-page__eyebrow::before {
	width: 24px;
	height: 1px;
	background: currentColor;
	content: "";
}

.pr-cart-page__title {
	margin: 0;
	color: var(--pr-cart-text);
	font-size: clamp(46px, 6vw, 76px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.pr-cart-page__lead {
	max-width: 660px;
	margin: 22px 0 0;
	color: var(--pr-cart-muted);
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.65;
}

.pr-cart-page__count {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	flex: 0 0 auto;
	padding: 10px 15px;
	border: 1px solid var(--pr-cart-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: var(--pr-cart-shadow-soft);
}

.pr-cart-page__count-value {
	display: grid;
	place-items: center;
	width: 29px;
	height: 29px;
	border-radius: 50%;
	background: var(--pr-cart-text);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
}

.pr-cart-page__count-label {
	color: var(--pr-cart-muted);
	font-size: 13px;
	font-weight: 600;
}

/* =========================================================
   ASSURANCE BAR
   ========================================================= */

.pr-cart-page__assurance {
	display: grid;
	grid-template-columns:
		repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 28px;
}

.pr-cart-page__assurance-item {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 62px;
	padding: 13px 16px;
	border: 1px solid var(--pr-cart-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--pr-cart-text);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.4;
}

.pr-cart-page__assurance-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--pr-cart-accent-soft);
	color: var(--pr-cart-accent);
}

/* =========================================================
   BLOCKSY / WOOCOMMERCE CART LAYOUT
   ========================================================= */

.pr-cart-page
	.ct-woocommerce-cart-form {
	display: grid;
	grid-template-columns:
		minmax(0, 1.55fr)
		minmax(320px, 0.8fr);
	gap: clamp(26px, 4vw, 46px);
	align-items: start;
}

.pr-cart-page
	.woocommerce-cart-form {
	min-width: 0;
	margin: 0;
	padding: clamp(22px, 3vw, 32px);
	border: 1px solid var(--pr-cart-border);
	border-radius: 28px;
	background: var(--pr-cart-surface);
	box-shadow: var(--pr-cart-shadow);
}

.pr-cart-page
	.cart-collaterals {
	min-width: 0;
}

.pr-cart-page
	.cart_totals {
	position: sticky;
	top: 28px;
	overflow: hidden;
	margin: 0;
	padding: clamp(25px, 3vw, 32px);
	border: 1px solid var(--pr-cart-border);
	border-radius: 28px;
	background:
		linear-gradient(
			180deg,
			#ffffff,
			#fafbf9
		);
	box-shadow: var(--pr-cart-shadow);
}

.pr-cart-page
	.cart_totals::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 145px;
	height: 145px;
	border-bottom: 1px solid rgba(120, 145, 127, 0.1);
	border-left: 1px solid rgba(120, 145, 127, 0.1);
	border-radius: 0 0 0 145px;
	background:
		linear-gradient(
			135deg,
			rgba(120, 145, 127, 0.05),
			transparent 72%
		);
	content: "";
	pointer-events: none;
}

.pr-cart-page
	.cart_totals > * {
	position: relative;
	z-index: 1;
}

/* =========================================================
   CART TABLE RESET
   ========================================================= */

.pr-cart-page
	table.shop_table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	background: transparent;
}

.pr-cart-page
	table.shop_table thead {
	display: none;
}

.pr-cart-page
	.woocommerce-cart-form__contents tbody {
	display: grid;
	gap: 0;
}

.pr-cart-page
	.woocommerce-cart-form__cart-item {
	display: grid;
	grid-template-columns:
		112px
		minmax(0, 1fr)
		auto
		auto
		auto;
	column-gap: 20px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid var(--pr-cart-border);
}

.pr-cart-page
	.woocommerce-cart-form__cart-item:first-child {
	padding-top: 0;
}

.pr-cart-page
	.woocommerce-cart-form__cart-item td {
	display: block;
	width: auto;
	padding: 0;
	border: 0;
	background: transparent;
}

/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.pr-cart-page
	.product-thumbnail {
	width: 112px;
}

.pr-cart-page
	.product-thumbnail a {
	display: block;
	overflow: hidden;
	border-radius: 17px;
	background: var(--pr-cart-surface-soft);
}

.pr-cart-page
	.product-thumbnail figure,
.pr-cart-page
	.product-thumbnail img {
	display: block;
	width: 100%;
	margin: 0;
}

.pr-cart-page
	.product-thumbnail img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 220ms ease;
}

.pr-cart-page
	.product-thumbnail a:hover img {
	transform: scale(1.025);
}

/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */

.pr-cart-page
	td.product-name {
	min-width: 0;
}

.pr-cart-page
	td.product-name > a {
	display: inline-block;
	margin-bottom: 9px;
	color: var(--pr-cart-text);
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.025em;
	text-decoration: none;
}

.pr-cart-page
	td.product-name > a:hover {
	color: var(--pr-cart-accent);
}

.pr-cart-page
	td.product-name .variation {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 8px;
	margin: 5px 0 0;
	color: var(--pr-cart-muted);
	font-size: 12px;
	line-height: 1.5;
}

.pr-cart-page
	td.product-name .variation dt,
.pr-cart-page
	td.product-name .variation dd,
.pr-cart-page
	td.product-name .variation p {
	margin: 0;
}

.pr-cart-page
	td.product-name .price {
	margin: 8px 0 0;
	color: var(--pr-cart-muted);
	font-size: 14px;
}

.pr-cart-page
	td.product-name del,
.pr-cart-page
	.product-subtotal del {
	margin-right: 6px;
	color: var(--pr-cart-soft, #8b968f);
	opacity: 0.72;
}

.pr-cart-page
	td.product-name ins,
.pr-cart-page
	.product-subtotal ins {
	color: var(--pr-cart-text);
	font-weight: 700;
	text-decoration: none;
}

/* =========================================================
   QUANTITY
   ========================================================= */

.pr-cart-page
	.product-quantity {
	min-width: 118px;
}

.pr-cart-page
	.quantity {
	position: relative;
	display: inline-grid;
	grid-template-columns:
		36px
		44px
		36px;
	grid-template-rows: 40px;
	align-items: center;
	justify-content: center;
	width: 116px;
	min-width: 116px;
	height: 42px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--pr-cart-border-strong);
	border-radius: 999px;
	background: var(--pr-cart-surface-soft);
}

/*
 * Blocksy ne génère pas forcément les éléments dans
 * l’ordre visuel attendu. On impose donc explicitement :
 *
 * colonne 1 : moins
 * colonne 2 : quantité
 * colonne 3 : plus
 */

.pr-cart-page
	.quantity
	.ct-decrease,
.pr-cart-page
	.quantity
	.minus {
	grid-column: 1;
	grid-row: 1;
}

.pr-cart-page
	.quantity
	input.qty {
	grid-column: 2;
	grid-row: 1;
}

.pr-cart-page
	.quantity
	.ct-increase,
.pr-cart-page
	.quantity
	.plus {
	grid-column: 3;
	grid-row: 1;
}

.pr-cart-page
	.quantity
	.ct-increase,
.pr-cart-page
	.quantity
	.ct-decrease,
.pr-cart-page
	.quantity
	.plus,
.pr-cart-page
	.quantity
	.minus,
.pr-cart-page
	.quantity
	button {
	position: static;
	display: grid;
	place-items: center;
	width: 36px;
	min-width: 36px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--pr-cart-muted);
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition:
		background-color 160ms ease,
		color 160ms ease;
}

.pr-cart-page
	.quantity
	.ct-increase:hover,
.pr-cart-page
	.quantity
	.ct-decrease:hover,
.pr-cart-page
	.quantity
	.plus:hover,
.pr-cart-page
	.quantity
	.minus:hover,
.pr-cart-page
	.quantity
	button:hover {
	background: rgba(23, 35, 30, 0.045);
	color: var(--pr-cart-text);
}

.pr-cart-page
	.quantity
	input.qty {
	position: static;
	display: block;
	width: 44px;
	min-width: 44px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--pr-cart-text);
	font-family: inherit;
	font-size: 13px;
	font-weight: 750;
	line-height: 40px;
	text-align: center;
	appearance: textfield;
	-moz-appearance: textfield;
}

.pr-cart-page
	.quantity
	input.qty::-webkit-outer-spin-button,
.pr-cart-page
	.quantity
	input.qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

/* =========================================================
   SUBTOTAL / REMOVE
   ========================================================= */

.pr-cart-page
	.product-subtotal {
	min-width: 76px;
	color: var(--pr-cart-text);
	font-size: 15px;
	font-weight: 700;
	text-align: right;
}

.pr-cart-page
	td.product-remove {
	width: 38px;
}

.pr-cart-page
	.product-remove .remove {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--pr-cart-border);
	border-radius: 50%;
	background: #ffffff;
	color: var(--pr-cart-muted);
	text-decoration: none;
	transition:
		color 160ms ease,
		border-color 160ms ease,
		background-color 160ms ease;
}

.pr-cart-page
	.product-remove .remove:hover {
	border-color: rgba(160, 67, 67, 0.18);
	background: rgba(160, 67, 67, 0.06);
	color: #a04343;
}

/* =========================================================
   CART ACTIONS / COUPON
   ========================================================= */

.pr-cart-page
	.woocommerce-cart-form__contents
	tr:last-child {
	display: block;
	width: 100%;
}

.pr-cart-page
	.woocommerce-cart-form__contents
	td.actions {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	padding: 22px 0 0;
	border: 0;
}

.pr-cart-page
	.actions .coupon {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	width: min(100%, 430px);
	min-width: 0;
}

.pr-cart-page
	.actions .coupon label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pr-cart-page
	.actions .coupon input.input-text {
	width: 100%;
	min-width: 0;
	min-height: 48px;
	margin: 0;
	padding: 0 15px;
	border: 1px solid var(--pr-cart-border-strong);
	border-radius: 13px;
	background: var(--pr-cart-surface-soft);
	color: var(--pr-cart-text);
	font-size: 13px;
	box-shadow: none;
}

.pr-cart-page
	.actions .coupon input.input-text:focus {
	outline: none;
	border-color: rgba(120, 145, 127, 0.55);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(120, 145, 127, 0.1);
}

.pr-cart-page
	.actions button.button,
.pr-cart-page
	.actions input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin: 0;
	padding: 0 17px;
	border: 1px solid var(--pr-cart-border-strong);
	border-radius: 13px;
	background: #ffffff;
	color: var(--pr-cart-text);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: none;
	cursor: pointer;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.pr-cart-page
	.actions button.button:hover,
.pr-cart-page
	.actions input.button:hover {
	transform: translateY(-1px);
	border-color: rgba(23, 35, 30, 0.2);
	background: var(--pr-cart-surface-soft);
}

/* The cart updates automatically through cart-page.js. */
.pr-cart-page
	button[name="update_cart"],
.pr-cart-page
	input[name="update_cart"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* =========================================================
   TOTALS
   ========================================================= */

.pr-cart-page
	.cart_totals h2 {
	margin: 0 0 24px;
	color: var(--pr-cart-text);
	font-size: clamp(24px, 2.4vw, 31px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.pr-cart-page
	.cart_totals table {
	margin: 0 0 22px;
}

.pr-cart-page
	.cart_totals tr {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid var(--pr-cart-border);
}

.pr-cart-page
	.cart_totals th,
.pr-cart-page
	.cart_totals td {
	display: block;
	width: auto;
	padding: 0;
	border: 0;
	background: transparent;
}

.pr-cart-page
	.cart_totals th {
	color: var(--pr-cart-muted);
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}

.pr-cart-page
	.cart_totals td {
	color: var(--pr-cart-text);
	font-size: 14px;
	font-weight: 700;
	text-align: right;
}

.pr-cart-page
	.cart_totals .order-total {
	margin-top: 4px;
	padding: 19px 0;
	border-bottom: 0;
}

.pr-cart-page
	.cart_totals .order-total th {
	color: var(--pr-cart-text);
	font-size: 17px;
	font-weight: 700;
}

.pr-cart-page
	.cart_totals .order-total td {
	font-size: 22px;
	font-weight: 750;
	letter-spacing: -0.025em;
}

/* =========================================================
   CHECKOUT CTA
   ========================================================= */

.pr-cart-page
	.wc-proceed-to-checkout {
	margin: 0;
	padding: 0;
}

.pr-cart-page
	.wc-proceed-to-checkout
	a.checkout-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 58px;
	margin: 0;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background:
		linear-gradient(
			135deg,
			#17231e,
			#24372d
		);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow:
		0 17px 34px rgba(23, 35, 30, 0.17);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease;
}

.pr-cart-page
	.wc-proceed-to-checkout
	a.checkout-button:hover {
	transform: translateY(-2px);
	box-shadow:
		0 22px 42px rgba(23, 35, 30, 0.21);
}

/* =========================================================
   CART NOTICES
   ========================================================= */

.pr-cart-page
	.woocommerce-notices-wrapper {
	margin-bottom: 18px;
}

.pr-cart-page
	.woocommerce-message,
.pr-cart-page
	.woocommerce-error,
.pr-cart-page
	.woocommerce-info {
	position: relative;
	min-height: 58px;
	margin: 0 0 16px;
	padding: 17px 20px 17px 54px;
	border: 1px solid var(--pr-cart-border);
	border-radius: 16px;
	background: #ffffff;
	color: var(--pr-cart-text);
	font-size: 13px;
	line-height: 1.55;
	box-shadow: var(--pr-cart-shadow-soft);
}

.pr-cart-page
	.woocommerce-message::before,
.pr-cart-page
	.woocommerce-info::before,
.pr-cart-page
	.woocommerce-error::before {
	position: absolute;
	top: 50%;
	left: 18px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	background: var(--pr-cart-accent-soft);
	color: var(--pr-cart-accent);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	transform: translateY(-50%);
}

.pr-cart-page
	.woocommerce-message::before {
	content: "✓";
}

.pr-cart-page
	.woocommerce-info::before {
	content: "i";
}

.pr-cart-page
	.woocommerce-error::before {
	content: "!";
	background: rgba(160, 67, 67, 0.09);
	color: #a04343;
}

.pr-cart-page
	.woocommerce-message a,
.pr-cart-page
	.woocommerce-info a,
.pr-cart-page
	.woocommerce-error a {
	font-weight: 700;
}

/* =========================================================
   EMPTY CART
   ========================================================= */

.pr-cart-page.is-empty {
	min-height: 62vh;
}

.pr-cart-page.is-empty
	.pr-cart-page__header {
	justify-content: center;
	text-align: center;
}

.pr-cart-page.is-empty
	.pr-cart-page__heading {
	margin-inline: auto;
}

.pr-cart-page.is-empty
	.pr-cart-page__lead {
	margin-inline: auto;
}

.pr-cart-page.is-empty
	.pr-cart-page__count,
.pr-cart-page.is-empty
	.pr-cart-page__assurance {
	display: none !important;
}

.pr-cart-page.is-empty
	.pr-cart-page__woocommerce {
	position: relative;
	max-width: 760px;
	margin-inline: auto;
	padding: clamp(44px, 7vw, 74px);
	border: 1px solid var(--pr-cart-border);
	border-radius: 30px;
	background:
		radial-gradient(
			circle at 82% 18%,
			rgba(120, 145, 127, 0.08),
			transparent 30%
		),
		#ffffff;
	text-align: center;
	box-shadow: var(--pr-cart-shadow);
}

.pr-cart-page.is-empty
	.pr-cart-page__woocommerce::before {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin: 0 auto 24px;
	border: 1px solid rgba(120, 145, 127, 0.18);
	border-radius: 22px;
	background: rgba(120, 145, 127, 0.08);
	color: var(--pr-cart-accent);
	font-size: 27px;
	line-height: 1;
	content: "↗";
}

.pr-cart-page.is-empty
	.woocommerce-notices-wrapper {
	display: none;
}

.pr-cart-page
	.cart-empty.woocommerce-info {
	min-height: 0;
	margin: 0 0 14px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--pr-cart-text);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 750;
	line-height: 1.25;
}

.pr-cart-page
	.cart-empty.woocommerce-info::before {
	display: none;
}

.pr-cart-page
	.return-to-shop {
	margin: 24px 0 0;
}

.pr-cart-page
	.return-to-shop .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 27px;
	border: 0;
	border-radius: 999px;
	background: var(--pr-cart-text);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 16px 32px rgba(23, 35, 30, 0.16);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease;
}

.pr-cart-page
	.return-to-shop .button:hover {
	transform: translateY(-2px);
	box-shadow: 0 21px 40px rgba(23, 35, 30, 0.2);
}

/* =========================================================
   UPDATING STATE
   ========================================================= */

.pr-cart-page.is-updating
	.ct-woocommerce-cart-form {
	opacity: 0.62;
	pointer-events: none;
	transition: opacity 150ms ease;
}

/* =========================================================
   TABLET
   Desktop-inspired responsive cart
   ========================================================= */

@media screen and (min-width: 700px) and (max-width: 999px) {

	/* Main cart layout */

	.pr-cart-page
		.ct-woocommerce-cart-form {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.pr-cart-page
		.cart_totals {
		position: relative;
		top: auto;
	}

	/* Keep assurances compact on tablet */

	.pr-cart-page__assurance {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.pr-cart-page__assurance-item {
		min-height: 58px;
		padding: 12px 14px;
		font-size: 12px;
	}

	.pr-cart-page__assurance-icon {
		width: 30px;
		height: 30px;
	}

	/* Product row */

	.pr-cart-page
		.woocommerce-cart-form__cart-item {
		position: relative;
		display: grid;
		grid-template-columns:
			96px
			minmax(0, 1fr)
			116px
			88px
			38px;
		column-gap: 18px;
		align-items: center;
		padding: 20px 0;
	}

	.pr-cart-page
		.product-thumbnail {
		width: 96px;
	}

	.pr-cart-page
		.product-thumbnail a,
	.pr-cart-page
		.product-thumbnail figure,
	.pr-cart-page
		.product-thumbnail img {
		width: 96px;
	}

	.pr-cart-page
		.product-thumbnail img {
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	.pr-cart-page
		td.product-name > a {
		font-size: 18px;
	}

	/*
	 * Preserve desktop information.
	 * Blocksy hides this price at smaller breakpoints
	 * through ct-hidden-sm / ct-hidden-md.
	 */

	.pr-cart-page
		td.product-name
		.price {
		display: block !important;
		margin: 8px 0 0;
		color: var(--pr-cart-muted);
		font-size: 13px;
		line-height: 1.4;
	}

	/* Do not use Blocksy's duplicate mobile action row */

	.pr-cart-page
		.product-mobile-actions {
		display: none !important;
	}

	/* Keep real WooCommerce desktop cells */

	.pr-cart-page
		.woocommerce-cart-form__cart-item
		> td.product-quantity,
	.pr-cart-page
		.woocommerce-cart-form__cart-item
		> td.product-subtotal,
	.pr-cart-page
		.woocommerce-cart-form__cart-item
		> td.product-remove {
		display: block !important;
	}

	.pr-cart-page
		.product-quantity {
		min-width: 116px;
	}

	.pr-cart-page
		.product-subtotal {
		min-width: 88px;
		font-size: 16px;
		text-align: right;
	}

	.pr-cart-page
		td.product-remove {
		width: 38px;
	}

	/* Coupon */

	.pr-cart-page
		.actions .coupon {
		width: min(100%, 470px);
	}

	/* Totals */

	.pr-cart-page
		.cart_totals {
		width: min(100%, 580px);
		margin-left: auto;
	}
}


/* =========================================================
   MOBILE
   Desktop-inspired, mobile-first cart
   ========================================================= */

@media screen and (max-width: 699px) {

	/* -----------------------------------------------------
	   Page spacing
	   ----------------------------------------------------- */

	.pr-cart-page {
		padding:
			38px
			0
			64px;
	}

	.pr-cart-page__container {
		width: calc(100% - 24px);
	}

	.pr-cart-page__header {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-bottom: 20px;
	}

	.pr-cart-page__heading {
		width: 100%;
		max-width: none;
	}

	.pr-cart-page__eyebrow {
		gap: 9px;
		margin-bottom: 14px;
		font-size: 9px;
		letter-spacing: 0.13em;
	}

	.pr-cart-page__eyebrow::before {
		width: 18px;
	}

	.pr-cart-page__title {
		font-size: clamp(42px, 13vw, 56px);
		line-height: 0.96;
		letter-spacing: -0.055em;
	}

	.pr-cart-page__lead {
		max-width: 100%;
		margin-top: 16px;
		font-size: 14px;
		line-height: 1.6;
	}

	.pr-cart-page__count {
		margin-top: 18px;
		padding: 8px 12px;
	}

	.pr-cart-page__count-value {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.pr-cart-page__count-label {
		font-size: 12px;
	}

	/* -----------------------------------------------------
	   Assurance cards
	   ----------------------------------------------------- */

	.pr-cart-page__assurance {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-bottom: 18px;
	}

	.pr-cart-page__assurance-item {
		min-height: 54px;
		padding: 11px 13px;
		border-radius: 15px;
		font-size: 11px;
	}

	.pr-cart-page__assurance-icon {
		width: 29px;
		height: 29px;
	}

	.pr-cart-page__assurance-icon svg {
		width: 16px;
		height: 16px;
	}

	/* -----------------------------------------------------
	   Main WooCommerce layout
	   ----------------------------------------------------- */

	.pr-cart-page
		.ct-woocommerce-cart-form {
		display: grid;
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.pr-cart-page
		.woocommerce-cart-form {
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.pr-cart-page
		table.shop_table {
		border-collapse: separate;
		border-spacing: 0;
	}

	.pr-cart-page
		.woocommerce-cart-form__contents tbody {
		display: block;
	}

	/* -----------------------------------------------------
	   Product card
	   ----------------------------------------------------- */

	.pr-cart-page
	.woocommerce-cart-form__cart-item {
	position: relative;
	display: grid;
	grid-template-columns:
		88px
		minmax(0, 1fr)
		minmax(64px, auto);
	grid-template-areas:
		"image information remove"
		"image quantity subtotal";
	column-gap: 14px;
	row-gap: 13px;
	align-items: start;
	padding: 18px 16px;
	border: 1px solid var(--pr-cart-border);
	border-bottom: 0;
	border-radius: 22px 22px 0 0;
	background: #ffffff;
}

	.pr-cart-page
		.woocommerce-cart-form__cart-item:first-child {
		padding-top: 18px;
	}

	.pr-cart-page
		.woocommerce-cart-form__cart-item td {
		width: auto;
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
	}

	/*
	 * WooCommerce/Blocksy can add labels from data-title
	 * on responsive tables. They are unnecessary here.
	 */

	.pr-cart-page
		.woocommerce-cart-form__cart-item
		td::before,
	.pr-cart-page
		.woocommerce-cart-form__cart-item
		td::after {
		display: none !important;
		content: none !important;
	}

	/* -----------------------------------------------------
	   Image
	   ----------------------------------------------------- */

	.pr-cart-page
		.woocommerce-cart-form__cart-item
		.product-thumbnail {
		display: block !important;
		grid-area: image;
		width: 88px;
		min-width: 88px;
	}

	.pr-cart-page
		.product-thumbnail a,
	.pr-cart-page
		.product-thumbnail figure {
		display: block;
		width: 88px;
		margin: 0;
		overflow: hidden;
		border-radius: 14px;
	}

	.pr-cart-page
		.product-thumbnail img {
		display: block;
		width: 88px;
		height: 112px;
		margin: 0;
		border-radius: 14px;
		aspect-ratio: auto;
		object-fit: cover;
	}

	/* -----------------------------------------------------
	   Product title and unit price
	   ----------------------------------------------------- */

	.pr-cart-page
		.woocommerce-cart-form__cart-item
		td.product-name {
		display: block !important;
		grid-area: information;
		min-width: 0;
		width: 100%;
		padding-right: 2px;
	}

	.pr-cart-page
		td.product-name > a {
		display: block;
		width: 100%;
		margin: 0;
		color: var(--pr-cart-text);
		font-size: 15px;
		font-weight: 750;
		line-height: 1.28;
		letter-spacing: -0.025em;
		text-decoration: none;
		overflow-wrap: anywhere;
	}

	.pr-cart-page
		td.product-name .variation {
		margin-top: 6px;
		font-size: 11px;
	}

	/*
	 * Show the same unit price used on desktop.
	 * Blocksy hides it through responsive helper classes.
	 */

	.pr-cart-page
		td.product-name
		.price,
	.pr-cart-page
		td.product-name
		p.price {
		display: block !important;
		margin: 8px 0 0;
		color: var(--pr-cart-muted);
		font-size: 13px;
		font-weight: 500;
		line-height: 1.4;
	}

	.pr-cart-page
		td.product-name
		.price del {
		margin-right: 5px;
		opacity: 0.65;
	}

	.pr-cart-page
		td.product-name
		.price ins {
		color: var(--pr-cart-muted);
		font-weight: 600;
		text-decoration: none;
	}

	/* -----------------------------------------------------
	   Ignore Blocksy's duplicate mobile row
	   ----------------------------------------------------- */

	.pr-cart-page
		.product-mobile-actions {
		display: none !important;
	}

	/* -----------------------------------------------------
	   Real WooCommerce quantity
	   ----------------------------------------------------- */

	.pr-cart-page
		.woocommerce-cart-form__cart-item
		> td.product-quantity {
		display: flex !important;
		grid-area: quantity;
		align-items: center;
		justify-content: flex-start;
		min-width: 0;
		width: auto;
	}

	.pr-cart-page
	.product-quantity
	.quantity {
	display: grid;
	grid-template-columns:
		30px
		34px
		30px;
	grid-template-rows: 36px;
	align-items: center;
	justify-content: center;
	width: 94px;
	min-width: 94px;
	height: 38px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--pr-cart-border-strong);
	border-radius: 999px;
	background: var(--pr-cart-surface-soft);
}

	.pr-cart-page
		.product-quantity
		.quantity
		.ct-decrease,
	.pr-cart-page
		.product-quantity
		.quantity
		.minus {
		order: 1;
	}

	.pr-cart-page
		.product-quantity
		.quantity
		input.qty {
		order: 2;
	}

	.pr-cart-page
		.product-quantity
		.quantity
		.ct-increase,
	.pr-cart-page
		.product-quantity
		.quantity
		.plus {
		order: 3;
	}

	.pr-cart-page
	.product-quantity
	.quantity
	.ct-decrease,
.pr-cart-page
	.product-quantity
	.quantity
	.ct-increase,
.pr-cart-page
	.product-quantity
	.quantity
	.minus,
.pr-cart-page
	.product-quantity
	.quantity
	.plus,
.pr-cart-page
	.product-quantity
	.quantity
	button {
	position: static;
	display: grid;
	place-items: center;
	width: 30px;
	min-width: 30px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--pr-cart-muted);
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

	.pr-cart-page
	.product-quantity
	.quantity
	input.qty {
	position: static;
	display: block;
	width: 34px;
	min-width: 34px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--pr-cart-text);
	font-family: inherit;
	font-size: 12px;
	font-weight: 750;
	line-height: 36px;
	text-align: center;
	appearance: textfield;
	-moz-appearance: textfield;
}

	/* -----------------------------------------------------
	   Line total
	   ----------------------------------------------------- */

	.pr-cart-page
	.woocommerce-cart-form__cart-item
	> td.product-subtotal {
	display: flex !important;
	grid-area: subtotal;
	align-self: center;
	align-items: center;
	justify-content: flex-end;
	justify-self: stretch;
	min-width: 74px;
	width: 100%;
	max-width: 100%;
	color: var(--pr-cart-text);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	text-align: right;
	white-space: nowrap;
	overflow: visible;
}

.pr-cart-page
	.product-subtotal
	.woocommerce-Price-amount {
	display: inline-block;
	max-width: 100%;
	white-space: nowrap;
}

	/* -----------------------------------------------------
	   Remove button
	   ----------------------------------------------------- */

	.pr-cart-page
	.woocommerce-cart-form__cart-item
	> td.product-remove {
	display: flex !important;
	grid-area: remove;
	align-items: flex-start;
	justify-content: flex-end;
	justify-self: stretch;
	width: 100%;
	min-width: 36px;
}

	.pr-cart-page
	.product-remove
	.remove {
	display: grid;
	place-items: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	margin: 0 0 0 auto;
	padding: 0;
	border-radius: 50%;
}

	.pr-cart-page
		.product-remove
		.remove svg {
		display: block;
		width: 13px;
		height: 13px;
		margin: 0;
	}

	/* -----------------------------------------------------
	   Coupon row
	   ----------------------------------------------------- */

	.pr-cart-page
		.woocommerce-cart-form__contents
		tr:last-child {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0 16px 18px;
		border: 1px solid var(--pr-cart-border);
		border-top: 0;
		border-radius: 0 0 22px 22px;
		background: #ffffff;
	}

	.pr-cart-page
		.woocommerce-cart-form__contents
		td.actions {
		display: block;
		width: 100%;
		margin: 0;
		padding: 16px 0 0;
		border-top: 1px solid var(--pr-cart-border);
	}

	.pr-cart-page
		.actions .coupon {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		width: 100%;
		max-width: none;
	}

	.pr-cart-page
		.actions .coupon
		input.input-text,
	.pr-cart-page
		.actions .coupon
		.button {
		width: 100%;
		min-height: 48px;
		margin: 0;
		border-radius: 12px;
	}

	/* -----------------------------------------------------
	   Cart totals
	   ----------------------------------------------------- */

	.pr-cart-page
		.cart_totals {
		position: relative;
		top: auto;
		width: 100%;
		margin: 0;
		padding: 22px 16px 16px;
		border-radius: 22px;
	}

	.pr-cart-page
		.cart_totals::before {
		width: 105px;
		height: 105px;
		border-radius: 0 0 0 105px;
	}

	.pr-cart-page
		.cart_totals h2 {
		margin-bottom: 18px;
		font-size: 24px;
	}

	.pr-cart-page
		.cart_totals
		td::before,
	.pr-cart-page
		.cart_totals
		td::after {
		display: none !important;
		content: none !important;
	}

	.pr-cart-page
		.cart_totals tr {
		display: grid;
		grid-template-columns:
			minmax(0, 1fr)
			auto;
		align-items: center;
		gap: 14px;
		width: 100%;
		padding: 14px 0;
	}

	.pr-cart-page
		.cart_totals th,
	.pr-cart-page
		.cart_totals td {
		display: block;
		width: auto;
		margin: 0;
		padding: 0;
	}

	.pr-cart-page
		.cart_totals th {
		color: var(--pr-cart-muted);
		font-size: 12px;
		font-weight: 600;
		text-align: left;
	}

	.pr-cart-page
		.cart_totals td {
		color: var(--pr-cart-text);
		font-size: 13px;
		font-weight: 750;
		text-align: right;
		white-space: nowrap;
	}

	.pr-cart-page
		.cart_totals
		.order-total th {
		color: var(--pr-cart-text);
		font-size: 15px;
	}

	.pr-cart-page
		.cart_totals
		.order-total td {
		font-size: 21px;
		letter-spacing: -0.025em;
	}

	.pr-cart-page
		.wc-proceed-to-checkout {
		margin-top: 4px;
	}

	.pr-cart-page
		.wc-proceed-to-checkout
		a.checkout-button {
		min-height: 56px;
		padding: 0 18px;
		font-size: 13px;
	}

	/* -----------------------------------------------------
	   Notices
	   ----------------------------------------------------- */

	.pr-cart-page
		.woocommerce-notices-wrapper {
		margin-bottom: 15px;
	}

	.pr-cart-page
		.woocommerce-message,
	.pr-cart-page
		.woocommerce-error,
	.pr-cart-page
		.woocommerce-info {
		min-height: 56px;
		margin: 0 0 15px;
		padding:
			16px
			14px
			16px
			46px;
		border-radius: 15px;
		font-size: 12px;
		line-height: 1.5;
	}

	.pr-cart-page
		.woocommerce-message::before,
	.pr-cart-page
		.woocommerce-error::before,
	.pr-cart-page
		.woocommerce-info::before {
		left: 14px;
		width: 23px;
		height: 23px;
	}

	/* -----------------------------------------------------
	   Empty cart
	   ----------------------------------------------------- */

	.pr-cart-page.is-empty {
		min-height: auto;
	}

	.pr-cart-page.is-empty
		.pr-cart-page__header {
		align-items: center;
		text-align: center;
	}

	.pr-cart-page.is-empty
		.pr-cart-page__woocommerce {
		width: 100%;
		max-width: none;
		padding: 30px 18px;
		border-radius: 22px;
	}

	.pr-cart-page.is-empty
		.pr-cart-page__woocommerce::before {
		width: 58px;
		height: 58px;
		margin-bottom: 20px;
		border-radius: 18px;
		font-size: 23px;
	}

	.pr-cart-page.is-empty
		.cart-empty.woocommerce-info {
		min-height: auto;
		margin: 0 0 18px;
		padding: 0;
		font-size: 18px;
		text-align: center;
	}

	.pr-cart-page.is-empty
		.cart-empty.woocommerce-info::before,
	.pr-cart-page.is-empty
		.cart-empty.woocommerce-info::after {
		display: none !important;
		content: none !important;
	}

	.pr-cart-page.is-empty
		.return-to-shop {
		margin-top: 18px;
	}

	.pr-cart-page.is-empty
		.return-to-shop
		.button {
		width: 100%;
		min-height: 54px;
		padding: 0 20px;
	}
}

@media screen and (max-width: 379px) {
	.pr-cart-page
		.woocommerce-cart-form__cart-item {
		grid-template-columns:
			80px
			minmax(0, 1fr)
			minmax(68px, auto);
		column-gap: 11px;
		padding-inline: 13px;
	}

	.pr-cart-page
		.woocommerce-cart-form__cart-item
		.product-thumbnail {
		width: 80px;
		min-width: 80px;
	}

	.pr-cart-page
		.product-thumbnail a,
	.pr-cart-page
		.product-thumbnail figure {
		width: 80px;
	}

	.pr-cart-page
		.product-thumbnail img {
		width: 80px;
		height: 104px;
	}

	.pr-cart-page
		.woocommerce-cart-form__cart-item
		> td.product-subtotal {
		min-width: 68px;
		font-size: 15px;
	}
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.pr-cart-page a:focus-visible,
.pr-cart-page button:focus-visible,
.pr-cart-page input:focus-visible {
	outline: 2px solid rgba(120, 145, 127, 0.75);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.pr-cart-page *,
	.pr-cart-page *::before,
	.pr-cart-page *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}