/* diy cart ??clear typography, ~65/35 layout */

body.woocommerce-cart .fi-cart-form .shop_table thead,
body.woocommerce-cart .fi-cart-form table.shop_table {
	display: none;
}

body.woocommerce-cart .content-page,
body.woocommerce-cart .page-wrapper > .container,
body.woocommerce-cart .container,
body.woocommerce-cart #content .container,
body.woocommerce-cart .page-content > .container {
	max-width: 1280px;
}

body.woocommerce-cart .page-heading,
body.woocommerce-cart .breadcrumb,
body.woocommerce-cart .woocommerce-breadcrumb,
body.woocommerce-cart .entry-title,
body.woocommerce-cart h1.page-title {
	display: none !important;
}

.fi-cart-page {
	font-family: "Outfit", system-ui, sans-serif;
	color: #1a1a1a;
	-webkit-font-smoothing: antialiased;
	margin: 8px 0 56px;
}

.fi-cart-page strong,
.fi-cart-page b,
.fi-cart-page th,
.fi-cart-page .amount {
	font-weight: 400 !important;
}

.fi-cart-head {
	margin: 0 0 22px;
	padding: 0 0 16px;
	border-bottom: 1px solid #e8e8e8;
}

.fi-cart-head__title {
	margin: 0 0 6px !important;
	padding: 0 !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #222 !important;
}

.fi-cart-head__sub {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	color: #2e9e4b;
}

.fi-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0 36px;
	align-items: start;
}

.fi-cart-layout__main {
	min-width: 0;
	align-self: start;
	padding-right: 36px;
	border-right: 1px solid #e4e4e4;
	box-sizing: border-box;
}

.fi-cart-layout__side {
	position: sticky;
	top: 96px;
	min-width: 0;
	align-self: start;
}

.fi-cart-form {
	margin: 0;
	position: relative;
}

/* Product list: height synced to sidebar, scroll when overflowing */
.fi-cart-scroll {
	max-height: calc(100vh - 210px);
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 6px 4px 0;
	margin: 0;
	border: 0;
	background: transparent;
	box-sizing: border-box;
	scrollbar-width: thin;
	scrollbar-color: #c8c8c8 transparent;
}

.fi-cart-scroll::-webkit-scrollbar {
	width: 6px;
}

.fi-cart-scroll::-webkit-scrollbar-track {
	background: transparent;
	margin: 4px 0;
}

.fi-cart-scroll::-webkit-scrollbar-thumb {
	background: #cfcfcf;
	border-radius: 999px;
}

.fi-cart-scroll::-webkit-scrollbar-thumb:hover {
	background: #b0b0b0;
}

.fi-cart-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	border: 0;
	background: transparent;
}

.fi-cart-item {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 20px 24px;
	padding: 0 0 28px;
	margin: 0 0 28px;
	border-bottom: 1px solid #e8e8e8;
	align-items: start;
}

.fi-cart-item:first-child {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

.fi-cart-item:last-child {
	margin-bottom: 0;
	padding-bottom: 8px;
	border-bottom: 0;
}

.fi-cart-item__media {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.fi-cart-item__thumb {
	width: 100%;
	line-height: 0;
	background: #fafafa;
}

.fi-cart-item__thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 2px;
}

.fi-cart-item__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #222 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	opacity: 0.9;
	text-decoration: none !important;
	box-shadow: none !important;
}

.fi-cart-item__remove:hover {
	opacity: 1;
	color: #000 !important;
}

.fi-cart-item__remove .remove,
.fi-cart-item__remove::before {
	display: none !important;
}

.fi-cart-item__body {
	min-width: 0;
}

.fi-cart-item__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
}

.fi-cart-item__title {
	flex: 1 1 auto;
	margin: 0;
	font-size: 17px !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	color: #111 !important;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	text-decoration: none !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fi-cart-item__title:hover {
	color: #111 !important;
	text-decoration: underline !important;
}

.fi-cart-item__edit {
	flex: 0 0 auto;
	margin: 0;
	padding: 8px 16px;
	border: 1px solid #c8c8c8;
	border-radius: 3px;
	background: #fff;
	color: #111;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
	cursor: pointer;
}

.fi-cart-item.is-editing .fi-cart-item__edit,
.fi-cart-item__edit.is-save {
	border-color: #f07a3a;
	background: #f07a3a;
	color: #fff;
}

.fi-cart-item__edit:hover {
	border-color: #888;
}

.fi-cart-item.is-editing .fi-cart-item__edit:hover {
	border-color: #e06a2a;
	background: #e06a2a;
}

