/**
 * NOVVIA — Cart page
 */

.nv-cart-page__section {
	padding-block: clamp(1.5rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 4rem);
}

.nv-page-hero--cart {
	margin-bottom: 0;
}

.nv-cart-page .nv-wc-page-content > .woocommerce > h1 {
	display: none;
}

/* ─── Empty cart ─── */

.nv-cart-empty {
	display: flex;
	justify-content: center;
	padding: clamp(1rem, 4vw, 2rem) 0;
}

.nv-cart-empty__card {
	width: min(100%, 520px);
	padding: clamp(2rem, 5vw, 3rem);
	border: 1px solid var(--nv-gray-100);
	border-radius: var(--nv-radius-lg);
	background: linear-gradient(160deg, var(--nv-blue-soft, #edf1f6) 0%, var(--nv-white, #fff) 55%);
	box-shadow: var(--nv-shadow-sm, 0 4px 20px rgba(26, 26, 24, 0.04));
	text-align: center;
}

.nv-cart-empty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background: var(--nv-white, #fff);
	color: var(--nv-blue-dark, #5f7591);
	box-shadow: 0 8px 24px rgba(95, 117, 145, 0.12);
}

.nv-cart-empty__title {
	margin: 0 0 0.65rem;
	font-family: var(--nv-font-serif);
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	font-weight: 600;
	color: var(--nv-gray-900);
}

.nv-cart-empty__text {
	margin: 0 auto 1.5rem;
	max-width: 34ch;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--nv-gray-700);
}

.nv-cart-empty__cta {
	min-width: 200px;
}

body.nv-is-cart .wc-empty-cart-message,
body.nv-is-cart .return-to-shop {
	display: none !important;
}

/* ─── Layout with items ─── */

body.nv-is-cart .nv-entry-content > .woocommerce {
	display: block;
}

@media (min-width: 900px) {
	body.nv-is-cart .nv-entry-content > .woocommerce {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 380px;
		gap: 2rem;
		align-items: start;
	}

	body.nv-is-cart .woocommerce-notices-wrapper {
		grid-column: 1 / -1;
		grid-row: 1;
		margin-bottom: 0.25rem;
	}

	body.nv-is-cart .woocommerce-cart-form {
		grid-column: 1;
		grid-row: 2;
		margin-bottom: 0;
		min-width: 0;
	}

	body.nv-is-cart .cart-collaterals {
		display: contents;
	}

	body.nv-is-cart .cart_totals {
		grid-column: 2;
		grid-row: 2;
		position: sticky;
		top: calc(var(--nv-trust-bar-height, 0px) + var(--nv-header-height, 72px) + 1rem);
		min-width: 380px;
		width: 100%;
		max-width: 380px;
		box-sizing: border-box;
	}

	body.nv-is-cart .cross-sells {
		grid-column: 1 / -1;
		grid-row: 3;
	}
}

/* ─── Product table ─── */

.nv-cart-page .woocommerce-cart-form {
	margin-bottom: 2rem;
}

.nv-cart-page .nv-cart-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--nv-gray-100);
	border-radius: var(--nv-radius-md);
	overflow: hidden;
	background: var(--nv-white);
}

.nv-cart-page .nv-cart-table thead {
	background: var(--nv-gray-50);
}

.nv-cart-page .nv-cart-table th,
.nv-cart-page .nv-cart-table td {
	padding: 1rem 1.1rem;
	border-bottom: 1px solid var(--nv-gray-100);
	font-family: var(--nv-font-sans);
	font-size: 0.9rem;
	vertical-align: middle;
}

.nv-cart-page .nv-cart-table th {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nv-gray-500);
	text-align: left;
}

.nv-cart-page .nv-cart-table .product-price,
.nv-cart-page .nv-cart-table .product-quantity,
.nv-cart-page .nv-cart-table .product-subtotal {
	text-align: center;
}

.nv-cart-page .nv-cart-table .product-subtotal {
	text-align: right;
}

.nv-cart-page .nv-cart-table th.product-price,
.nv-cart-page .nv-cart-table th.product-quantity,
.nv-cart-page .nv-cart-table th.product-subtotal {
	text-align: center;
	padding-inline: 0.85rem;
}

