.mmw-mini-cart-wrap {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 20;
}

.mmw-cart-button {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 0;
	isolation: isolate;
	width: 40px;
	height: 40px;
	border: 2px solid #6B26D9;
	border-radius: 12px;
	background: #fff;
	position: relative;
	text-decoration: none;
	transition: all .25s ease;
}

.mmw-cart-button:hover {
	background: rgba(107, 38, 217, 0.05);
	box-shadow: 0 8px 20px rgba(107, 38, 217, 0.08);
}

.mmw-cart-button.is-blink {
	animation: mmw-cart-blink .2s ease-in-out 1;
}

@keyframes mmw-cart-blink {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 0 rgba(107, 38, 217, 0);
	}
	50% {
		opacity: .2;
		box-shadow: 0 0 0 6px rgba(107, 38, 217, 0.18);
	}
}

.mmw-cart-icon {
	width: 16px;
	height: 16px;
	display: block;
}

.mmw-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 20px;
	height: 20px;
	min-width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F59F0A;
	border-radius: 999px;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #1B102D;
	z-index: 1;
}

.mmw-cart-count.is-empty {
	opacity: 0;
	transform: scale(.75);
	pointer-events: none;
}

.mmw-mini-cart-dropdown {
	position: absolute;
	top: calc(100% + 14px);
	right: 0;
	width: min(420px, calc(100vw - 24px));
	max-width: calc(100vw - 24px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
	z-index: 999;
}

.mmw-mini-cart-wrap.is-open .mmw-mini-cart-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.mmw-mini-cart-dropdown-inner {
	background: #ffffff;
	border: 1px solid rgba(107, 38, 217, 0.10);
	border-radius: 18px;
	padding: 16px;
	box-shadow: 0 20px 50px rgba(27, 16, 45, 0.12);
	position: relative;
}

.mmw-mini-cart-close {
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 999px;
	background: rgba(107, 38, 217, 0.10);
	color: #6B26D9;
	font: 700 20px/1 "DM Sans", sans-serif;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.mmw-mini-cart-close:hover {
	background: rgba(107, 38, 217, 0.18);
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart-item {
	position: relative;
	padding: 12px 32px 12px 0;
	border-bottom: 1px solid rgba(27, 16, 45, 0.08);
	min-height: 78px;
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart-item:last-child {
	border-bottom: 0;
}

.mmw-mini-cart-dropdown .remove {
	position: absolute;
	top: 12px;
	right: 0;
	width: 22px;
	height: 22px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	text-decoration: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #6B26D9 !important;
	background: rgba(107, 38, 217, 0.06);
	transition: all .2s ease;
}

.mmw-mini-cart-dropdown .remove:hover {
	background: rgba(107, 38, 217, 0.12);
	transform: scale(1.05);
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) {
	display: block;
	min-height: 54px;
	text-decoration: none;
	color: #1B102D;
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	overflow: hidden;
}

.mmw-mini-cart-thumb,
.mmw-mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) img {
	display: block !important;
	float: left;
	width: 96px;
	height: 54px;
	margin-right: 12px;
	object-fit: cover;
	border-radius: 12px;
	background: #f6f3fb;
	box-shadow: 0 4px 12px rgba(27, 16, 45, 0.05);
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) .cs-ticket-cart-meta {
	display: none !important;
}

.mmw-mini-cart-dropdown .quantity {
	display: block;
	margin-top: 6px;
	margin-left: 108px;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(27, 16, 45, 0.72);
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart-item > .cs-ticket-cart-meta {
	display: block;
	margin: 6px 0 0 108px;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(27, 16, 45, 0.72);
	background: rgba(107, 38, 217, 0.04);
	border-radius: 10px;
	padding: 8px 10px;
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(27, 16, 45, 0.08);
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
	color: #1B102D;
}

.mmw-mini-cart-dropdown .woocommerce-mini-cart__buttons {
	display: none;
}

.mmw-mini-cart-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 16px;
}

.mmw-mini-cart-btn {
	height: 44px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	padding: 0 14px;
	box-sizing: border-box;
	transition: all .25s ease;
}

.mmw-mini-cart-btn--secondary {
	border: 2px solid #6B26D9;
	color: #6B26D9;
	background: transparent;
}

.mmw-mini-cart-btn--secondary:hover {
	background: rgba(107, 38, 217, 0.05);
}

.mmw-mini-cart-btn--primary {
	background: linear-gradient(
		354.13deg,
		#FF29FF -53.02%,
		#6B0F1A 43.44%,
		#FF29FF 126.13%
	);
	color: #fff;
	border: 0;
}

.mmw-mini-cart-btn--primary:hover {
	opacity: .92;
	transform: translateY(-1px);
}

body.mmw-mini-cart-open {
	overflow: hidden;
}

body.mmw-mini-cart-open::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(27, 16, 45, 0.42);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 2147483645;
}

.mmw-mini-cart-dropdown.mmw-mini-cart-dropdown--portal {
	z-index: 2147483646 !important;
}

@media (max-width: 767px) {
	.mmw-mini-cart-dropdown.mmw-mini-cart-dropdown--portal[aria-hidden="true"] {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		transform: translate(-50%, -50%) scale(.95) !important;
	}

	.mmw-mini-cart-dropdown.mmw-mini-cart-dropdown--portal[aria-hidden="false"] {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translate(-50%, -50%) scale(1) !important;
	}
}

@media (max-width: 767px) {
	.mmw-mini-cart-wrap {
		position: static;
	}

	.mmw-mini-cart-dropdown {
		position: fixed;
		top: 50%;
		left: 50%;
		right: auto;
		width: calc(100vw - 24px);
		max-width: 420px;
		max-height: calc(100vh - 32px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, -50%) scale(.95);
		z-index: 999;
	}

	.mmw-mini-cart-wrap.is-open .mmw-mini-cart-dropdown {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, -50%) scale(1);
	}

	.mmw-mini-cart-dropdown-inner {
		max-height: calc(100vh - 32px);
		overflow-y: auto;
		padding: 40px 14px 14px;
		border-radius: 16px;
	}

	.mmw-mini-cart-close {
		display: inline-flex;
	}

	.mmw-mini-cart-thumb,
	.mmw-mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) img {
		width: 88px;
		height: 50px;
		margin-right: 10px;
		border-radius: 10px;
	}

	.mmw-mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) {
		min-height: 50px;
		font-size: 13px;
		line-height: 1.35;
	}

	.mmw-mini-cart-dropdown .quantity {
		margin-left: 98px;
		font-size: 12px;
	}

	.mmw-mini-cart-dropdown .woocommerce-mini-cart-item > .cs-ticket-cart-meta {
		margin-left: 98px;
		font-size: 11px;
		padding: 7px 9px;
	}

	.mmw-mini-cart-dropdown .remove {
		top: 10px;
		right: 0;
		width: 20px;
		height: 20px;
		font-size: 14px;
	}

	.mmw-mini-cart-actions {
		grid-template-columns: 1fr;
	}

	.mmw-mini-cart-btn {
		width: 100%;
		height: 42px;
		font-size: 13px;
	}
}