.fi-cart-item__edit.is-saving {
	opacity: 0.65;
	pointer-events: none;
}

.fi-cart-item__meta {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.85;
	color: #333;
	font-weight: 400;
}

.fi-cart-item__line {
	margin: 0;
}

.fi-cart-item__unit {
	margin: 8px 0 0;
	font-size: 15px;
	color: #111;
}

.fi-cart-item__unit strong {
	font-size: 16px;
	font-weight: 400;
}

.fi-cart-item__edit-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin: 0 0 10px;
}

.fi-cart-item__edit-label {
	flex: 0 0 auto;
	min-width: 148px;
	color: #222;
	font-size: 15px;
	font-weight: 400;
}

.fi-cart-item__edit-input {
	flex: 1 1 160px;
	max-width: 260px;
	height: 36px;
	padding: 4px 10px;
	border: 1px solid #bcbcbc;
	border-radius: 3px;
	background: #fff;
	font-size: 15px;
	color: #111;
	box-sizing: border-box;
}

.fi-cart-item__edit-fee {
	flex: 0 0 auto;
	color: #444;
	font-size: 14px;
}

.fi-cart-item__foot {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin-top: 4px;
}

.fi-cart-item__qty-wrap {
	max-width: 168px;
	margin: 0;
}

.fi-cart-item__qty-wrap .quantity {
	display: inline-flex !important;
	align-items: stretch;
	width: 100%;
	max-width: 168px;
	margin: 0;
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	overflow: hidden;
	background: #f3f3f3;
}

.fi-cart-item__qty-wrap .quantity .qty {
	flex: 1 1 auto;
	width: 52px !important;
	min-width: 52px;
	height: 44px !important;
	margin: 0 !important;
	border: 0 !important;
	border-left: 1px solid #d2d2d2 !important;
	border-right: 1px solid #d2d2d2 !important;
	border-radius: 0 !important;
	background: #fff !important;
	text-align: center;
	font-size: 17px !important;
	font-weight: 400 !important;
	color: #111 !important;
	box-shadow: none !important;
	-moz-appearance: textfield;
}

.fi-cart-item__qty-wrap .quantity .qty::-webkit-outer-spin-button,
.fi-cart-item__qty-wrap .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.fi-cart-item__qty-wrap .quantity .minus,
.fi-cart-item__qty-wrap .quantity .plus,
.fi-cart-item__qty-wrap .quantity .et-quantity-minus,
.fi-cart-item__qty-wrap .quantity .et-quantity-plus {
	flex: 0 0 44px;
	width: 44px !important;
	height: 44px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #f3f3f3 !important;
	color: #222 !important;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	box-shadow: none !important;
}

.fi-cart-item__subtotal {
	font-size: 16px;
	color: #111;
	font-weight: 400;
}

.fi-cart-item__subtotal-label {
	margin-right: 4px;
}

.fi-cart-item__subtotal-value,
.fi-cart-item__subtotal-value .amount,
.fi-cart-item__subtotal-value bdi {
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #111 !important;
}

.fi-cart-actions {
	padding: 0;
	border: 0;
	margin: 0;
}

.fi-cart-actions button[name="update_cart"] {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---- Sidebar ---- */
.fi-cart-side,
.cart-collaterals .cart_totals.fi-cart-side,
body.woocommerce-cart .cart-collaterals .cart_totals {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 22px 20px 24px;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	background: #f5f5f5;
	box-sizing: border-box;
}

body.woocommerce-cart .cart-collaterals,
body.woocommerce-cart .fi-cart-layout__side {
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.fi-cart-side h2,
.fi-cart-side .shop_table {
	display: none !important;
}

.fi-cart-side__coupon {
	display: flex;
	gap: 0;
	margin: 0 0 18px;
}

.fi-cart-side__coupon .input-text {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid #d0d0d0;
	border-right: 0;
	border-radius: 3px 0 0 3px;
	background: #fff;
	font-size: 15px;
	box-shadow: none;
}

.fi-cart-side__apply {
	flex: 0 0 auto;
	height: 48px;
	margin: 0 !important;
	padding: 0 20px !important;
	border: 0 !important;
	border-radius: 0 3px 3px 0 !important;
	background: #2e9e4b !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	letter-spacing: 0.05em;
	line-height: 48px !important;
	cursor: pointer;
}

.fi-cart-side__apply:hover {
	background: #278a41 !important;
	color: #fff !important;
}

.fi-cart-side__rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0e0e0;
}

.fi-cart-side__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 16px;
	color: #222;
}