.nv-cart-page .nv-cart-table th.product-subtotal {
	text-align: right;
	letter-spacing: 0.03em;
}

.nv-cart-page .nv-cart-table .product-name {
	width: auto;
}

.nv-cart-page .nv-cart-table .product-price {
	width: 105px;
}

.nv-cart-page .nv-cart-table .product-quantity {
	width: 115px;
}

.nv-cart-page .nv-cart-table .product-subtotal {
	width: 158px;
}

.nv-cart-page .nv-cart-line {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 0;
}

.nv-cart-page .nv-cart-line__remove {
	flex: 0 0 auto;
}

.nv-cart-page .nv-cart-line__media {
	flex: 0 0 80px;
}

.nv-cart-page .nv-cart-line__media img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--nv-radius-sm);
	background: var(--nv-gray-50);
}

.nv-cart-page .nv-cart-line__details {
	flex: 1 1 auto;
	min-width: 0;
}

.nv-cart-page .nv-cart-line__title,
.nv-cart-page .nv-cart-table .product-name a {
	color: var(--nv-gray-900);
	font-weight: 600;
	text-decoration: none;
	line-height: 1.4;
}

.nv-cart-page .nv-cart-line__title:hover,
.nv-cart-page .nv-cart-table .product-name a:hover {
	color: var(--nv-blue-dark);
}

.nv-cart-page .nv-cart-table tbody tr:last-child td {
	border-bottom: 0;
}

.nv-cart-page .nv-cart-table dl.variation {
	margin: 0.35rem 0 0;
	font-size: 0.82rem;
	color: var(--nv-gray-600);
}

.nv-cart-page .nv-cart-table .product-price,
.nv-cart-page .nv-cart-table .product-subtotal {
	font-weight: 600;
	color: var(--nv-gray-900);
	white-space: nowrap;
}

.nv-cart-page.woocommerce a.remove,
.nv-cart-page a.remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50%;
	background: var(--nv-gray-50) !important;
	color: var(--nv-gray-700) !important;
	font-size: 1.2rem !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	transition: background var(--nv-transition), color var(--nv-transition);
}

.nv-cart-page.woocommerce a.remove:hover,
.nv-cart-page a.remove:hover {
	background: var(--nv-gray-100) !important;
	color: var(--nv-black) !important;
}

.nv-cart-page .quantity .qty {
	width: 4.25rem;
	min-height: 42px;
	padding: 0.4rem;
	border: 1px solid var(--nv-gray-200);
	border-radius: var(--nv-radius-sm);
	font-family: var(--nv-font-sans);
	text-align: center;
}

/* ─── Actions row ─── */

.nv-cart-page .nv-cart-actions-row td {
	background: transparent;
	border-top: 1px solid var(--nv-gray-100);
	padding-top: 1.25rem;
}

.nv-cart-page .nv-cart-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding-block: 0;
}

