/* Thuisera cart v0.6 — custom WooCommerce cart, scoped to /winkelwagen/. */
body.woocommerce-cart {
	--th-primary: var(--e-global-color-primary, #2F6B4F);
	--th-primary-dark: var(--e-global-color-5fb90de, #1F2D27);
	--th-accent: var(--e-global-color-accent, #E65F48);
	--th-accent-dark: var(--e-global-color-44ed711, #C84E3B);
	--th-text: var(--e-global-color-text, #1F2D27);
	--th-muted: var(--e-global-color-100f74d, #66756D);
	--th-border: var(--e-global-color-94d7ae6, #DCE5DF);
	--th-border-strong: #C9D6CF;
	--th-surface: var(--e-global-color-20619f0, #FFFDFA);
	--th-raised: var(--e-global-color-9813be2, #FFFFFF);
	--th-soft: var(--e-global-color-bea03c7, #F3F7F4);
	--th-success: var(--e-global-color-ea6e4ce, #25764F);
	--th-success-soft: var(--e-global-color-089c561, #E7F5ED);
	--th-info: var(--e-global-color-7efb410, #245F86);
	--th-info-soft: var(--e-global-color-a826136, #EAF4FB);
	--th-error: var(--e-global-color-7c8f7a5, #B42318);
	--th-white: var(--e-global-color-a73839d, #FFFFFF);
	--th-shadow: 0 14px 34px rgba(31, 45, 39, .06);
	--th-shadow-cta: 0 6px 14px rgba(230, 95, 72, .14);
	--th-radius-sm: 12px;
	--th-radius-md: 16px;
	--th-radius-lg: 20px;
	font-family: var(--e-global-typography-primary-font-family, Inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-page,
body.woocommerce-cart .th-cart-page * {
	box-sizing: border-box;
}

/* Elementor should only act as the page shell. */
body.woocommerce-cart .elementor-widget-shortcode,
body.woocommerce-cart .elementor-widget-shortcode > .elementor-widget-container,
body.woocommerce-cart .elementor-widget-shortcode .elementor-shortcode {
	width: 100%;
	max-width: none;
}

body.woocommerce-cart .th-cart-page {
	width: min(1240px, calc(100% - 48px));
	max-width: none;
	margin: 0 auto;
	padding: 50px 0 46px;
}

body.woocommerce-cart .th-cart-page__header {
	margin: 0 0 26px;
}

body.woocommerce-cart .th-cart-page__header h1 {
	margin: 0;
	font-size: clamp(38px, 3.2vw, 48px);
	line-height: 1.06;
	letter-spacing: -.04em;
	font-weight: 760;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-page__header p {
	margin: 8px 0 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 390px);
	gap: 28px;
	align-items: start;
}

body.woocommerce-cart .th-cart-products,
body.woocommerce-cart .th-cart-summary-card,
body.woocommerce-cart .th-cart-empty {
	background: var(--th-raised);
	border: 1px solid var(--th-border);
	border-radius: var(--th-radius-lg);
}

/* Product panel */
body.woocommerce-cart .th-cart-products {
	overflow: clip;
}

body.woocommerce-cart .th-cart-products__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 28px 18px;
	border-bottom: 1px solid var(--th-border);
}

body.woocommerce-cart .th-cart-products__header h2,
body.woocommerce-cart .th-cart-support h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 750;
	letter-spacing: -.02em;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-count {
	font-size: 14px;
	line-height: 1.4;
	color: #52685C;
	font-weight: 550;
	white-space: nowrap;
}

body.woocommerce-cart .th-cart-item {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 24px;
	padding: 28px;
	border-bottom: 1px solid var(--th-border);
	background: var(--th-raised);
}

body.woocommerce-cart .th-cart-item:last-child {
	border-bottom: 0;
}

body.woocommerce-cart .th-cart-item__image {
	display: flex;
	width: 132px;
	height: 132px;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid var(--th-border);
	border-radius: 16px;
	background: #F7FAF8;
	overflow: hidden;
	text-decoration: none;
}

body.woocommerce-cart .th-cart-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

body.woocommerce-cart .th-cart-item__body {
	min-width: 0;
	padding-top: 2px;
}

body.woocommerce-cart .th-cart-item__topline {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: start;
}

body.woocommerce-cart .th-cart-item__copy {
	min-width: 0;
}

body.woocommerce-cart .th-cart-item__title {
	margin: 0;
	font-size: 18.5px;
	line-height: 1.34;
	font-weight: 760;
	letter-spacing: -.015em;
}

body.woocommerce-cart .th-cart-item__title a {
	color: var(--th-text);
	text-decoration: none;
}

body.woocommerce-cart .th-cart-item__title a:hover {
	color: var(--th-primary);
}

body.woocommerce-cart .th-cart-item__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.45;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-item__meta .variation {
	display: flex;
	flex-wrap: wrap;
	gap: 3px 8px;
	margin: 0;
}

body.woocommerce-cart .th-cart-item__meta .variation dt,
body.woocommerce-cart .th-cart-item__meta .variation dd,
body.woocommerce-cart .th-cart-item__meta .variation p {
	margin: 0;
	padding: 0;
}

body.woocommerce-cart .th-cart-item__delivery {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 9px 0 0;
	font-size: 13.5px;
	line-height: 1.4;
	font-weight: 650;
	color: var(--th-success);
}

body.woocommerce-cart .th-cart-item__delivery svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	padding: 2px;
	border-radius: 999px;
	background: var(--th-success-soft);
}

body.woocommerce-cart .th-cart-item__line-total {
	min-width: 104px;
	padding-top: 1px;
	font-size: 19px;
	line-height: 1.35;
	font-weight: 760;
	letter-spacing: -.015em;
	text-align: right;
	white-space: nowrap;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-item__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

body.woocommerce-cart .th-cart-quantity {
	display: inline-grid;
	grid-template-columns: 44px 50px 44px;
	height: 46px;
	border: 1px solid var(--th-border-strong);
	border-radius: 12px;
	background: var(--th-raised);
	overflow: hidden;
}

body.woocommerce-cart .th-cart-quantity__button {
	appearance: none;
	position: static !important;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--th-text) !important;
	font: inherit;
	font-size: 21px;
	line-height: 1;
	cursor: pointer;
}

body.woocommerce-cart .th-cart-quantity__button:hover {
	background: var(--th-soft) !important;
	color: var(--th-primary) !important;
}

body.woocommerce-cart .th-cart-quantity .quantity {
	width: 50px !important;
	height: 44px !important;
	margin: 0 !important;
}

body.woocommerce-cart .th-cart-quantity input.qty {
	width: 50px !important;
	height: 44px !important;
	margin: 0 !important;
	padding: 0 4px !important;
	border: 0 !important;
	border-right: 1px solid var(--th-border) !important;
	border-left: 1px solid var(--th-border) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: var(--th-raised) !important;
	color: var(--th-text) !important;
	text-align: center;
	font-size: 15px !important;
	font-weight: 650 !important;
	-moz-appearance: textfield;
}

body.woocommerce-cart .th-cart-quantity input.qty::-webkit-outer-spin-button,
body.woocommerce-cart .th-cart-quantity input.qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

body.woocommerce-cart .th-cart-quantity-single {
	display: inline-flex;
	min-width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--th-border);
	border-radius: 12px;
	background: var(--th-raised);
	font-size: 15px;
	font-weight: 650;
}

body.woocommerce-cart .th-cart-quantity__left {
	position: relative;
	display: block;
	width: 44px;
	height: 44px;
}

body.woocommerce-cart .th-cart-quantity__left .th-cart-quantity__minus,
body.woocommerce-cart .th-cart-quantity__remove.remove {
	position: absolute !important;
	inset: 0;
}

body.woocommerce-cart .th-cart-quantity__remove.remove {
	display: none !important;
	width: 44px !important;
	height: 44px !important;
	min-height: 44px !important;
	place-items: center;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--th-muted) !important;
	text-decoration: none !important;
}

body.woocommerce-cart .th-cart-quantity__remove.remove svg {
	display: block;
	width: 18px;
	height: 18px;
}

body.woocommerce-cart .th-cart-quantity.is-remove-mode .th-cart-quantity__minus {
	display: none !important;
}

body.woocommerce-cart .th-cart-quantity.is-remove-mode .th-cart-quantity__remove.remove {
	display: grid !important;
}

body.woocommerce-cart .th-cart-quantity__remove.remove:hover {
	background: #FFF7F6 !important;
	color: var(--th-error) !important;
}

body.woocommerce-cart .th-cart-collaterals-extra:empty {
	display: none;
}

/* Product panel footer */
body.woocommerce-cart .th-cart-products__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 28px 17px;
	background: #FCFDFC;
}

body.woocommerce-cart .th-cart-continue,
body.woocommerce-cart .th-cart-coupon summary {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	font-weight: 650;
	cursor: pointer;
}

body.woocommerce-cart .th-cart-continue {
	min-height: 46px;
	padding: 0 15px;
	border: 1px solid #C9DED2;
	border-radius: 11px;
	background: var(--th-soft);
	color: var(--th-primary);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

body.woocommerce-cart .th-cart-continue:hover {
	border-color: var(--th-primary);
	background: var(--th-raised);
	color: var(--th-primary-dark);
	transform: translateY(-1px);
}

body.woocommerce-cart .th-cart-continue svg {
	width: 17px;
	height: 17px;
}

body.woocommerce-cart .th-cart-form-actions {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

body.woocommerce-cart .th-cart-coupon {
	position: relative;
}

body.woocommerce-cart .th-cart-coupon summary {
	padding: 0 2px;
	color: var(--th-muted);
	text-decoration: underline;
	text-decoration-color: #B7C1BB;
	text-underline-offset: 4px;
	list-style: none;
}

body.woocommerce-cart .th-cart-coupon summary::-webkit-details-marker {
	display: none;
}

body.woocommerce-cart .th-cart-coupon__form {
	display: grid;
	grid-template-columns: minmax(170px, 1fr) auto;
	gap: 8px;
	width: 330px;
	margin-top: 8px;
	padding: 13px;
	border: 1px solid var(--th-border);
	border-radius: 14px;
	background: var(--th-raised);
	box-shadow: var(--th-shadow);
	z-index: 10;
}

@media (min-width: 768px) {
	body.woocommerce-cart .th-cart-coupon[open] .th-cart-coupon__form {
		position: absolute;
		right: 0;
		top: 43px;
	}
}

body.woocommerce-cart .th-cart-coupon__form input.input-text {
	width: 100%;
	min-width: 0;
	min-height: 46px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid var(--th-border-strong);
	border-radius: 10px;
	background: var(--th-raised);
	color: var(--th-text);
	font: inherit;
	font-size: 14px;
}

body.woocommerce-cart .th-cart-coupon__button,
body.woocommerce-cart .th-cart-update {
	min-height: 46px;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 1px solid var(--th-primary) !important;
	border-radius: 10px !important;
	background: var(--th-raised) !important;
	box-shadow: none !important;
	color: var(--th-primary) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
}

body.woocommerce-cart .th-cart-coupon__button:hover,
body.woocommerce-cart .th-cart-update:hover {
	background: var(--th-soft) !important;
}

html.th-cart-js body.woocommerce-cart .th-cart-update {
	display: none;
}

/* Summary */
body.woocommerce-cart .th-cart-summary {
	position: sticky;
	top: 96px;
}

body.woocommerce-cart .th-cart-summary-card.cart_totals {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0;
	box-shadow: var(--th-shadow);
	overflow: hidden;
}

body.woocommerce-cart .th-cart-summary-card__header {
	padding: 25px 26px 16px;
}

body.woocommerce-cart .th-cart-summary-card__header h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.22;
	font-weight: 760;
	letter-spacing: -.025em;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-summary-card__header p {
	margin: 5px 0 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-shipping-status {
	margin: 0 20px 18px;
	padding: 15px;
	border-radius: 15px;
	background: var(--th-soft);
}

body.woocommerce-cart .th-cart-shipping-status--success {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	background: var(--th-success-soft);
	color: var(--th-success);
}

body.woocommerce-cart .th-cart-shipping-status--neutral {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	border: 1px solid var(--th-border);
	background: var(--th-soft);
	color: var(--th-primary);
}

body.woocommerce-cart .th-cart-shipping-status--neutral .th-cart-shipping-status__icon {
	background: var(--th-raised);
}

body.woocommerce-cart .th-cart-shipping-status__icon {
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	background: rgba(255,255,255,.8);
}

body.woocommerce-cart .th-cart-shipping-status__icon svg {
	width: 22px;
	height: 22px;
}

body.woocommerce-cart .th-cart-shipping-status strong,
body.woocommerce-cart .th-cart-shipping-status span {
	display: block;
}

body.woocommerce-cart .th-cart-shipping-status strong {
	font-size: 14px;
	line-height: 1.35;
	font-weight: 760;
}

body.woocommerce-cart .th-cart-shipping-status span {
	margin-top: 2px;
	font-size: 12.5px;
	line-height: 1.42;
	color: #547061;
}

body.woocommerce-cart .th-cart-shipping-status--progress .th-cart-shipping-status__copy {
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-shipping-status--progress span {
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-shipping-progress {
	height: 6px;
	margin-top: 11px;
	border-radius: 999px;
	background: #D7E5DD;
	overflow: hidden;
}

body.woocommerce-cart .th-cart-shipping-progress span {
	display: block;
	height: 100%;
	margin: 0;
	border-radius: inherit;
	background: var(--th-primary);
}

body.woocommerce-cart .th-cart-totals-table {
	width: calc(100% - 52px) !important;
	margin: 0 26px !important;
	border: 0 !important;
	border-collapse: collapse;
	background: transparent !important;
}

body.woocommerce-cart .th-cart-totals-table tr,
body.woocommerce-cart .th-cart-totals-table th,
body.woocommerce-cart .th-cart-totals-table td {
	border: 0 !important;
	background: transparent !important;
}

body.woocommerce-cart .th-cart-totals-table th,
body.woocommerce-cart .th-cart-totals-table td {
	padding: 8px 0 !important;
	font-size: 14px;
	line-height: 1.45;
	vertical-align: top;
}

body.woocommerce-cart .th-cart-totals-table th {
	width: 44%;
	font-weight: 500;
	text-align: left;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-totals-table td {
	font-weight: 650;
	text-align: right;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-totals-table .shipping td {
	font-weight: 500;
}

body.woocommerce-cart .th-cart-free-label {
	font-weight: 720;
	color: var(--th-success);
}

body.woocommerce-cart .th-cart-shipping-pending {
	font-size: 13px;
	font-weight: 500;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-totals-table .woocommerce-shipping-methods {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.woocommerce-cart .th-cart-totals-table .woocommerce-shipping-methods li {
	margin: 0 0 6px;
	font-size: 13px;
	line-height: 1.4;
}

body.woocommerce-cart .th-cart-totals-table .woocommerce-shipping-destination,
body.woocommerce-cart .th-cart-totals-table .woocommerce-shipping-calculator {
	font-size: 12px;
	line-height: 1.45;
}

body.woocommerce-cart .th-cart-totals-table .order-total {
	border-top: 1px solid var(--th-border) !important;
}

body.woocommerce-cart .th-cart-totals-table .order-total th,
body.woocommerce-cart .th-cart-totals-table .order-total td {
	padding-top: 19px !important;
	padding-bottom: 4px !important;
	font-size: 18px;
	font-weight: 760;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-totals-table .order-total .amount {
	font-size: 27px;
	line-height: 1.05;
	letter-spacing: -.03em;
}

body.woocommerce-cart .th-cart-totals-table small.includes_tax,
body.woocommerce-cart .th-cart-totals-table small.tax_label {
	display: none !important;
}

body.woocommerce-cart .th-cart-vat-note {
	display: block;
	margin: 6px 0 0 auto;
	font-size: 11.5px;
	font-weight: 450;
	line-height: 1.35;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-proceed {
	margin: 0 !important;
	padding: 22px 26px 0 !important;
}

body.woocommerce-cart .th-cart-checkout-button {
	display: flex !important;
	width: 100% !important;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0 !important;
	padding: 0 20px !important;
	border: 1px solid var(--th-accent) !important;
	border-radius: 13px !important;
	background: var(--th-accent) !important;
	box-shadow: var(--th-shadow-cta) !important;
	color: var(--th-white) !important;
	font-size: 15px !important;
	font-weight: 760 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
}

body.woocommerce-cart .th-cart-checkout-button:hover {
	border-color: var(--th-accent-dark) !important;
	background: var(--th-accent-dark) !important;
	color: var(--th-white) !important;
	transform: translateY(-1px);
}

body.woocommerce-cart .th-cart-checkout-button svg {
	width: 18px;
	height: 18px;
}

body.woocommerce-cart .th-cart-reassurance {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 7px;
	margin: 12px 20px 22px;
	font-size: 12.5px;
	line-height: 1.45;
	text-align: center;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-reassurance svg {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	margin-top: 1px;
	color: var(--th-success);
}

/* Compact service row */
body.woocommerce-cart .th-cart-support {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	margin-top: 20px;
	padding: 15px 18px;
	border-radius: 16px;
}

body.woocommerce-cart .th-cart-support__icon {
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--th-info-soft);
	color: var(--th-info);
}

body.woocommerce-cart .th-cart-support__icon svg {
	width: 21px;
	height: 21px;
}

body.woocommerce-cart .th-cart-support h2 {
	font-size: 15px;
}

body.woocommerce-cart .th-cart-support p {
	margin: 2px 0 0;
	font-size: 13px;
	line-height: 1.42;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-support__links {
	display: flex;
	align-items: center;
	gap: 14px;
}

body.woocommerce-cart .th-cart-support__links a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding: 0 2px;
	font-size: 12.5px;
	font-weight: 650;
	color: var(--th-primary);
	text-decoration: none;
	white-space: nowrap;
}

body.woocommerce-cart .th-cart-support__links a:hover,
body.woocommerce-cart .th-cart-continue:hover,
body.woocommerce-cart .th-cart-empty__secondary:hover {
	color: var(--th-primary-dark);
}

/* Empty state */
body.woocommerce-cart .th-cart-page--empty {
	max-width: 980px;
}

body.woocommerce-cart .th-cart-empty {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding: 36px;
	box-shadow: var(--th-shadow);
}

body.woocommerce-cart .th-cart-empty__icon {
	display: flex;
	width: 76px;
	height: 76px;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background: var(--th-soft);
	color: var(--th-primary);
}

body.woocommerce-cart .th-cart-empty__icon svg {
	width: 36px;
	height: 36px;
}

body.woocommerce-cart .th-cart-empty h2 {
	margin: 0;
	font-size: 27px;
	line-height: 1.2;
	font-weight: 750;
	letter-spacing: -.025em;
}

body.woocommerce-cart .th-cart-empty p {
	max-width: 620px;
	margin: 8px 0 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--th-muted);
}

body.woocommerce-cart .th-cart-empty__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-top: 20px;
}

body.woocommerce-cart .th-cart-empty__primary {
	display: inline-flex !important;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0 20px !important;
	border: 1px solid var(--th-accent) !important;
	border-radius: 11px !important;
	background: var(--th-accent) !important;
	color: var(--th-white) !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	text-decoration: none !important;
}

body.woocommerce-cart .th-cart-empty__primary:hover {
	border-color: var(--th-accent-dark) !important;
	background: var(--th-accent-dark) !important;
}

body.woocommerce-cart .th-cart-empty__secondary {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-size: 14px;
	font-weight: 650;
	color: var(--th-primary);
	text-decoration: none;
}

/* Woo notices */
body.woocommerce-cart .woocommerce-notices-wrapper {
	width: min(1220px, calc(100% - 48px));
	margin: 18px auto -26px;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
	margin: 0 0 14px !important;
	padding: 13px 15px !important;
	border: 1px solid var(--th-border) !important;
	border-top-width: 1px !important;
	border-radius: 12px !important;
	background: var(--th-raised) !important;
	box-shadow: none !important;
	font-size: 14px !important;
	line-height: 1.45 !important;
	color: var(--th-text) !important;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-error::before {
	display: none !important;
}

body.woocommerce-cart .woocommerce-error {
	border-color: rgba(180, 35, 24, .25) !important;
	background: var(--e-global-color-d46a2c0, #FECECB) !important;
}

body.woocommerce-cart .woocommerce-message .button,
body.woocommerce-cart .woocommerce-info .button {
	min-height: 38px;
	padding: 0 12px !important;
	border-radius: 9px !important;
}

/* Accessibility */
body.woocommerce-cart .th-cart-page a:focus-visible,
body.woocommerce-cart .th-cart-page button:focus-visible,
body.woocommerce-cart .th-cart-page input:focus-visible,
body.woocommerce-cart .th-cart-page summary:focus-visible {
	outline: 3px solid var(--th-primary) !important;
	outline-offset: 3px !important;
}

@media (max-width: 1100px) {
	body.woocommerce-cart .th-cart-page {
		width: min(100% - 40px, 940px);
		padding-top: 42px;
	}

	body.woocommerce-cart .th-cart-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	body.woocommerce-cart .th-cart-summary {
		position: static;
	}

	body.woocommerce-cart .th-cart-summary-card.cart_totals {
		box-shadow: none;
	}
}

@media (max-width: 767px) {
	body.woocommerce-cart .th-cart-page,
	body.woocommerce-cart .woocommerce-notices-wrapper {
		width: calc(100% - 28px);
	}

	body.woocommerce-cart .th-cart-page {
		padding: 30px 0 46px;
	}

	body.woocommerce-cart .th-cart-page__header {
		margin-bottom: 18px;
	}

	body.woocommerce-cart .th-cart-page__header h1 {
		font-size: 34px;
	}

	body.woocommerce-cart .th-cart-products,
	body.woocommerce-cart .th-cart-summary-card,
	body.woocommerce-cart .th-cart-support,
	body.woocommerce-cart .th-cart-empty {
		border-radius: 16px;
	}

	body.woocommerce-cart .th-cart-products__header {
		padding: 17px 18px;
	}

	body.woocommerce-cart .th-cart-products__header h2 {
		font-size: 18px;
	}

	body.woocommerce-cart .th-cart-item {
		grid-template-columns: 88px minmax(0, 1fr);
		gap: 14px;
		padding: 19px 18px;
	}

	body.woocommerce-cart .th-cart-item__image {
		width: 88px;
		height: 88px;
		padding: 7px;
		border-radius: 13px;
	}

	body.woocommerce-cart .th-cart-item__topline {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	body.woocommerce-cart .th-cart-item__title {
		font-size: 16px;
	}

	body.woocommerce-cart .th-cart-item__line-total {
		order: -1;
		min-width: 0;
		padding: 0;
		font-size: 18px;
		text-align: left;
	}

	body.woocommerce-cart .th-cart-item__meta {
		font-size: 12.5px;
	}

	body.woocommerce-cart .th-cart-item__delivery {
		font-size: 12.5px;
	}

	body.woocommerce-cart .th-cart-item__actions {
		flex-wrap: wrap;
		gap: 10px 14px;
		margin-top: 14px;
	}

	body.woocommerce-cart .th-cart-quantity {
		grid-template-columns: 40px 46px 40px;
	}

	body.woocommerce-cart .th-cart-quantity__button {
		width: 40px;
	}

	body.woocommerce-cart .th-cart-quantity__left,
	body.woocommerce-cart .th-cart-quantity__remove.remove {
		width: 40px !important;
	}

	body.woocommerce-cart .th-cart-quantity .quantity,
	body.woocommerce-cart .th-cart-quantity input.qty {
		width: 46px !important;
	}

	body.woocommerce-cart .th-cart-products__footer {
		flex-direction: column;
		align-items: stretch;
		padding: 12px 18px 15px;
		gap: 4px;
	}

	body.woocommerce-cart .th-cart-continue {
		justify-content: center;
		width: 100%;
	}

	body.woocommerce-cart .th-cart-form-actions {
		align-items: stretch;
	}

	body.woocommerce-cart .th-cart-coupon__form {
		grid-template-columns: 1fr;
		width: 100%;
		box-shadow: none;
	}

	body.woocommerce-cart .th-cart-summary-card__header {
		padding: 22px 20px 15px;
	}

	body.woocommerce-cart .th-cart-shipping-status {
		margin: 0 14px 16px;
	}

	body.woocommerce-cart .th-cart-totals-table {
		width: calc(100% - 40px) !important;
		margin: 0 20px !important;
	}

	body.woocommerce-cart .th-cart-proceed {
		padding: 20px 20px 0 !important;
	}

	body.woocommerce-cart .th-cart-reassurance {
		margin-bottom: 20px;
	}

	body.woocommerce-cart .th-cart-support {
		grid-template-columns: 42px minmax(0, 1fr);
		padding: 14px;
		gap: 12px;
	}

	body.woocommerce-cart .th-cart-support__links {
		grid-column: 1 / -1;
		padding-left: 54px;
		gap: 10px 14px;
		flex-wrap: wrap;
	}

	body.woocommerce-cart .th-cart-empty {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 26px 22px;
	}

	body.woocommerce-cart .th-cart-empty__icon {
		width: 62px;
		height: 62px;
		border-radius: 17px;
	}

	body.woocommerce-cart .th-cart-empty h2 {
		font-size: 24px;
	}
}

@media (max-width: 420px) {
	body.woocommerce-cart .th-cart-item {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 12px;
		padding-inline: 15px;
	}

	body.woocommerce-cart .th-cart-item__image {
		width: 76px;
		height: 76px;
	}

	body.woocommerce-cart .th-cart-support__links {
		padding-left: 0;
	}
}

@media (prefers-reduced-motion: no-preference) {
	body.woocommerce-cart .th-cart-checkout-button,
	body.woocommerce-cart .th-cart-empty__primary {
		transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
	}
}

/* v0.5 shipping + stock refinements */
body.woocommerce-cart .th-cart-summary-card__header {
	padding-bottom: 19px;
}

body.woocommerce-cart .th-cart-summary-card__header p {
	display: none;
}

body.woocommerce-cart .th-cart-item__delivery {
	font-weight: 620;
}

body.woocommerce-cart .th-cart-quantity__remove.remove {
	color: #52685C !important;
}

body.woocommerce-cart .th-cart-quantity__remove.remove:hover,
body.woocommerce-cart .th-cart-quantity__remove.remove:focus-visible {
	background: #FCE9E6 !important;
	color: var(--th-error) !important;
}

body.woocommerce-cart .th-cart-totals-table .th-cart-shipping-row td {
	font-weight: 650;
}

body.woocommerce-cart .th-cart-totals-table .th-cart-shipping-row .th-cart-free-label {
	font-weight: 740;
}

/* ==============================
   v0.6 refinement layer
   ============================== */

/* Shipping progress: only direct copy elements are blocks. Never force the
   nested WooCommerce price spans onto separate lines. */
body.woocommerce-cart .th-cart-shipping-status__copy > strong,
body.woocommerce-cart .th-cart-shipping-status__copy > span {
	display: block;
}

body.woocommerce-cart .th-cart-shipping-status--progress .th-cart-shipping-status__copy > strong {
	font-size: 14px;
	line-height: 1.38;
	font-weight: 760;
	letter-spacing: -.005em;
	color: var(--th-text);
}

body.woocommerce-cart .th-cart-shipping-status--progress .woocommerce-Price-amount,
body.woocommerce-cart .th-cart-shipping-status--progress .woocommerce-Price-currencySymbol {
	display: inline !important;
	margin: 0 !important;
	color: inherit !important;
}

/* Compact Thuisera Woo notices: preserve native undo functionality without
   the generic blue Woo/Elementor alert treatment. */
body.woocommerce-cart .woocommerce-notices-wrapper {
	width: min(1240px, calc(100% - 48px));
	margin: 18px auto 0;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info {
	position: relative;
	display: flex;
	min-height: 50px;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px !important;
	padding: 12px 16px 12px 48px !important;
	border: 1px solid #C9DED2 !important;
	border-top: 1px solid #C9DED2 !important;
	border-radius: 13px !important;
	outline: 0 !important;
	background: var(--th-success-soft) !important;
	box-shadow: none !important;
	color: var(--th-text) !important;
	font-size: 13.5px !important;
	line-height: 1.45 !important;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message::before,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info::before {
	content: "✓" !important;
	position: absolute !important;
	top: 50% !important;
	left: 16px !important;
	display: grid !important;
	width: 22px !important;
	height: 22px !important;
	place-items: center;
	margin: 0 !important;
	transform: translateY(-50%);
	border-radius: 999px;
	background: rgba(255,255,255,.78);
	color: var(--th-success) !important;
	font-size: 13px !important;
	font-weight: 800;
	line-height: 1 !important;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message a.restore-item,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info a.restore-item {
	margin-left: 2px;
	color: var(--th-primary) !important;
	font-weight: 720;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message a.restore-item:hover,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info a.restore-item:hover {
	color: var(--th-primary-dark) !important;
}

/* Payment recovery is informational rather than a hard error or a success. */
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info:has(.th-cart-payment-recovery-copy) {
	border-color: #C9DDE8 !important;
	background: var(--th-info-soft) !important;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info:has(.th-cart-payment-recovery-copy)::before {
	content: "i" !important;
	background: rgba(255,255,255,.82) !important;
	color: var(--th-info) !important;
	font-family: Georgia, serif !important;
	font-size: 14px !important;
	font-style: italic;
}

/* Only useful when the summary becomes the first mobile cart component. */
body.woocommerce-cart .th-cart-summary-count {
	display: none;
	margin: 3px 0 0;
	font-size: 12.5px;
	line-height: 1.4;
	font-weight: 550;
	color: var(--th-muted);
}

/* Make the trash affordance slightly more legible while keeping it secondary. */
body.woocommerce-cart .th-cart-quantity__remove.remove {
	color: #52685C !important;
}

body.woocommerce-cart .th-cart-quantity__remove.remove:hover,
body.woocommerce-cart .th-cart-quantity__remove.remove:focus-visible {
	background: #FFF7F6 !important;
	color: var(--th-error) !important;
}

@media (max-width: 767px) {
	/* Commercial mobile flow: totals and checkout first, then product review.
	   The existing continue-shopping button naturally remains after products. */
	body.woocommerce-cart .th-cart-layout {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	body.woocommerce-cart .th-cart-summary {
		order: 1;
	}

	body.woocommerce-cart .th-cart-products {
		order: 2;
	}

	body.woocommerce-cart .th-cart-summary-count {
		display: block;
	}

	body.woocommerce-cart .th-cart-summary-card__header {
		padding: 19px 18px 12px;
	}

	body.woocommerce-cart .th-cart-shipping-status {
		margin: 0 12px 14px;
		padding: 13px;
		border-radius: 13px;
	}

	/* Product rows: retain useful 40px controls but reduce empty vertical space. */
	body.woocommerce-cart .th-cart-item {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 12px;
		padding: 16px 14px;
	}

	body.woocommerce-cart .th-cart-item__image {
		width: 82px;
		height: 82px;
		padding: 6px;
		border-radius: 12px;
	}

	/* Title is primary; line total stays aligned to its right instead of jumping
	   above the product title. */
	body.woocommerce-cart .th-cart-item__topline {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 9px;
		align-items: start;
	}

	body.woocommerce-cart .th-cart-item__title {
		font-size: 15.5px;
		line-height: 1.34;
	}

	body.woocommerce-cart .th-cart-item__line-total {
		order: initial;
		min-width: 58px;
		padding: 0;
		font-size: 16.5px;
		line-height: 1.3;
		text-align: right;
	}

	body.woocommerce-cart .th-cart-item__meta {
		margin-top: 3px;
		font-size: 12px;
		line-height: 1.4;
	}

	body.woocommerce-cart .th-cart-item__delivery {
		margin-top: 5px;
		font-size: 12px;
		line-height: 1.35;
	}

	body.woocommerce-cart .th-cart-item__delivery svg {
		width: 16px;
		height: 16px;
	}

	body.woocommerce-cart .th-cart-item__actions {
		gap: 9px 12px;
		margin-top: 10px;
	}

	body.woocommerce-cart .th-cart-products__footer {
		padding: 11px 14px 14px;
	}

	body.woocommerce-cart .th-cart-reassurance {
		gap: 6px;
		margin: 10px 16px 16px;
		font-size: 11.5px;
		line-height: 1.4;
	}

	body.woocommerce-cart .woocommerce-notices-wrapper {
		width: calc(100% - 28px);
		margin-top: 12px;
	}

	body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
	body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info {
		min-height: 46px;
		padding: 11px 13px 11px 43px !important;
		font-size: 12.5px !important;
	}

	body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message::before,
	body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info::before {
		left: 13px !important;
	}
}

@media (max-width: 420px) {
	body.woocommerce-cart .th-cart-item {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 11px;
	}

	body.woocommerce-cart .th-cart-item__image {
		width: 76px;
		height: 76px;
	}

	body.woocommerce-cart .th-cart-item__title {
		font-size: 15px;
	}

	body.woocommerce-cart .th-cart-item__line-total {
		font-size: 16px;
	}
}

/* ==============================
   v0.7 final polish layer
   ============================== */

/* When a Woo notice is present, keep it visually connected to the cart rather
   than creating a second oversized vertical break before the page heading. */
body.woocommerce-cart .woocommerce-notices-wrapper:not(:empty) + .th-cart-page {
	padding-top: 32px;
}

/* Prices and quantities line up more calmly when amounts have different widths. */
body.woocommerce-cart .th-cart-item__line-total,
body.woocommerce-cart .th-cart-item__meta,
body.woocommerce-cart .th-cart-count,
body.woocommerce-cart .th-cart-quantity input.qty,
body.woocommerce-cart .th-cart-totals-table td,
body.woocommerce-cart .th-cart-shipping-status,
body.woocommerce-cart .th-cart-summary-count {
	font-variant-numeric: tabular-nums;
}

/* Woo's responsive table stylesheet can append punctuation/data labels. Our
   custom cart already renders persistent semantic <th> labels, so suppress the
   generated duplicates for a consistent desktop/mobile presentation. */
body.woocommerce-cart .th-cart-totals-table th::after,
body.woocommerce-cart .th-cart-totals-table td::before {
	display: none !important;
	content: none !important;
}

/* Keep progress copy together naturally; never split the currency symbol from
   its amount even on narrow screens. */
body.woocommerce-cart .th-cart-shipping-status--progress strong {
	word-break: normal;
	overflow-wrap: normal;
}

body.woocommerce-cart .th-cart-shipping-status--progress .woocommerce-Price-amount {
	white-space: nowrap;
}

/* Small alignment polish: summary rows and line totals should read as one
   vertical price column. */
body.woocommerce-cart .th-cart-totals-table td,
body.woocommerce-cart .th-cart-item__line-total {
	font-feature-settings: "tnum" 1;
}

@media (max-width: 767px) {
	body.woocommerce-cart .woocommerce-notices-wrapper:not(:empty) + .th-cart-page {
		padding-top: 22px;
	}

	/* Give long product names slightly more room without making the row taller. */
	body.woocommerce-cart .th-cart-item__topline {
		gap: 8px;
	}

	body.woocommerce-cart .th-cart-item__line-total {
		min-width: 66px;
	}

	/* Preserve clean labels after suppressing Woo's responsive pseudo content. */
	body.woocommerce-cart .th-cart-totals-table th {
		display: table-cell !important;
		width: 46%;
	}

	body.woocommerce-cart .th-cart-totals-table td {
		display: table-cell !important;
		width: 54%;
	}
}

@media (max-width: 420px) {
	body.woocommerce-cart .th-cart-page__header h1 {
		font-size: 32px;
		line-height: 1.08;
	}

	body.woocommerce-cart .th-cart-page__header p {
		font-size: 14px;
	}
}


/* =========================================================
   v0.8 admin coupon containment
   Keep the manager-only coupon form inside the product card.
   ========================================================= */
@media (min-width: 768px) {
	body.woocommerce-cart .th-cart-coupon[open] {
		width: min(330px, 100%);
	}

	body.woocommerce-cart .th-cart-coupon[open] summary {
		justify-content: flex-end;
		width: 100%;
	}

	body.woocommerce-cart .th-cart-coupon[open] .th-cart-coupon__form {
		position: static;
		right: auto;
		top: auto;
		width: 100%;
		max-width: 100%;
		margin-top: 10px;
		box-sizing: border-box;
	}
}

/* ==============================
   v0.9.10 — expired payment alert
   ============================== */
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error:has(.th-cart-expired-payment-copy) {
	position: relative;
	display: flex;
	min-height: 82px;
	align-items: center;
	margin: 0 0 18px !important;
	padding: 18px 22px 18px 68px !important;
	border: 1px solid #E1877D !important;
	border-top: 1px solid #E1877D !important;
	border-radius: 14px !important;
	background: #FCE1DE !important;
	box-shadow: 0 8px 22px rgba(180, 35, 24, .07) !important;
	color: #7A271A !important;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error:has(.th-cart-expired-payment-copy)::before {
	content: "!" !important;
	position: absolute !important;
	top: 50% !important;
	left: 20px !important;
	display: grid !important;
	width: 32px !important;
	height: 32px !important;
	place-items: center;
	margin: 0 !important;
	transform: translateY(-50%);
	border-radius: 999px;
	background: var(--th-error) !important;
	color: #FFFFFF !important;
	font-family: inherit !important;
	font-size: 19px !important;
	font-style: normal !important;
	font-weight: 850 !important;
	line-height: 1 !important;
}

body.woocommerce-cart .th-cart-expired-payment-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: inherit;
}

body.woocommerce-cart .th-cart-expired-payment-copy strong {
	display: block;
	color: #7A271A;
	font-size: 17px;
	font-weight: 820;
	line-height: 1.35;
}

body.woocommerce-cart .th-cart-expired-payment-copy span {
	display: block;
	color: #8A3429;
	font-size: 14.5px;
	font-weight: 540;
	line-height: 1.45;
}

@media (max-width: 767px) {
	body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error:has(.th-cart-expired-payment-copy) {
		min-height: 0;
		padding: 14px 14px 14px 54px !important;
	}

	body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error:has(.th-cart-expired-payment-copy)::before {
		left: 14px !important;
	}
}