.fi-cart-side__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 400;
}

.fi-cart-side__tip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border: 1px solid #888;
	border-radius: 50%;
	font-size: 11px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	color: #555;
	cursor: help;
}

.fi-cart-side__value,
.fi-cart-side__value .amount,
.fi-cart-side__value bdi {
	font-weight: 400 !important;
	font-size: 16px !important;
	color: #111 !important;
}

.fi-cart-side__value--free {
	color: #2e9e4b !important;
	font-weight: 400 !important;
	letter-spacing: 0.04em;
}

.fi-cart-side__notes {
	margin: 0 0 18px;
}

.fi-cart-side__notes label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #222;
}

.fi-cart-side__notes textarea {
	display: block;
	width: 100%;
	min-height: 100px;
	padding: 12px 14px;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
	background: #fff;
	font-size: 15px;
	line-height: 1.45;
	resize: vertical;
	box-sizing: border-box;
}

.fi-cart-side__bulk {
	margin: 0 0 22px;
	padding: 0;
	border: 1px solid #e6e6e6;
	background: #fff;
	overflow: hidden;
}

.fi-cart-side__bulk-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 14px 12px;
	text-align: center;
	font-size: 14px;
	font-weight: 400 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #e53935 !important;
	background: #f3f3f3;
	border-bottom: 1px solid #ececec;
}

.fi-cart-side__bulk-title-text {
	color: #e53935 !important;
	font-weight: 400 !important;
}

.fi-cart-side__bulk-grid {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 4px 0 2px;
	background: #fff;
}

.fi-cart-side__bulk-head,
.fi-cart-side__bulk-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	min-height: 44px;
	padding: 12px 10px;
	border-bottom: 1px solid #ececec;
	box-sizing: border-box;
}

.fi-cart-side__bulk-row:last-child {
	border-bottom: 0;
}

.fi-cart-side__bulk-head > span,
.fi-cart-side__bulk-row > span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	font-weight: 400 !important;
	line-height: 1.35;
	color: #333;
}

.fi-cart-side__bulk-head > span {
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #555;
}

.fi-cart-side__code {
	display: inline !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #e53935 !important;
	font-weight: 400 !important;
	font-size: 14px !important;
	font-family: inherit !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	text-decoration: underline !important;
	line-height: inherit !important;
	cursor: pointer;
}

.fi-cart-side__code:hover,
.fi-cart-side__code:focus {
	color: #c62828 !important;
	background: transparent !important;
	text-decoration: underline !important;
}

.fi-cart-side__checkout {
	margin: 0 0 20px !important;
	padding: 0 !important;
}

/* Hide XStore duplicate Continue shopping button (teal link remains). */
.fi-cart-side__checkout .return-shop {
	display: none !important;
}

.fi-cart-side__checkout .checkout-button,
.fi-cart-side__checkout a.checkout-button {
	display: block !important;
	width: 100% !important;
	margin: 0 0 12px !important;
	padding: 16px 18px !important;
	border: 0 !important;
	border-radius: 3px !important;
	background: #f2a07a !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none !important;
	box-shadow: none !important;
}

.fi-cart-side__checkout .checkout-button:hover,
.fi-cart-side__checkout a.checkout-button:hover {
	background: #e89268 !important;
	color: #fff !important;
}

.fi-cart-side__continue {
	display: block;
	width: auto;
	margin: 4px auto 0;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	text-align: center;
	color: #22a7a0 !important;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.fi-cart-side__continue:hover {
	color: #1a8f89 !important;
	text-decoration: underline !important;
	background: transparent !important;
}

.fi-cart-side__trust {
	margin-top: 8px;
	padding-top: 4px;
}

.fi-cart-side__trust-img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

body.woocommerce-cart .cart-collaterals {
	width: 100% !important;
	float: none !important;
	margin: 0;
}

body.woocommerce-cart .cart-collaterals .cross-sells {
	display: none !important;
}

@media (max-width: 980px) {
	.fi-cart-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.fi-cart-layout__main {
		padding-right: 0;
		border-right: 0;
	}

	.fi-cart-scroll {
		max-height: min(58vh, 560px);
	}

	.fi-cart-layout__side {
		position: static;
		max-width: none;
		margin: 0;
		width: 100%;
	}

	.fi-cart-head__title {
		font-size: 24px !important;
	}
}