.nv-cart-page .nv-cart-actions .nv-cart-extra {
	width: 100%;
	max-width: none;
	border: 1px solid var(--nv-gray-100);
	border-radius: 14px;
	background: linear-gradient(165deg, #fbf8f4 0%, var(--nv-white) 58%);
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(18, 13, 13, 0.035);
}

/* Kill WooCommerce float/48%-width coupon layout */
.nv-cart-page .nv-cart-actions .coupon,
.nv-cart-page .nv-cart-coupon-form {
	float: none !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
	gap: 0.65rem;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	border: 0;
	background: transparent;
	overflow: visible;
}

.nv-cart-page .nv-cart-actions .coupon::before,
.nv-cart-page .nv-cart-actions .coupon::after {
	content: none !important;
	display: none !important;
}

.nv-cart-page .nv-cart-actions .coupon input[type="text"],
.nv-cart-page .nv-cart-actions .coupon .input-text {
	float: none !important;
	grid-column: 1;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	min-height: 48px;
	margin: 0 !important;
	padding: 0.75rem 1rem !important;
	border: 1px solid var(--nv-gray-200) !important;
	border-radius: 10px !important;
	box-sizing: border-box;
	font-family: var(--nv-font-sans);
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
	color: var(--nv-gray-900);
	background: var(--nv-white) !important;
	box-shadow: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nv-cart-page .nv-cart-actions .coupon input[type="text"]::placeholder {
	color: var(--nv-gray-400);
	letter-spacing: 0;
}

.nv-cart-page .nv-cart-actions .coupon input[type="text"]:focus {
	outline: none;
	border-color: var(--nv-gray-500) !important;
	box-shadow: 0 0 0 3px rgba(18, 13, 13, 0.06);
}

.nv-cart-page .nv-cart-actions .coupon input[type="text"].has-error,
.nv-cart-page .nv-cart-actions .coupon .input-text.has-error {
	border-color: #c62828 !important;
}

.nv-cart-page .nv-cart-actions .coupon .coupon-error-notice {
	float: none !important;
	clear: both !important;
	grid-column: 1 / -1;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0.7rem 0.9rem;
	border: 1px solid #f0c9c9;
	border-radius: 10px;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #b42318;
	background: #fff7f7;
}

.nv-cart-page .nv-cart-coupon-btn {
	float: none !important;
	grid-column: 2;
	align-self: stretch;
	min-height: 48px;
	min-width: 7.5rem;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 1.25rem !important;
	border: 1px solid var(--nv-gray-200) !important;
	border-radius: 10px !important;
	background: var(--nv-gray-50) !important;
	color: var(--nv-gray-600) !important;
	font-family: var(--nv-font-sans) !important;
	font-size: 0.875rem !important;
	font-weight: 650 !important;
	letter-spacing: 0.01em;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nv-cart-page .nv-cart-actions .coupon:has(.input-text:not(:placeholder-shown)) .nv-cart-coupon-btn,
.nv-cart-page .nv-cart-coupon-btn:hover,
.nv-cart-page .nv-cart-coupon-btn:focus-visible {
	background: var(--nv-gray-900) !important;
	border-color: var(--nv-gray-900) !important;
	color: var(--nv-white) !important;
}

.nv-cart-page .nv-cart-update {
	display: none !important;
}

/* ─── Totals sidebar ─── */

.nv-cart-page .nv-cart-totals,
.nv-cart-page .cart_totals {
	padding: 1.5rem;
	border: 1px solid var(--nv-gray-100);
	border-radius: var(--nv-radius-md);
	background: var(--nv-gray-50);
	box-shadow: var(--nv-shadow-sm, 0 4px 20px rgba(26, 26, 24, 0.04));
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-break: break-word;
}

.nv-cart-page .cart_totals h2 {
	margin: 0 0 1rem;
	font-family: var(--nv-font-sans);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--nv-gray-900);
	line-height: 1.3;
}

/* Summary rows (replaces broken responsive table layout) */

.nv-cart-summary__rows {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.nv-cart-summary__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 0.75rem 1rem;
	font-size: 0.92rem;
	line-height: 1.45;
}

.nv-cart-summary__label {
	color: var(--nv-gray-700);
	min-width: 0;
}

.nv-cart-summary__value {
	text-align: right;
	color: var(--nv-gray-900);
	font-weight: 500;
	white-space: nowrap;
}

.nv-cart-summary__row.shipping {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
}

.nv-cart-summary__row.shipping .nv-cart-summary__value {
	white-space: normal;
	text-align: right;
}

.nv-cart-shipping__label {
	display: block;
	text-align: right;
}

.nv-cart-shipping__price {
	white-space: nowrap;
}

.nv-cart-summary__row.cart-discount .nv-cart-summary__value,
.nv-cart-summary__row.fee .nv-cart-summary__value {
	color: #1f7a3f;
}

.nv-cart-summary__row.order-total {
	margin-top: 0.35rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--nv-gray-200);
	font-size: 1.02rem;
}

.nv-cart-summary__row.order-total .nv-cart-summary__label,
.nv-cart-summary__row.order-total .nv-cart-summary__value {
	font-weight: 700;
	color: var(--nv-gray-900);
}

.nv-cart-summary__row.order-total .nv-cart-summary__value {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.2rem;
}

.nv-cart-summary__row.order-total .nv-cart-summary__value .includes_tax,
.nv-cart-summary__row.order-total .nv-cart-summary__value .tax_label,
.nv-cart-summary__row.order-total .nv-cart-summary__value small {
	display: block;
	font-size: 0.78rem;
	font-weight: 400;
	color: var(--nv-gray-500);
}

.nv-cart-page .nv-cart-extra__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem 1.2rem;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--nv-gray-900);
	background: transparent;
	transition: background 0.15s ease;
}