@media (max-width: 991px) {
	.brx-offcanvas-inner {
		overflow-x: hidden;
	}

	.brx-offcanvas-inner .mmw-mini-cart-wrap {
		width: 100%;
		max-width: 100%;
		display: block;
		position: relative;
		z-index: 20;
	}

	.brx-offcanvas-inner .mmw-cart-button {
		width: 40px;
		height: 40px;
		justify-content: center;
		padding: 0;
		border-radius: 12px;
	}

	.brx-offcanvas-inner .mmw-cart-icon {
		width: 16px;
		height: 16px;
		flex: 0 0 auto;
	}

	.brx-offcanvas-inner .mmw-cart-count {
		position: absolute;
		top: -2px;
		right: -2px;
		margin-left: 0;
	}

	.brx-offcanvas-inner .mmw-mini-cart-wrap .mmw-mini-cart-dropdown {
		position: static;
		top: auto;
		right: auto;
		left: auto;
		width: 100%;
		max-width: 100%;
		max-height: none;
		margin-top: 12px;
		transform: none !important;
		transition: none;
		z-index: auto;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		overflow: hidden;
	}

	.brx-offcanvas-inner .mmw-mini-cart-wrap.is-open .mmw-mini-cart-dropdown {
		display: block;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown-inner {
		max-height: min(66vh, 520px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		padding: 40px 12px 12px;
		border-radius: 14px;
		overflow-x: hidden;
		width: 100%;
		box-sizing: border-box;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown .woocommerce-mini-cart-item {
		padding-right: 26px;
		min-height: 68px;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown .remove {
		right: 2px;
	}

	.brx-offcanvas-inner .mmw-mini-cart-thumb,
	.brx-offcanvas-inner .mmw-mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) img {
		width: 78px;
		height: 44px;
		margin-right: 8px;
		border-radius: 9px;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown .woocommerce-mini-cart-item > a:not(.remove) {
		min-height: 44px;
		font-size: 13px;
		line-height: 1.3;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown .quantity {
		margin-left: 86px;
		font-size: 12px;
		line-height: 1.35;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown .woocommerce-mini-cart-item > .cs-ticket-cart-meta {
		margin-left: 86px;
		font-size: 11px;
		padding: 6px 8px;
	}

	.brx-offcanvas-inner .mmw-mini-cart-actions {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.brx-offcanvas-inner .mmw-mini-cart-btn {
		width: 100%;
		height: 40px;
		font-size: 13px;
	}
}

@media (max-width: 575px) {
	.brx-offcanvas-inner .mmw-mini-cart-wrap .mmw-mini-cart-dropdown {
		margin-top: 10px;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown-inner {
		max-height: min(68vh, 560px);
		padding: 10px;
		border-radius: 12px;
	}
}

@media (max-width: 767px) {
	.brx-offcanvas-inner {
		overflow: visible !important;
	}

	.brx-offcanvas-inner .mmw-mini-cart-wrap .mmw-mini-cart-dropdown {
		position: fixed !important;
		top: 50% !important;
		left: 50% !important;
		right: auto !important;
		width: calc(100vw - 24px) !important;
		max-width: 420px !important;
		max-height: calc(100vh - 32px) !important;
		margin-top: 0 !important;
		display: block !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		transform: translate(-50%, -50%) scale(.95) !important;
		transition: opacity .25s ease, visibility .25s ease, transform .25s ease !important;
		z-index: 10001 !important;
	}

	.brx-offcanvas-inner .mmw-mini-cart-wrap.is-open .mmw-mini-cart-dropdown {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translate(-50%, -50%) scale(1) !important;
	}

	.brx-offcanvas-inner .mmw-mini-cart-dropdown-inner {
		max-height: calc(100vh - 32px);
	}
}

/* Custom cart page in mini-cart visual style */
body.mmw-cart-redesign .woocommerce {
	--mmw-primary: #6B26D9;
	--mmw-text: #1B102D;
	--mmw-border: rgba(27, 16, 45, 0.11);
	--mmw-soft: #f7f3fc;
	--mmw-card-shadow: 0 18px 40px rgba(27, 16, 45, 0.09);
}

body.mmw-cart-redesign .woocommerce-cart-form,
body.mmw-cart-redesign .cart-collaterals .cart_totals {
	background: #fff;
	border: 1px solid var(--mmw-border);
	border-radius: 20px;
	box-shadow: var(--mmw-card-shadow);
}

body.mmw-cart-redesign .woocommerce-cart-form {
	padding: 20px;
	margin-bottom: 18px;
}

body.mmw-cart-redesign .cart-collaterals .cart_totals {
	padding: 18px;
	position: sticky;
	top: 18px;
}

body.mmw-cart-redesign .shop_table {
	border: 0 !important;
	margin: 0 !important;
}

body.mmw-cart-redesign .shop_table thead th {
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(27, 16, 45, 0.58);
	border-bottom: 1px solid var(--mmw-border);
	padding: 0 0 12px;
}

body.mmw-cart-redesign .shop_table tbody tr {
	position: relative;
	display: grid;
	grid-template-columns: 34px 112px minmax(240px, 1fr) 120px 110px 130px;
	align-items: center;
	gap: 12px;
	padding: 12px 12px;
	margin-top: 10px;
	background: var(--mmw-soft);
	border: 1px solid rgba(107, 38, 217, 0.08);
	border-radius: 14px;
}

body.mmw-cart-redesign .shop_table tbody td {
	padding: 0;
	border: 0;
	vertical-align: middle;
	color: var(--mmw-text);
}

body.mmw-cart-redesign .shop_table .product-thumbnail img {
	width: 110px;
	height: 62px;
	object-fit: cover;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 6px 14px rgba(27, 16, 45, 0.08);
}

body.mmw-cart-redesign .shop_table .product-name a {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.35;
	color: var(--mmw-text);
	text-decoration: none;
}

body.mmw-cart-redesign .shop_table .product-name .variation,
body.mmw-cart-redesign .shop_table .product-name .wc-item-meta,
body.mmw-cart-redesign .shop_table .product-name .cs-ticket-cart-meta,
body.mmw-cart-redesign .shop_table .coupon,
body.mmw-cart-redesign .cart-collaterals .cross-sells,
body.mmw-cart-redesign .wc-proceed-to-checkout .continue-shopping,
body.mmw-cart-redesign .shop_table .product-price::before,
body.mmw-cart-redesign .shop_table .product-subtotal::before,
body.mmw-cart-redesign .shop_table .product-quantity::before {
	display: none !important;
}

body.mmw-cart-redesign .shop_table .product-price,
body.mmw-cart-redesign .shop_table .product-subtotal {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	color: var(--mmw-text);
}

body.mmw-cart-redesign .shop_table .product-quantity .qty {
	min-width: 84px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid var(--mmw-border);
	background: #fff;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	color: var(--mmw-text);
}

body.mmw-cart-redesign .shop_table .product-remove {
	text-align: right;
}

body.mmw-cart-redesign .shop_table .product-remove a {
	width: 26px;
	height: 26px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: var(--mmw-primary) !important;
	background: rgba(107, 38, 217, 0.1);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease;
}

body.mmw-cart-redesign .shop_table .product-remove a:hover {
	transform: scale(1.06);
	background: rgba(107, 38, 217, 0.17);
}

body.mmw-cart-redesign .actions {
	margin-top: 14px;
	padding-top: 12px !important;
	border-top: 1px solid var(--mmw-border);
}

body.mmw-cart-redesign .actions button[name="update_cart"] {
	border-radius: 10px;
	border: 2px solid var(--mmw-primary);
	background: transparent;
	color: var(--mmw-primary);
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	padding: 0 14px;
	height: 42px;
	transition: background .2s ease, color .2s ease;
}

body.mmw-cart-redesign .actions button[name="update_cart"]:hover {
	background: rgba(107, 38, 217, 0.08);
}

body.mmw-cart-redesign .cart_totals h2 {
	margin: 0 0 14px;
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--mmw-text);
}

body.mmw-cart-redesign .cart_totals table th,
body.mmw-cart-redesign .cart_totals table td {
	border-color: var(--mmw-border);
	padding: 12px 0;
	color: var(--mmw-text);
}

body.mmw-cart-redesign .cart_totals .order-total th,
body.mmw-cart-redesign .cart_totals .order-total td {
	font-size: 18px;
	font-weight: 800;
}

body.mmw-cart-redesign .wc-proceed-to-checkout {
	margin-top: 14px;
}

body.mmw-cart-redesign .wc-proceed-to-checkout .checkout-button {
	margin: 0 !important;
	width: 100%;
	min-height: 56px;
	height: 56px;
	display: flex !important;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 25px !important;
	gap: 8px;
	border-radius: 12px !important;
	background: linear-gradient(354.13deg, #FF29FF -53.02%, #6B0F1A 43.44%, #FF29FF 126.13%) !important;
	box-shadow: 0 16px 48px -12px rgba(107, 38, 217, 0.18);
	border: 0 !important;
	font-family: "Poppins", "DM Sans", sans-serif !important;
	font-style: normal;
	font-weight: 500 !important;
	font-size: 20px !important;
	line-height: 20px !important;
	text-align: center;
	color: #FFFFFF !important;
	background-clip: padding-box;
}

@media (max-width: 1024px) {
	body.mmw-cart-redesign .cart-collaterals .cart_totals {
		position: static;
		margin-top: 14px;
	}

	body.mmw-cart-redesign .shop_table tbody tr {
		grid-template-columns: 30px 100px minmax(180px, 1fr) 108px 92px 112px;
	}
}

@media (max-width: 767px) {
	body.mmw-cart-redesign .woocommerce-cart-form,
	body.mmw-cart-redesign .cart-collaterals .cart_totals {
		padding: 14px;
		border-radius: 14px;
	}

	body.mmw-cart-redesign .shop_table thead {
		display: none;
	}

	body.mmw-cart-redesign .shop_table tbody tr {
		display: block;
		padding: 12px;
	}

	body.mmw-cart-redesign .shop_table tbody td {
		display: block;
		width: 100%;
		margin: 0 0 10px;
		text-align: left !important;
	}

	body.mmw-cart-redesign .shop_table tbody td:last-child {
		margin-bottom: 0;
	}

	body.mmw-cart-redesign .shop_table .product-thumbnail img {
		width: 96px;
		height: 54px;
	}

	body.mmw-cart-redesign .shop_table .product-price::before {
		content: "Price: ";
		display: inline !important;
		font-weight: 700;
		color: rgba(27, 16, 45, 0.6);
	}

	body.mmw-cart-redesign .shop_table .product-quantity::before {
		content: "Qty: ";
		display: inline !important;
		font-weight: 700;
		color: rgba(27, 16, 45, 0.6);
	}

	body.mmw-cart-redesign .shop_table .product-subtotal::before {
		content: "Subtotal: ";
		display: inline !important;
		font-weight: 700;
		color: rgba(27, 16, 45, 0.6);
	}

	body.mmw-cart-redesign .shop_table .product-remove {
		text-align: left;
	}

	body.mmw-cart-redesign .actions {
		display: flex;
		justify-content: flex-start;
	}
}

/* Fully custom cart layout used by [woocommerce_cart] override */
body.mmw-cart-redesign .mmw-cart-page {
	--mmw-violet: #6B26D9;
	--mmw-orange: #F59F0A;
	--mmw-text: #1B102D;
	--mmw-muted: #6F677E;
	--mmw-bg: linear-gradient(180deg, #F9F8FB 0%, #FFFFFF 100%);
	background: var(--mmw-bg);
	padding: 28px 0 36px;
}

body.mmw-cart-redesign .mmw-cart-shell {
	width: min(1228px, calc(100% - 24px));
	margin: 0 auto;
}

body.mmw-cart-redesign .mmw-cart-hero {
	background: linear-gradient(120deg, rgba(107, 38, 217, 0.12), rgba(245, 159, 10, 0.1));
	border: 1px solid rgba(107, 38, 217, 0.14);
	border-radius: 18px;
	padding: 18px;
	margin-bottom: 18px;
}

body.mmw-cart-redesign .mmw-cart-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 32px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(107, 38, 217, 0.12);
	color: var(--mmw-violet);
	font: 600 13px/1 "DM Sans", sans-serif;
}

body.mmw-cart-redesign .mmw-cart-pill::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mmw-violet);
}

body.mmw-cart-redesign .mmw-cart-hero h1 {
	margin: 12px 0 8px;
	font: 400 46px/1.05 "Anton", "DM Sans", sans-serif;
	letter-spacing: .02em;
	color: var(--mmw-text);
}

body.mmw-cart-redesign .mmw-cart-hero h1 em {
	font-style: normal;
	background: linear-gradient(97.69deg, #F59F0A 0%, #F97A1F 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

body.mmw-cart-redesign .mmw-cart-hero p {
	margin: 0;
	max-width: 620px;
	font: 400 16px/1.6 "DM Sans", sans-serif;
	color: var(--mmw-muted);
}

body.mmw-cart-redesign .mmw-cart-cta {
	margin-top: 12px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	padding: 0 20px;
	border-radius: 12px;
	text-decoration: none;
	font: 700 14px/1 "DM Sans", sans-serif;
	background: linear-gradient(90deg, #F59E0B 0%, #F97316 100%);
	color: #fff;
}

body.mmw-cart-redesign .mmw-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 18px;
	align-items: start;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap {
	position: sticky;
	top: 92px;
	align-self: start;
}

body.mmw-cart-redesign .mmw-custom-cart-form {
	margin: 0;
	padding: 18px;
	border-radius: 16px;
	border: 1px solid rgba(107, 38, 217, 0.14);
	background: #fff;
	box-shadow: 0 14px 40px -16px rgba(107, 38, 217, 0.24);
}

body.mmw-cart-redesign .mmw-cart-items {
	display: grid;
	gap: 12px;
}

body.mmw-cart-redesign .mmw-cart-item {
	display: grid;
	grid-template-columns: 30px 96px minmax(220px, 1fr);
	grid-template-areas:
		"remove thumb main"
		". qty qty";
	gap: 12px 14px;
	align-items: start;
	padding: 12px;
	border-radius: 14px;
	background: var(--mmw-bg);
	border: 1px solid rgba(107, 38, 217, 0.1);
}

body.mmw-cart-redesign .mmw-cart-item-remove {
	grid-area: remove;
	padding-top: 2px;
}

body.mmw-cart-redesign .mmw-cart-item-thumb {
	grid-area: thumb;
}

body.mmw-cart-redesign .mmw-cart-item-main {
	grid-area: main;
	min-width: 0;
}

body.mmw-cart-redesign .mmw-cart-item-remove .remove {
	width: 24px;
	height: 24px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	color: var(--mmw-violet) !important;
	background: rgba(107, 38, 217, 0.08);
}

body.mmw-cart-redesign .mmw-cart-item-thumb img {
	width: 96px;
	height: 54px;
	object-fit: cover;
	border-radius: 10px;
	background: #f4f2f8;
}

body.mmw-cart-redesign .mmw-cart-item-main h3 {
	margin: 0 0 4px;
	font: 700 16px/1.35 "DM Sans", sans-serif;
	letter-spacing: -0.01em;
}

body.mmw-cart-redesign .mmw-cart-item-main h3 a {
	color: var(--mmw-text);
	text-decoration: none;
}

body.mmw-cart-redesign .mmw-cart-item-meta {
	font: 500 13px/1.4 "DM Sans", sans-serif;
	color: var(--mmw-muted);
}

body.mmw-cart-redesign .mmw-cart-item-ticket-meta {
	margin-top: 6px;
	padding: 7px 9px;
	border-radius: 10px;
	background: rgba(107, 38, 217, 0.08);
	color: #4f2a93;
	font: 600 12px/1.35 "DM Sans", sans-serif;
}

body.mmw-cart-redesign .mmw-cart-item-ticket-meta dl {
	margin: 0;
}

body.mmw-cart-redesign .mmw-cart-item-ticket-meta dt,
body.mmw-cart-redesign .mmw-cart-item-ticket-meta dd {
	display: inline;
	margin: 0;
}

body.mmw-cart-redesign .mmw-cart-item-ticket-meta dd + dt::before {
	content: " | ";
	color: rgba(79, 42, 147, 0.45);
}

body.mmw-cart-redesign .mmw-cart-item-qty label,
body.mmw-cart-redesign .mmw-cart-item-subtotal label {
	display: block;
	margin-bottom: 6px;
	font: 600 12px/1.2 "DM Sans", sans-serif;
	color: rgba(27, 16, 45, 0.7);
	text-transform: uppercase;
	letter-spacing: .05em;
}

body.mmw-cart-redesign .mmw-cart-item-qty {
	grid-area: qty;
	min-width: 0;
}

body.mmw-cart-redesign .mmw-cart-item-qty .qty {
	width: 86px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid rgba(107, 38, 217, 0.22);
	background: #fff;
	color: var(--mmw-text);
	font: 700 14px/1 "DM Sans", sans-serif;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-input {
	display: block;
	width: 96px;
	height: 40px;
	padding: 0 10px;
	border-radius: 10px;
	border: 1px solid rgba(107, 38, 217, 0.22);
	background: #fff;
	color: #1B102D;
	font: 700 14px/1 "DM Sans", sans-serif;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-fixed {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid rgba(107, 38, 217, 0.22);
	background: #fff;
	color: #1B102D;
	font: 700 14px/1 "DM Sans", sans-serif;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 40px;
	padding: 0 10px;
	border-radius: 10px;
	background: rgba(107, 38, 217, 0.1);
	border: 1px solid rgba(107, 38, 217, 0.2);
	color: #1B102D;
	font: 800 16px/1 "DM Sans", sans-serif;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-stepper {
	display: grid;
	grid-template-columns: 30px 1fr 30px;
	align-items: center;
	width: 132px;
	height: 44px;
	border-radius: 16px;
	border: 2px solid rgba(107, 38, 217, 0.22);
	background: linear-gradient(180deg, #F9F8FB 0%, #FFFFFF 100%);
	box-shadow: 0 8px 24px -10px rgba(15, 23, 41, 0.15);
	overflow: hidden;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-btn {
	height: 100%;
	border: 0;
	background: rgba(107, 38, 217, 0.1);
	color: #6B26D9;
	font: 800 20px/1 "DM Sans", sans-serif;
	cursor: pointer;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-btn:hover {
	background: rgba(107, 38, 217, 0.18);
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-stepper .mmw-qty-input {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	padding: 0;
	text-align: center;
	background: #fff;
	font: 400 17px/1 "Anton", "DM Sans", sans-serif;
	color: #1B102D;
	appearance: textfield;
	-moz-appearance: textfield;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-stepper .mmw-qty-input::-webkit-outer-spin-button,
body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-stepper .mmw-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-note {
	display: block;
	margin-top: 6px;
	font: 500 11px/1.35 "DM Sans", sans-serif;
	color: #6F677E;
}

body.mmw-cart-redesign .mmw-cart-item-qty .cs-preset {
	margin-top: 10px;
	padding: 14px;
	border-radius: 20px;
	background: linear-gradient(180deg, #F9F8FB 0%, #FFFFFF 100%);
	border: 0;
	box-shadow: 0 8px 24px -8px rgba(15, 23, 41, 0.12);
	display: grid;
	grid-template-columns: repeat(4, minmax(141px, 1fr));
	gap: 8px;
	align-items: stretch;
	overflow-x: hidden;
}

body.mmw-cart-redesign .mmw-cart-item-qty .cs-preset::before {
	content: attr(data-title);
	grid-column: 1 / -1;
	margin: 0 0 2px;
	font: 400 18px/1.3 "DM Sans", sans-serif;
	color: #1B102D;
	letter-spacing: .01em;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card {
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 100%;
	height: 152px;
	min-width: 0;
	min-height: 152px;
	padding: 0;
	overflow: hidden;
	border-radius: 20px;
	border: 2px solid rgba(107, 38, 217, 0.1);
	background: linear-gradient(180deg, #F9F8FB 0%, #FFFFFF 100%);
	cursor: pointer;
	transition: all .2s ease;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card:hover {
	border-color: rgba(107, 38, 217, 0.3);
	transform: translateY(-1px);
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card.is-active,
body.mmw-cart-redesign .mmw-cart-item-qty .preset-card.selected {
	background: rgba(107, 38, 217, 0.1);
	border-color: #6B26D9;
	box-shadow: 0 8px 32px -10px rgba(107, 38, 217, 0.35);
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card > label {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .check-mark {
	box-sizing: border-box;
	position: absolute;
	left: 18px;
	top: 18px;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	border: 2px solid #6B26D9;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card.is-active .check-mark,
body.mmw-cart-redesign .mmw-cart-item-qty .preset-card.selected .check-mark {
	background: #6B26D9;
	box-shadow: inset 0 0 0 2px #fff;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card h4 {
	position: absolute;
	left: 18px;
	top: 50px;
	width: calc(100% - 36px);
	margin: 0;
	font-family: "Anton", "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	display: flex;
	align-items: center;
	color: #1B102D;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .total-price {
	position: absolute;
	left: 18px;
	top: 84px;
	width: calc(100% - 36px);
	margin: 0;
	font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	display: flex;
	align-items: center;
	color: #6B26D9;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .per-unit-price {
	position: absolute;
	left: 18px;
	top: 119px;
	width: calc(100% - 36px);
	margin: 0;
	font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #6F677E;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .total-price,
body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .per-unit-price,
body.mmw-cart-redesign .mmw-cart-item-qty .preset-card h4 {
	pointer-events: none;
}

body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .total-price .woocommerce-Price-amount,
body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .per-unit-price .woocommerce-Price-amount {
	white-space: nowrap;
}

body.mmw-cart-redesign .mmw-cart-item-subtotal strong {
	display: block;
	font: 800 18px/1.2 "DM Sans", sans-serif;
	color: var(--mmw-text);
}

body.mmw-cart-redesign .mmw-cart-item-subtotal {
	margin-top: 10px;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(107, 38, 217, 0.12);
	background: linear-gradient(180deg, #FFFFFF 0%, #F8F4FF 100%);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

body.mmw-cart-redesign .mmw-cart-item-qty > .mmw-cart-item-subtotal label {
	margin: 0;
	flex: 0 0 auto;
}

body.mmw-cart-redesign .mmw-cart-item-qty > .mmw-cart-item-subtotal strong {
	margin-left: auto;
	text-align: right;
}

/* Fallback: if subtotal arrives as sibling of qty, keep it below qty and horizontal */
body.mmw-cart-redesign .mmw-cart-item > .mmw-cart-item-subtotal {
	grid-column: 2 / -1;
	align-self: stretch;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

body.mmw-cart-redesign .mmw-cart-item > .mmw-cart-item-subtotal label {
	margin: 0;
	flex: 0 0 auto;
}

body.mmw-cart-redesign .mmw-cart-item > .mmw-cart-item-subtotal strong {
	margin-left: auto;
	text-align: right;
}

body.mmw-cart-redesign form.woocommerce-cart-form.is-updating {
	opacity: 0.7;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .cart_totals {
	margin: 0 !important;
	padding: 18px !important;
	border-radius: 20px;
	border: 1px solid rgba(107, 38, 217, 0.14);
	background: linear-gradient(180deg, #FFFFFF 0%, #FBF8FF 100%);
	box-shadow: 0 16px 44px -18px rgba(107, 38, 217, 0.28);
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .cart_totals::before {
	content: "REZUMAT";
	display: inline-flex;
	height: 24px;
	padding: 0 10px;
	align-items: center;
	border-radius: 999px;
	background: rgba(107, 38, 217, 0.1);
	color: #6B26D9;
	font: 700 11px/1 "DM Sans", sans-serif;
	letter-spacing: .08em;
	margin-bottom: 10px;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .cart_totals h2 {
	margin: 0 0 12px;
	font: 400 28px/1 "Anton", "DM Sans", sans-serif;
	color: var(--mmw-text);
	letter-spacing: .01em;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .shop_table {
	border: 0 !important;
	margin: 0 !important;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .shop_table th,
body.mmw-cart-redesign .mmw-cart-totals-wrap .shop_table td {
	border-color: rgba(107, 38, 217, 0.14);
	padding: 10px 0;
	color: var(--mmw-text);
	font: 600 14px/1.4 "DM Sans", sans-serif;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .shop_table tr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .order-total th,
body.mmw-cart-redesign .mmw-cart-totals-wrap .order-total td {
	font-weight: 800;
	font-size: 20px;
}

body.mmw-cart-redesign .mmw-cart-totals-wrap .checkout-button {
	width: 100%;
	min-height: 56px;
	height: 56px;
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 25px !important;
	gap: 8px;
	border-radius: 12px !important;
	background: linear-gradient(354.13deg, #FF29FF -53.02%, #6B0F1A 43.44%, #FF29FF 126.13%) !important;
	box-shadow: 0 16px 48px -12px rgba(107, 38, 217, 0.18);
	font-family: "Poppins", "DM Sans", sans-serif !important;
	font-style: normal;
	font-weight: 500 !important;
	font-size: 20px !important;
	line-height: 20px !important;
	border: 0 !important;
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
	box-sizing: border-box;
	color: #FFFFFF !important;
}

@media (max-width: 1024px) {
	body.mmw-cart-redesign .mmw-cart-layout {
		grid-template-columns: 1fr;
	}

	body.mmw-cart-redesign .mmw-cart-totals-wrap {
		position: static;
	}
}

@media (max-width: 767px) {
	body.mmw-cart-redesign .mmw-cart-page {
		padding-top: 16px;
	}

	body.mmw-cart-redesign .mmw-cart-hero h1 {
		font-size: 34px;
	}

	body.mmw-cart-redesign .mmw-custom-cart-form {
		padding: 12px;
	}

	body.mmw-cart-redesign .mmw-cart-item {
		grid-template-columns: 26px 86px 1fr;
		grid-template-areas:
			"remove thumb main"
			". qty qty";
	}

	body.mmw-cart-redesign .mmw-cart-item-remove {
		grid-area: remove;
	}

	body.mmw-cart-redesign .mmw-cart-item-thumb {
		grid-area: thumb;
	}

	body.mmw-cart-redesign .mmw-cart-item-main {
		grid-area: main;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty {
		grid-area: qty;
		margin-top: 8px;
	}

	body.mmw-cart-redesign .mmw-cart-item-subtotal {
		margin-top: 8px;
	}
}

/* WooCommerce notices in plugin visual style */
body.mmw-cart-redesign .woocommerce-notices-wrapper {
	margin-bottom: 16px;
}

body.mmw-cart-redesign .woocommerce-error,
body.mmw-cart-redesign .woocommerce-message,
body.mmw-cart-redesign .woocommerce-info {
	position: relative;
	margin: 0 0 12px !important;
	padding: 14px 16px 14px 46px !important;
	list-style: none !important;
	border-radius: 14px;
	border: 1px solid rgba(107, 38, 217, 0.14);
	background: linear-gradient(180deg, #F9F8FB 0%, #FFFFFF 100%);
	box-shadow: 0 8px 24px -12px rgba(15, 23, 41, 0.12);
	font: 500 14px/1.45 "DM Sans", sans-serif;
	color: #1B102D;
}

body.mmw-cart-redesign .woocommerce-error::before,
body.mmw-cart-redesign .woocommerce-message::before,
body.mmw-cart-redesign .woocommerce-info::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 50%;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	transform: translateY(-50%);
}

body.mmw-cart-redesign .woocommerce-error::after,
body.mmw-cart-redesign .woocommerce-message::after,
body.mmw-cart-redesign .woocommerce-info::after {
	content: "";
	position: absolute;
	left: 20px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	transform: translateY(-50%);
}

body.mmw-cart-redesign .woocommerce-error {
	border-color: rgba(245, 159, 10, 0.25);
	background: linear-gradient(180deg, #FFF8EE 0%, #FFFFFF 100%);
	color: #7C4A03;
}

body.mmw-cart-redesign .woocommerce-error::before {
	background: rgba(245, 159, 10, 0.16);
}

body.mmw-cart-redesign .woocommerce-error::after {
	background: #F59F0A;
}

body.mmw-cart-redesign .woocommerce-message {
	border-color: rgba(107, 38, 217, 0.2);
	background: linear-gradient(180deg, rgba(107, 38, 217, 0.08) 0%, #FFFFFF 100%);
	color: #4B1EA0;
}

body.mmw-cart-redesign .woocommerce-message::before {
	background: rgba(107, 38, 217, 0.14);
}

body.mmw-cart-redesign .woocommerce-message::after {
	background: #6B26D9;
}

body.mmw-cart-redesign .woocommerce-info {
	border-color: rgba(107, 38, 217, 0.16);
	background: linear-gradient(180deg, #F5F0FF 0%, #FFFFFF 100%);
	color: #5A35A2;
}

body.mmw-cart-redesign .woocommerce-info::before {
	background: rgba(107, 38, 217, 0.12);
}

body.mmw-cart-redesign .woocommerce-info::after {
	background: #6B26D9;
}

body.mmw-cart-redesign .woocommerce-error li,
body.mmw-cart-redesign .woocommerce-message li,
body.mmw-cart-redesign .woocommerce-info li {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 767px) {
	body.mmw-cart-redesign .woocommerce-error,
	body.mmw-cart-redesign .woocommerce-message,
	body.mmw-cart-redesign .woocommerce-info {
		padding: 12px 12px 12px 40px !important;
		font-size: 13px;
	}
}

/* Mobile responsive hardening for custom cart */
@media (max-width: 991px) {
	body.mmw-cart-redesign .mmw-cart-shell {
		width: min(1228px, calc(100% - 16px));
	}

	body.mmw-cart-redesign .mmw-cart-hero {
		padding: 14px;
		border-radius: 14px;
	}

	body.mmw-cart-redesign .mmw-cart-hero h1 {
		font-size: 38px;
		line-height: 1.08;
	}

	body.mmw-cart-redesign .mmw-cart-layout {
		gap: 12px;
	}

	body.mmw-cart-redesign .mmw-custom-cart-form,
	body.mmw-cart-redesign .mmw-cart-totals-wrap .cart_totals {
		padding: 14px !important;
		border-radius: 14px;
	}

	body.mmw-cart-redesign .mmw-cart-item {
		grid-template-columns: 26px 84px minmax(0, 1fr);
		grid-template-areas:
			"remove thumb main"
			". qty qty";
		align-items: start;
		gap: 10px;
		padding: 10px;
	}

	body.mmw-cart-redesign .mmw-cart-item-remove {
		grid-area: remove;
		padding-top: 2px;
	}

	body.mmw-cart-redesign .mmw-cart-item-thumb {
		grid-area: thumb;
	}

	body.mmw-cart-redesign .mmw-cart-item-thumb img {
		width: 84px;
		height: 48px;
		border-radius: 9px;
	}

	body.mmw-cart-redesign .mmw-cart-item-main {
		grid-area: main;
		min-width: 0;
	}

	body.mmw-cart-redesign .mmw-cart-item-main h3 {
		font-size: 14px;
		line-height: 1.35;
	}

	body.mmw-cart-redesign .mmw-cart-item-meta {
		font-size: 12px;
	}

	body.mmw-cart-redesign .mmw-cart-item-ticket-meta {
		font-size: 11px;
		padding: 6px 8px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty {
		grid-area: qty;
	}

	body.mmw-cart-redesign .mmw-cart-item-subtotal {
		margin-top: 8px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .cs-preset {
		grid-template-columns: repeat(2, minmax(130px, 1fr));
	}
}

@media (max-width: 575px) {
	body.mmw-cart-redesign .mmw-cart-page {
		padding: 12px 0 20px;
	}

	body.mmw-cart-redesign .mmw-cart-pill {
		height: 30px;
		padding: 0 12px;
		font-size: 12px;
	}

	body.mmw-cart-redesign .mmw-cart-hero h1 {
		font-size: 30px;
	}

	body.mmw-cart-redesign .mmw-cart-hero p {
		font-size: 14px;
		line-height: 1.5;
	}

	body.mmw-cart-redesign .mmw-cart-cta {
		width: 100%;
		justify-content: center;
	}

	body.mmw-cart-redesign .mmw-cart-item {
		grid-template-columns: 22px 76px minmax(0, 1fr);
		grid-template-areas:
			"remove thumb main"
			". qty qty";
		gap: 8px;
		padding: 9px;
	}

	body.mmw-cart-redesign .mmw-cart-item-thumb img {
		width: 76px;
		height: 44px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty label,
	body.mmw-cart-redesign .mmw-cart-item-subtotal label {
		font-size: 10px;
		margin-bottom: 4px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-stepper {
		width: 104px;
		height: 38px;
		border-radius: 12px;
		grid-template-columns: 26px 1fr 26px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-btn {
		font-size: 18px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-stepper .mmw-qty-input {
		font: 400 15px/1 "Anton", "DM Sans", sans-serif;
	}

	body.mmw-cart-redesign .mmw-cart-item-subtotal strong {
		font-size: 15px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .mmw-qty-note {
		font-size: 10px;
		margin-top: 4px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .cs-preset {
		margin-top: 8px;
		padding: 10px;
		border-radius: 20px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 7px;
		overflow-x: hidden;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .cs-preset::before {
		font-size: 16px;
		margin-bottom: 2px;
	}

	body.mmw-cart-redesign .mmw-cart-item-subtotal {
		padding: 8px 10px;
		gap: 8px;
	}

	body.mmw-cart-redesign .mmw-cart-item > .mmw-cart-item-subtotal {
		grid-column: 2 / -1;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .preset-card {
		width: 100%;
		min-width: 0;
		height: 138px;
		min-height: 138px;
		border-radius: 12px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .preset-card h4 {
		top: 46px;
		font-size: 16px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .total-price {
		top: 78px;
		font-size: 20px;
	}

	body.mmw-cart-redesign .mmw-cart-item-qty .preset-card .per-unit-price {
		top: 108px;
	}

	body.mmw-cart-redesign .mmw-cart-totals-wrap .cart_totals h2 {
		font-size: 19px;
	}

	body.mmw-cart-redesign .mmw-cart-totals-wrap .checkout-button {
		min-height: 48px;
		padding: 10px 12px !important;
		font-size: 13px !important;
		line-height: 1.3 !important;
	}
}

/* Final visual lock for subtotal placement/alignment */
body.mmw-cart-redesign .mmw-cart-item .mmw-cart-item-qty > .mmw-cart-item-subtotal,
body.mmw-cart-redesign .mmw-cart-item > .mmw-cart-item-subtotal {
	display: flex !important;
	flex-direction: row !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
	margin-top: 10px !important;
}

body.mmw-cart-redesign .mmw-cart-item > .mmw-cart-item-subtotal {
	grid-column: 1 / -1 !important;
}

body.mmw-cart-redesign .mmw-cart-item .mmw-cart-item-subtotal label {
	margin: 0 !important;
	white-space: nowrap;
}

body.mmw-cart-redesign .mmw-cart-item .mmw-cart-item-subtotal strong {
	margin-left: auto !important;
	text-align: right !important;
	white-space: nowrap;
}

/* Checkout redesign */
body.mmw-checkout-redesign .mmw-checkout-page {
	--mmw-violet: #6B26D9;
	--mmw-text: #1B102D;
	--mmw-muted: #6F677E;
	background: linear-gradient(180deg, #F9F8FB 0%, #FFFFFF 100%);
	padding: 24px 0 36px;
}

body.mmw-checkout-redesign .mmw-checkout-shell {
	width: min(1228px, calc(100% - 24px));
	margin: 0 auto;
}

body.mmw-checkout-redesign .mmw-checkout-hero {
	padding: 16px;
	border-radius: 18px;
	border: 1px solid rgba(107, 38, 217, 0.14);
	background: linear-gradient(120deg, rgba(107, 38, 217, 0.12), rgba(245, 159, 10, 0.08));
	margin-bottom: 16px;
}

body.mmw-checkout-redesign .mmw-checkout-pill {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(107, 38, 217, 0.12);
	color: #6B26D9;
	font: 600 12px/1 "DM Sans", sans-serif;
}

body.mmw-checkout-redesign .mmw-checkout-hero h1 {
	margin: 10px 0 6px;
	font: 400 40px/1.1 "Anton", "DM Sans", sans-serif;
	color: #1B102D;
}

body.mmw-checkout-redesign .mmw-checkout-hero p {
	margin: 0;
	max-width: 680px;
	font: 400 15px/1.55 "DM Sans", sans-serif;
	color: #6F677E;
}

body.mmw-checkout-redesign .mmw-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 16px;
	align-items: start;
}

body.mmw-checkout-redesign .mmw-checkout-main,
body.mmw-checkout-redesign .mmw-checkout-side {
	display: grid;
	gap: 12px;
}

body.mmw-checkout-redesign .mmw-checkout-side {
	position: sticky;
	top: 92px;
}

body.mmw-checkout-redesign .mmw-checkout-card {
	background: #fff;
	border: 1px solid rgba(107, 38, 217, 0.12);
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 14px 36px -18px rgba(107, 38, 217, 0.25);
}

body.mmw-checkout-redesign .mmw-checkout-card h2 {
	margin: 0 0 12px;
	font: 400 26px/1 "Anton", "DM Sans", sans-serif;
	color: #1B102D;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form label {
	font: 600 12px/1.3 "DM Sans", sans-serif;
	color: rgba(27, 16, 45, 0.75);
	text-transform: uppercase;
	letter-spacing: .05em;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form input[type="text"],
body.mmw-checkout-redesign .mmw-custom-checkout-form input[type="email"],
body.mmw-checkout-redesign .mmw-custom-checkout-form input[type="tel"],
body.mmw-checkout-redesign .mmw-custom-checkout-form input[type="password"],
body.mmw-checkout-redesign .mmw-custom-checkout-form textarea,
body.mmw-checkout-redesign .mmw-custom-checkout-form select,
body.mmw-checkout-redesign .mmw-custom-checkout-form .select2-selection {
	border: 1px solid rgba(107, 38, 217, 0.2) !important;
	border-radius: 10px !important;
	background: #fff !important;
	min-height: 44px;
	padding: 8px 12px !important;
	font: 500 14px/1.35 "DM Sans", sans-serif !important;
	color: #1B102D !important;
	box-shadow: none !important;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form textarea {
	min-height: 100px;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form .form-row {
	margin-bottom: 10px;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form .woocommerce-additional-fields {
	display: none;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form .optional {
	display: none !important;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form .create-account {
	display: none !important;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form .shop_table {
	border: 0 !important;
	margin: 0 !important;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form .shop_table th,
body.mmw-checkout-redesign .mmw-custom-checkout-form .shop_table td {
	padding: 10px 0;
	border-color: rgba(107, 38, 217, 0.14);
	color: #1B102D;
	font: 600 14px/1.4 "DM Sans", sans-serif;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form .order-total th,
body.mmw-checkout-redesign .mmw-custom-checkout-form .order-total td {
	font-size: 18px;
	font-weight: 800;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form #payment {
	background: #fff !important;
	border: 1px solid rgba(107, 38, 217, 0.12);
	border-radius: 12px;
	padding: 10px;
}

body.mmw-checkout-redesign .mmw-custom-checkout-form #place_order {
	width: 100%;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px !important;
	border-radius: 12px !important;
	border: 0 !important;
	background: linear-gradient(354.13deg, #FF29FF -53.02%, #6B0F1A 43.44%, #FF29FF 126.13%) !important;
	box-shadow: 0 16px 48px -12px rgba(107, 38, 217, 0.18);
	color: #fff !important;
	font: 700 18px/1 "DM Sans", sans-serif !important;
}

@media (max-width: 1024px) {
	body.mmw-checkout-redesign .mmw-checkout-layout {
		grid-template-columns: 1fr;
	}

	body.mmw-checkout-redesign .mmw-checkout-side {
		position: static;
	}
}

@media (max-width: 767px) {
	body.mmw-checkout-redesign .mmw-checkout-shell {
		width: min(1228px, calc(100% - 16px));
	}

	body.mmw-checkout-redesign .mmw-checkout-hero h1 {
		font-size: 30px;
	}

	body.mmw-checkout-redesign .mmw-checkout-card {
		padding: 12px;
		border-radius: 14px;
	}

	body.mmw-checkout-redesign .mmw-checkout-card h2 {
		font-size: 22px;
	}

	body.mmw-checkout-redesign .mmw-custom-checkout-form #place_order {
		min-height: 50px;
		font-size: 16px !important;
	}
}