@media (max-width: 720px) {
	.fi-cart-item {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 14px 16px;
		padding: 22px 0;
	}

	.fi-cart-item__title {
		font-size: 15px !important;
	}

	.fi-cart-item__meta {
		font-size: 14px;
	}

	.fi-cart-item__edit {
		padding: 6px 12px;
		font-size: 12px;
	}

	.fi-cart-item__edit-label {
		min-width: 100%;
	}

	.fi-cart-item__edit-input {
		max-width: none;
	}
}

/* ---- Checkout: YOUR ORDER (diy-style) ---- */
body.woocommerce-checkout {
	font-family: "Outfit", system-ui, sans-serif;
}

body.woocommerce-checkout #order_review.woocommerce-checkout-review-order,
body.woocommerce-checkout .woocommerce-checkout-review-order,
body.woocommerce-checkout .woocommerce-checkout-review-order-table-wrapper,
body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .cart_totals,
body.woocommerce-checkout .etheme-checkout-page-order-review,
body.woocommerce-checkout .elementor-widget-woocommerce-checkout-page #order_review,
body.woocommerce-checkout .elementor-widget-woocommerce-checkout-page .order-review,
.elementor-widget-woocommerce-checkout-page .order-review {
	border: none !important;
	border-width: 0 !important;
	outline: none !important;
	box-shadow: none !important;
}

body.woocommerce-checkout #order_review.woocommerce-checkout-review-order,
body.woocommerce-checkout .woocommerce-checkout-review-order {
	position: sticky;
	top: 96px;
	align-self: start;
	margin: 0 !important;
	padding: 20px 18px 18px !important;
	border-radius: 10px;
	background: #f5f5f5;
	box-sizing: border-box;
	font-family: "Outfit", system-ui, sans-serif;
	color: #1a1a1a;
}