.nv-cart-page .nv-cart-extra__toggle:hover {
	background: rgba(253, 243, 234, 0.7);
}

.nv-cart-page .nv-cart-extra__lead {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
}

.nv-cart-page .nv-cart-extra__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	background: var(--nv-white, #fff);
	color: var(--nv-copper, #b8956b);
	box-shadow: inset 0 0 0 1px rgba(184, 149, 107, 0.18);
}

.nv-cart-page .nv-cart-extra__icon svg {
	display: block;
}

.nv-cart-page .nv-cart-extra__label {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	min-width: 0;
}

.nv-cart-page .nv-cart-extra__title {
	font-family: var(--nv-font-sans);
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.25;
	color: var(--nv-gray-900);
}

.nv-cart-page .nv-cart-extra__hint {
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.35;
	color: var(--nv-gray-500);
}

.nv-cart-page .nv-cart-extra[open] > .nv-cart-extra__toggle {
	border-bottom: 1px solid var(--nv-gray-100);
	background: rgba(253, 243, 234, 0.55);
}

.nv-cart-page .nv-cart-extra__toggle::-webkit-details-marker {
	display: none;
}

.nv-cart-page .nv-cart-extra__toggle::after {
	content: "";
	flex: 0 0 auto;
	width: 0.5rem;
	height: 0.5rem;
	margin-top: -0.15rem;
	border-right: 1.75px solid var(--nv-gray-500);
	border-bottom: 1.75px solid var(--nv-gray-500);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	opacity: 0.85;
}

.nv-cart-page .nv-cart-extra[open] > .nv-cart-extra__toggle::after {
	margin-top: 0.15rem;
	transform: rotate(-135deg);
}

.nv-cart-page .nv-cart-extra__panel {
	display: block;
	width: 100%;
	padding: 1.05rem 1.2rem 1.25rem;
	background: var(--nv-white, #fff);
	box-sizing: border-box;
}

.nv-cart-page .nv-cart-extra__panel::after {
	content: "";
	display: table;
	clear: both;
}

.nv-cart-summary__note {
	margin-top: 0.35rem;
	font-size: 0.78rem;
	line-height: 1.45;
	color: var(--nv-gray-500);
}

/* Hide express checkout clutter on cart — checkout only */
.nv-cart-page .wc-proceed-to-checkout > :not(a.checkout-button) {
	display: none !important;
}

.nv-cart-page .cart_totals #mollie-PayPal-button,
.nv-cart-page .cart_totals #mollie-applepayDirect-button,
.nv-cart-page .cart_totals .mol-PayPal,
.nv-cart-page .cart_totals [id^="ppc-button"] {
	display: none !important;
}

.nv-cart-page .cart_totals table.shop_table {
	display: none !important;
}

.nv-cart-page .nv-cart-summary__checkout {
	margin-top: 1.25rem;
	padding-top: 0.25rem;
}

.nv-cart-page .nv-cart-summary__payment-icons {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--nv-gray-100, #ebebeb);
}

.nv-cart-page .nv-cart-summary__payment-label {
	margin: 0 0 0.55rem;
	font-family: var(--nv-font-sans);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: var(--nv-gray-500, #8a8a8a);
}

.nv-cart-page .nv-cart-summary__payment-icons .nv-payment-icons,
.nv-cart-page .nv-cart-summary__payment-icons .nv-checkout__payment-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.7rem 0.95rem;
	margin: 0;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--nv-gray-100, #e8e8e8);
	border-radius: 10px;
	background: var(--nv-white, #fff);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nv-cart-page .nv-cart-summary__payment-icons .nv-payment-icons__item,
.nv-cart-page .nv-cart-summary__payment-icons .nv-checkout__payment-icons__item {
	display: inline-flex !important;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	height: 28px !important;
	min-height: 0 !important;
	min-width: 0;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	line-height: 0;
}

.nv-cart-page .nv-cart-summary__payment-icons img,
.nv-cart-page .nv-cart-summary__payment-icons .nv-payment-icon,
.nv-cart-page .nv-cart-summary__payment-icons .mollie-gateway-icon {
	display: block;
	width: auto !important;
	height: 22px !important;
	max-height: 22px !important;
	max-width: 76px !important;
	object-fit: contain;
}

.nv-cart-page .wc-proceed-to-checkout .checkout-button {
	display: inline-flex !important;
	width: 100%;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	margin-top: 0 !important;
	padding: 0.95rem 1.5rem !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--nv-green) !important;
	font-family: var(--nv-font-sans) !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--nv-white, #fff) !important;
	box-shadow: 0 8px 24px rgba(86, 122, 101, 0.22);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nv-cart-page .wc-proceed-to-checkout .checkout-button:hover {
	background: var(--nv-green-dark) !important;
	box-shadow: 0 10px 28px rgba(86, 122, 101, 0.28);
	color: var(--nv-white, #fff) !important;
	transform: translateY(-1px);
}

/* ─── Cross-sells ─── */

.nv-cart-page .cross-sells {
	margin-top: 0.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--nv-gray-100);
}

.nv-cart-page .cross-sells > h2 {
	margin: 0 0 1.25rem;
	font-family: var(--nv-font-serif);
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 600;
	color: var(--nv-gray-900);
}

/* ─── Notices ─── */

body.nv-is-cart .woocommerce-notices-wrapper {
	margin-bottom: 1.25rem;
}

.nv-cart-page .woocommerce-message,
.nv-cart-page .woocommerce-info,
.nv-cart-page .woocommerce-error {
	margin: 0 0 0.75rem;
	padding: 0.9rem 1rem;
	border-radius: var(--nv-radius-sm);
	border-left-width: 4px;
	border-left-style: solid;
}

.nv-cart-page .woocommerce-message {
	border-left-color: #16a34a;
	background: #f0fdf4;
}

/* ─── Mobile product cards ─── */

@media (max-width: 768px) {
	.nv-cart-page .nv-cart-table {
		display: block;
		border: 0;
		background: transparent;
	}

	.nv-cart-page .nv-cart-table thead {
		display: none;
	}

	.nv-cart-page .nv-cart-table tbody,
	.nv-cart-page .nv-cart-table tr.woocommerce-cart-form__cart-item {
		display: block;
	}

	.nv-cart-page .nv-cart-table tr.woocommerce-cart-form__cart-item {
		margin-bottom: 1rem;
		padding: 1rem;
		border: 1px solid var(--nv-gray-100);
		border-radius: var(--nv-radius-md);
		background: var(--nv-white);
	}

	.nv-cart-page .nv-cart-table tr.woocommerce-cart-form__cart-item td {
		display: block;
		width: 100% !important;
		border: 0;
		padding: 0.45rem 0;
		text-align: left !important;
	}

	.nv-cart-page .nv-cart-table tr.woocommerce-cart-form__cart-item td::before {
		content: attr(data-title) ": ";
		font-weight: 600;
		color: var(--nv-gray-500);
	}

	.nv-cart-page .nv-cart-table tr.woocommerce-cart-form__cart-item td.product-name::before {
		display: none;
	}

	.nv-cart-page .nv-cart-line {
		align-items: flex-start;
	}

	.nv-cart-page .nv-cart-actions-row {
		display: block;
		margin-top: 0.5rem;
	}

	.nv-cart-page .nv-cart-actions-row td {
		display: block;
		padding: 1rem;
		border: 1px solid var(--nv-gray-100);
		border-radius: var(--nv-radius-md);
		background: var(--nv-white);
	}

	.nv-cart-page .nv-cart-actions .coupon,
	.nv-cart-page .nv-cart-coupon-form {
		grid-template-columns: 1fr;
		gap: 0.6rem;
	}

	.nv-cart-page .nv-cart-actions .coupon input[type="text"],
	.nv-cart-page .nv-cart-actions .coupon .input-text,
	.nv-cart-page .nv-cart-coupon-btn {
		grid-column: 1;
		width: 100% !important;
		min-width: 0 !important;
	}
}

@media (max-width: 899px) {
	body.nv-is-cart .nv-entry-content > .woocommerce {
		display: block;
	}

	.nv-cart-page .cart_totals {
		margin-top: 1.5rem;
	}
}