body.woocommerce-checkout .woocommerce-checkout-review-order > h3,
body.woocommerce-checkout .woocommerce-checkout-review-order .step-title,
body.woocommerce-checkout #order_review > h3 {
	margin: 0 0 16px !important;
	padding: 0 !important;
	border: 0 !important;
	font-family: "Outfit", system-ui, sans-serif !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em;
	line-height: 1.3 !important;
	text-transform: uppercase;
	color: #111 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table-wrapper {
	margin: 0;
	padding: 0;
	border: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table {
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: collapse !important;
	background: transparent !important;
	font-family: "Outfit", system-ui, sans-serif !important;
	font-size: 14px;
	color: #222;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
	display: none !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody {
	display: block;
	max-height: min(420px, calc(100vh - 300px));
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px 8px 8px 4px;
	margin: 0 0 14px;
	border: 0;
	background: transparent;
	scrollbar-width: thin;
	scrollbar-color: #bdbdbd transparent;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody::-webkit-scrollbar {
	width: 6px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody::-webkit-scrollbar-track {
	background: transparent;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody::-webkit-scrollbar-thumb {
	background: #bdbdbd;
	border-radius: 999px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot {
	display: table;
	width: 100%;
	table-layout: fixed;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 16px 4px 16px 2px;
	border: 0;
	border-bottom: 1px solid #e6e6e6;
	border-radius: 0;
	background: transparent;
	box-sizing: border-box;
	overflow: visible;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item:first-child {
	padding-top: 8px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item:last-child {
	border-bottom: 0;
	padding-bottom: 8px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item > td {
	display: block;
	width: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

/* diy row: thumb+qty | title/price + attributes */
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name {
	display: grid !important;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 4px 14px;
	align-items: start;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name > .fi-checkout-thumb,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name > a,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name > img {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: start;
}

body.woocommerce-checkout .fi-checkout-thumb {
	position: relative;
	display: block;
	width: 64px;
	margin-top: 4px;
	line-height: 0;
	overflow: visible;
}

body.woocommerce-checkout .fi-checkout-thumb a {
	display: block;
	line-height: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

body.woocommerce-checkout .fi-checkout-thumb img,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name > a img,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name > img {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
	background: #fff;
}

body.woocommerce-checkout .fi-checkout-qty {
	position: absolute;
	top: -4px;
	right: -4px;
	z-index: 2;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: #1a1a1a !important;
	border: 2px solid #f5f5f5;
	box-sizing: border-box;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0;
	color: #fff !important;
	line-height: 1 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item .product-name-info {
	grid-column: 2;
	min-width: 0;
	display: block;
	position: relative;
	padding-right: 72px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item .product-name-info > .product-name,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name > .product-name {
	display: block;
	margin: 0;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	color: #111 !important;
	text-transform: none;
	overflow: visible;
	-webkit-line-clamp: unset;
}

body.woocommerce-checkout .fi-checkout-title,
body.woocommerce-checkout .fi-checkout-title a {
	display: inline;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	color: #111 !important;
	text-decoration: none !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item .product-name-info > .product-name a,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name > .product-name a {
	color: inherit !important;
	text-decoration: none !important;
	font-weight: inherit !important;
}

/* Keep ALL customization attributes visible */
body.woocommerce-checkout .woocommerce-checkout-review-order-table .fi-cart-custom {
	display: block;
	margin: 8px 0 0;
	max-width: none;
	padding: 0;
	font-family: "Outfit", system-ui, sans-serif;
	font-size: 12px;
	line-height: 1.55;
	color: #6b6b6b;
	font-weight: 400;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .fi-cart-custom__line {
	display: block;
	margin: 0;
	padding: 1px 0;
	font-size: 12px;
	line-height: 1.55;
	color: #6b6b6b;
	font-weight: 400;
	word-break: break-word;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .fi-cart-custom__unit,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .fi-cart-custom strong {
	display: inline !important;
	font-weight: 400 !important;
	color: #6b6b6b !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-price-quantity {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 0;
	line-height: 1.2;
	text-align: right;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-price-quantity .quantity,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-price-quantity .minus,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-price-quantity .plus,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-price-quantity input.qty,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-price-quantity > .amount,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-price-quantity > .product-quantity {
	display: none !important;
}

body.woocommerce-checkout .fi-checkout-item-total,
body.woocommerce-checkout .fi-checkout-item-total .amount,
body.woocommerce-checkout .fi-checkout-item-total bdi {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #111 !important;
	line-height: 1.3 !important;
	white-space: nowrap;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-subtotal,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-remove {
	display: none !important;
}

/* Totals footer */
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
	padding: 10px 0 !important;
	border: 0 !important;
	border-top: 0 !important;
	background: transparent !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	vertical-align: middle;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
	text-align: left !important;
	color: #333 !important;
	padding-right: 12px !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
	text-align: right !important;
	color: #111 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-subtotal th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-subtotal td {
	padding-top: 14px !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-discount .amount,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-discount td {
	color: #d32f2f !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-discount a {
	margin-left: 6px;
	color: #666 !important;
	font-size: 12px;
	text-decoration: underline !important;
	font-weight: 400 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
	padding-top: 14px !important;
	border-top: 1px solid #e8e8e8 !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #111 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total .amount,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total bdi,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .amount,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot bdi {
	font-weight: 500 !important;
	font-family: inherit !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .fi-cart-custom,
body.woocommerce-checkout .fi-cart-custom {
	font-family: "Outfit", system-ui, sans-serif;
}

@media (max-width: 980px) {
	body.woocommerce-checkout #order_review.woocommerce-checkout-review-order,
	body.woocommerce-checkout .woocommerce-checkout-review-order {
		position: static;
	}

	body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody {
		max-height: min(48vh, 400px);
	}
}

/* ---- Cart buyer testimonials (diy) ---- */
.fi-cart-buyers {
	margin: 48px 0 24px;
	padding: 28px 0 8px;
	border-top: 1px solid #ececec;
	font-family: "Outfit", system-ui, sans-serif;
	color: #111;
}

.fi-cart-buyers__title {
	margin: 0 0 36px !important;
	padding: 0 !important;
	text-align: center;
	font-size: 26px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111 !important;
}

.fi-cart-buyers__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 56px;
	row-gap: 0;
}

.fi-cart-buyers__item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 26px 0;
	border-bottom: 1px solid #e8e8e8;
	box-sizing: border-box;
}

.fi-cart-buyers__avatar {
	flex: 0 0 92px;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	overflow: hidden;
	background: #f3f3f3;
}

.fi-cart-buyers__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fi-cart-buyers__body {
	min-width: 0;
	flex: 1 1 auto;
}

.fi-cart-buyers__headline {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	color: #111;
}

.fi-cart-buyers__text {
	margin: 0 0 14px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	color: #333;
}

.fi-cart-buyers__author {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #222;
}

@media (max-width: 900px) {
	.fi-cart-buyers__title {
		font-size: 20px !important;
		margin-bottom: 22px !important;
	}

	.fi-cart-buyers__grid {
		grid-template-columns: 1fr;
		column-gap: 0;
	}

	.fi-cart-buyers__item {
		padding: 20px 0;
	}

	.fi-cart-buyers__avatar {
		flex-basis: 76px;
		width: 76px;
		height: 76px;
	}
}
