/**
 * WooCommerce cart page (test3 / Shoptimizer cart.css + quantity).
 *
 * @package Hq_Accessories
 */

body.woocommerce-cart .entry-content > .woocommerce::after {
	content: "";
	display: table;
	clear: both;
}

body.woocommerce-cart .site-main {
	padding-top: 2rem;
}

.woocommerce-cart .content-area {
	width: 100%;
	padding-bottom: 2rem;
}

/* -- Grid (override woocommerce-layout.css width:100% on collaterals) -- */
body.woocommerce-cart .woocommerce .woocommerce-cart-form,
body.woocommerce-cart.woocommerce-page .woocommerce .woocommerce-cart-form {
	float: left;
	width: 62%;
	margin-bottom: 0;
}

body.woocommerce-cart .woocommerce .cart-collaterals,
body.woocommerce-cart.woocommerce-page .woocommerce .cart-collaterals {
	float: right;
	width: 33%;
}

/* WooCommerce layout sets .cart_totals to 48% inside collaterals — use full column width */
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals,
body.woocommerce-cart.woocommerce-page .woocommerce .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

body.woocommerce-cart .woocommerce .cart-collaterals .cross-sells,
body.woocommerce-cart.woocommerce-page .woocommerce .cart-collaterals .cross-sells {
	width: 100%;
	float: none;
	clear: both;
}

body.woocommerce-cart .shoptimizer-cart-wrapper {
	padding-top: 50px;
}

body.woocommerce-cart .shoptimizer-cart-wrapper::after {
	content: "";
	display: table;
	clear: both;
}

@media (max-width: 992px) {
	body.woocommerce-cart .woocommerce .woocommerce-cart-form,
	body.woocommerce-cart .woocommerce .cart-collaterals,
	body.woocommerce-cart.woocommerce-page .woocommerce .woocommerce-cart-form,
	body.woocommerce-cart.woocommerce-page .woocommerce .cart-collaterals {
		float: none;
		width: 100%;
	}
}
/* -- Cart table contents (override WooCommerce default table borders) -- */
body.woocommerce-cart table.shop_table.cart,
body.woocommerce-cart table.cart {
	width: 100%;
	margin-bottom: 3rem;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
}

body.woocommerce-cart table.cart .cgkit-fsn-bar-cart,
body.woocommerce-cart table.cart .cgkit-fsn-bar {
	width: 100%;
	box-sizing: border-box;
}

body.woocommerce-cart table.cart td,
body.woocommerce-cart table.cart th {
	border-top: 0;
}
@media (max-width: 992px) {
	table.cart {
    	margin-bottom: 1.5rem;
	}
}
table.cart thead {
	display: none;
}
table.cart td,
table.cart th {
	padding: 1em 0;
}
table.cart td {
	border-bottom: 1px solid #f2f2f2;
	font-size: clamp(0.8125rem, 0.749rem + 0.2033vw, 0.875rem); /* 13-14 */
}
table.cart .product-price {
	display: none;
}
table.cart tr td.product-thumbnail {
	width: 75px;
	padding-left: 10px;
	padding-right: 10px;
}
table.cart .product-thumbnail img {
	max-width: 50px;
	height: auto;
	border-radius: 4px;
}
table.cart tr td.product-thumbnail a {
	display: inherit;
}
@media (max-width: 992px) {
	table.cart tr td.product-thumbnail {
		width: 40px;
	}
	table.cart .product-thumbnail img {
		max-width: 40px;
	}
}
table.cart tr td.product-name {
	width: 50%;
	padding-right: 1rem;
}

table.cart tbody tr td.product-subtotal {
	text-align: right;
	padding-left: 10px;
}
table.cart  td.product-name a {
	color: #111;
}
table.cart dl.variation {
	margin: 0;
}
/* -- Remove from cart -- */
a.remove {
	font-size: 0;
	display: flex;
	justify-content: center;
    align-items: center;
	text-indent: -9999px;
}
a.remove:before {
	width: 14px;
	height: 14px;
	content: "";
	background-color: #444;
	display: inline-block;
}
@media (min-width: 768px) {
	table.cart tr td.product-remove {
		width: 20px;
		padding-right: 0;
	}
}
/* -- Cart Quantity -- */
table.cart td.product-quantity .quantity {
	position: relative;
	user-select: none;
	border: 1px solid #e1e0e0;
	border-radius: 7px;
	width: 82px;
	height: 31px;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}
table.cart td.product-quantity .qty {
	height: 25px;
	padding: 0;
}
table.cart .quantity:has(input[type='hidden']) {
    display: none;
}
/* -- Coupon and update (form controls — WC main.css not loaded on cart) -- */
table.cart td.actions {
	padding-top: 1.5em;
	padding-bottom: 0;
	border: 0;
}

table.cart td.actions .coupon {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.5rem;
	overflow: visible;
}

table.cart td.actions .coupon label {
	display: none;
}

table.cart td.actions input.input-text,
table.cart td.actions #coupon_code {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	max-width: 100%;
	height: 40px;
	margin: 0;
	padding: 0 12px;
	border: 1px solid #d2d6dc;
	border-radius: 0.3rem;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	color: #111;
	font-size: 16px;
	line-height: normal;
	outline: 0;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color 0.2s;
}

table.cart td.actions input.input-text:focus,
table.cart td.actions #coupon_code:focus {
	border-color: #999;
	outline: none;
}

body.woocommerce-cart table.cart td.actions .coupon .button,
body.woocommerce-cart table.cart td.actions button[name="apply_coupon"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	height: 40px;
	margin: 0;
	padding: 0 22px;
	border: none;
	border-radius: 6px;
	background: var(--hq-color-primary, #e0cee5) !important;
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-shadow: none;
	box-shadow: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background 0.2s, color 0.2s;
}

body.woocommerce-cart table.cart td.actions .coupon .button:hover,
body.woocommerce-cart table.cart td.actions button[name="apply_coupon"]:hover,
body.woocommerce-cart table.cart td.actions .coupon .button:focus-visible,
body.woocommerce-cart table.cart td.actions button[name="apply_coupon"]:focus-visible {
	background: var(--hq-color-primary-hover, #d9b2e4) !important;
	color: #fff !important;
}

table.cart td.actions button:disabled {
	background-color: #ccc;
	color: #111;
}

@media (min-width: 993px) {
	table.cart td.actions input.input-text,
	table.cart td.actions #coupon_code {
		flex: 0 0 200px;
		max-width: 200px;
	}

	table.cart td.actions {
		text-align: right;
	}

	table.cart td.actions .coupon {
		display: inline-flex;
		float: left;
		text-align: left;
	}
}
@media (max-width: 992px) {
	table.cart td.actions button[name='update_cart'] {
		width: 100%;
		margin-top: 10px;
		margin-bottom: 15px;
	}
}
/* -- Ajax Cart - hide update button (override WC inline-block) -- */
body.woocommerce-cart.shoptimizer-ajax-cart button[name='update_cart'] {
	display: none !important;
}
/* -- Cart Summary widget -- */
.cart-summary {
	display: none;
}
.cart-summary .widget {
	overflow: hidden;
	margin-bottom: 2rem;
}
.cart-summary .widget .widget-title {
	margin-bottom: 1em;
	font-size: 24px;
	text-transform: none;
    letter-spacing: 0;
}
.cart-summary .widget p {
	margin-bottom: 0px;
	font-size: 15px;
	line-height: 1.55;
}
.cart-summary .widget ul {
	overflow: hidden;
	padding: 30px 25px 5px 25px;
	border: 1px solid #eee;
	box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
}
.cart-summary .widget li {
	position: relative;
	margin-bottom: 20px;
}
.cart-summary .widget li strong {
	display: block;
	margin-top: 3px;
}
.cart-summary .widget li strong:before {
	display: block;
	font-size: 12px;
	letter-spacing: 3px;
	content: "\2605\2605\2605\2605\2605";
}
@media (min-width: 768px) {
	.cart-summary {
		display: block;
	}
	.cart-summary .widget ul {
		padding: 30px 10px 10px 10px;
	}
	.cart-summary .widget li {
		display: inline-block;
		float: left;
		width: 33.33%;
		padding-right: 2%;
		padding-left: 18px;
	}
	.cart-summary .widget li strong {
		margin-top: 10px;
	}
	.cart-summary .widget li:after {
		position: absolute;
		top: 0;
		right: 0;
		width: 1px;
		height: 100%;
		border-radius: 50%;
		background-color: #eee;
		content: "";
	}
	.cart-summary .widget li:last-child:after {
		display: none;
	}
}
/* -- Cart Totals -- */
.cart_totals h2 {
    display: none;
}
body.woocommerce-cart .cart_totals .shop_table,
body.woocommerce-cart .cart_totals table.shop_table {
	width: 100%;
	border: 1px solid #e2e2e2;
	border-bottom: none;
	border-radius: 0;
	table-layout: fixed;
	background-color: #f9f9f9;
	font-size: clamp(0.875rem, 0.8115rem + 0.2033vw, 0.9375rem); /* 14-15 */
}

.cart_totals .shop_table tr.shipping td,
.cart_totals .shop_table tr.shipping th {
	display: block;
	width: 200%;
}
.cart_totals .shop_table tr.shipping td,
.cart_totals .shop_table tr.shipping th {
	border-bottom: 1px solid #e2e2e2;
	text-align: left;
}
.cart_totals .shop_table tr.cart-subtotal td,
.cart_totals .shop_table tr.cart-subtotal th {
	border-bottom: 1px solid #e2e2e2;
}
.cart_totals .shop_table td,
.cart_totals .shop_table th {
	padding: 1em 22px;
	color: #111;
}
.cart_totals table.shop_table_responsive tr td {
	text-align: right;
}

.cart_totals table.shop_table_responsive tr.shipping td,
.cart_totals table.shop_table_responsive tr.shipping th {
	text-align: left;
}

.cart_totals .shop_table tr.shipping th {
	padding-bottom: 0;
	border-bottom: none;
}

.cart_totals .shop_table tr.shipping td ul,
.cart_totals .shop_table tr.shipping td p,
.cart_totals .shop_table tr.shipping td .woocommerce-shipping-destination,
.cart_totals .shop_table tr.shipping td .woocommerce-shipping-methods {
	text-align: left;
}
.cart_totals .shop_table tr.order-total td,
.cart_totals .shop_table tr.order-total th {
	border-bottom: 1px solid #e2e2e2;
	font-size: clamp(0.875rem, 0.6209rem + 0.813vw, 1.125rem); /* 14-18 */
	font-weight: 600;
}
.cart-collaterals .cart_totals small.includes_tax {
	font-weight: 400;
	display: block;
}
@media (max-width: 767px) {
	.cart_totals .shop_table td,
	.cart_totals .shop_table th {
		padding-left: 15px;
		padding-right: 15px;
	}
}
/* -- Shipping Methods -- */
.cart-collaterals p.woocommerce-shipping-destination {
	margin-bottom: 0.5em;
}
ul#shipping_method {
	clear: both;
	margin-bottom: 1em;
    margin-left: 0;
    list-style: none;
}
ul#shipping_method li {
	margin-bottom: 0.25rem;
}
#shipping_method > li > label:before {
	display: inline-block;
	width: 7px;
}
#shipping_method > li > input[type="radio"]:first-child {
	clip: rect(1px 1px 1px 1px);
	position: absolute !important;
}
#shipping_method > li > input[type="radio"]:first-child:checked+label:before {
	background-color: var(--hq-color-primary, #e0cee5);
}
ul#shipping_method li input:focus-visible+label:before {
	outline: 0.25rem solid #2491ff;
  	outline-offset: 0;
}
ul#shipping_method li:only-child label:before {
	background-color: #111;
}
ul#shipping_method li:only-child,
#shipping_method > li > input[type=radio]:checked + label {
    font-weight: 600;
}
ul#shipping_method li:only-child span,
#shipping_method > li > input[type=radio]:checked + label span {
	font-weight: normal;
}
ul#shipping_method li span.amount {
	float: right;
}
ul#shipping_method li label:before {
	display: inline-block;
	position: relative;
	top: 1.5px;
	width: 7px;
	height: 7px;
	margin-right: 0.5407911001em;
	border-radius: 50%;
	border: 3px solid #fff;
	content: "";
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 1);
	box-sizing: content-box;
}
/* -- Address Calculator -- */
.woocommerce-shipping-calculator a.shipping-calculator-button {
	color: #111;
	font-size: 14px;
	text-decoration: underline;
    text-underline-offset: 0.15em;
}
.woocommerce-shipping-calculator p {
	margin-bottom: 0.5rem;
}
.woocommerce-shipping-calculator .shipping-calculator-form {
	padding-top: 0.8em;
}
.select2-container {
	font-size: 16px;
}
.select2-container--default .select2-selection--single {
	border-color: #d2d6dc;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
	height: 40px;
}
.select2-dropdown {
	border-color: #d2d6dc;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px;
	right: 5px;
}
.cart-collaterals .shipping-calculator-form .select2-container {
	height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px;
	padding-left: 10px;
}
.cart-collaterals .shipping-calculator-form button {
	display: block;
	width: 100%;
	margin-top: 15px;
	border: 1px solid #ccc;
	color: #333;
	background-color: transparent;
	font-weight: 600;
    font-size: 14px;
}
.cart-collaterals .shipping-calculator-form button:hover {
	border-color: #999;
}
/* -- Proceed to Checkout -- */
.wc-proceed-to-checkout {
	margin-top: 0.75rem;
	margin-bottom: 1.618em;
}
.wc-proceed-to-checkout .button.checkout-button {
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 1em;
	height: 52px;
	font-size: 17px;
	border-radius: 6px;
}
/* -- Below Proceed to Checkout Widget -- */
.cart-custom-field {
	font-size: clamp(0.875rem, 0.8115rem + 0.2033vw, 0.9375rem); /* 14-15 */
}
.cart-custom-field img {
    margin: 0 auto 20px auto;
	display: block;
}
@media (max-width: 992px) {
	.cart-custom-field img {
		width: 100%;
		max-width: 400px;
	}
}
/* -- Mobile cart layout option -- */
@media (max-width: 768px) {
	.m-cart table.cart tbody,
	.m-cart table.cart tfoot,
	.m-cart table.cart tr {
		display: block;
	}
	.m-cart table.cart tr.woocommerce-cart-form__cart-item {
		position: relative;
	    border-bottom: 1px solid #e2e2e2;
	    margin-bottom: 15px;
	    padding-bottom: 15px;
	    padding-left: 110px;
	    min-height: 130px;
	}
	.m-cart table.cart td.product-thumbnail {
	    position: absolute;
	    top: 0;
	    left: 0;
	    overflow: hidden;
	    margin-bottom: 0;
	    padding: 5px 0 0 0;
	    max-height: 120px;
	    border-bottom: none;
	    width: 100px;
	}
	.m-cart table.cart .product-thumbnail img {
		width: 100px;
		max-width: 100px;
	}
	.m-cart table.cart td {
	    display: flex;
	    align-items: center;
	    flex-direction: row;
	    flex-wrap: wrap;
	    padding: 5px 0;
	}
	.m-cart table.cart tr td:last-child {
		border: none;
	}
	.m-cart table.cart td.product-remove {
		position: absolute;
		padding: 0;
		top: 0;
		right: 0;
		z-index: 1;
		border: none;
	}
	.m-cart table.cart td.product-quantity .quantity-nav {
	    display: inherit;
	}
	.m-cart table.cart td:before {
	    flex: 1 1 auto;
	    padding-top: 0;
	    text-align: left;
	    font-size: 12px;
	    display: block;
	}
	.m-cart table.cart tr td[data-title]:before {
	    content: attr(data-title) ": ";
	    font-weight: 600;
	    display: block;
	}
	.m-cart table.cart tr td.product-name {
		padding-right: 30px;
		padding-top: 0;
		padding-bottom: 0px;
	}
	.m-cart table.cart tbody tr td.product-subtotal {
		width: 100%;
		padding-left: 0;
	}
	.m-cart table.cart td.product-quantity .quantity-nav {
		left: auto;
		right: 0;
	}
	.m-cart table.cart td.product-price, 
	.m-cart table.cart th.product-price {
	    display: flex;
	}
	.m-cart table.cart tr td.product-name:before,
	.m-cart table.cart tr td.product-price:before {
		display: none;
	}
	.m-cart table.cart tr td.product-name {
		border: none;
		width: 100%;
	}
	.m-cart table.cart tr td.product-name a {
		padding-right: 40px;
		display: block;
    	line-height: 1.5;
	}
	.m-cart table.cart tr td.product-price {
		padding-top: 2px;
		padding-bottom: 0px;
		border-bottom: none;
	}
	.m-cart table.cart tr td small {
		margin-left: 5px;
	}
	.m-cart table.cart td.actions .coupon {
		width: 100%;
	}
	.m-cart table.cart .cgkit-fsn-bar-cart {
		margin: 0px 0 20px 0;
	}
}
/* -- Cross Sells -- */
.cross-sells {
	clear: both;
	padding-top: 2.5rem;
}
.cross-sells h2 {
	margin-bottom: 1.5rem
}
@media (max-width: 767px) {
	.cross-sells h2 {
		margin-bottom: 1rem;
	}
}
/* -- Restore -- */
a.restore-item {
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 0.2em;
    font-weight: bold;
}
/* -- Empty Cart -- */
body.woocommerce-cart .wc-empty-cart-message {
	margin: 0;
}

.woocommerce-cart .cart-empty,
.woocommerce-cart .cart-empty.woocommerce-info {
	position: relative;
	margin: 0;
	padding-top: 200px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
	border: 0;
	border-left: 0;
	border-radius: 0;
	color: #111;
	background: transparent;
	font-size: clamp(1.625rem, 0.8628rem + 2.439vw, 2.375rem);
	font-weight: 600;
	text-align: center;
	letter-spacing: -0.01em;
	line-height: 1.35;
	list-style: none;
	outline: 0;
}

.woocommerce-cart .cart-empty::before,
.woocommerce-cart .cart-empty.woocommerce-info::before {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: 10px;
	content: "";
	display: block;
	width: 220px;
	height: 220px;
	border: 0;
	background: #ddd;
	-webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" clip-rule="evenodd" viewBox="0 0 32 40"><path d="M6.783 25.703a2.264 2.264 0 0 0-2.262 2.262 2.263 2.263 0 1 0 2.262-2.262Zm11.4 0a2.264 2.264 0 0 0-2.262 2.262 2.263 2.263 0 1 0 2.262-2.262Zm-11.4 1a1.263 1.263 0 1 1-.001 2.525 1.263 1.263 0 0 1 .001-2.526Zm11.4 0a1.263 1.263 0 1 1-.001 2.525 1.263 1.263 0 0 1 .001-2.526Zm2.566-5.095v1.69a.39.39 0 0 1-.39.39H3.718a.5.5 0 0 0 0 1h16.641a1.39 1.39 0 0 0 1.39-1.39v-2.055l.005-.02 3.621-15.39H30a.5.5 0 0 0 0-1h-5.021a.5.5 0 0 0-.487.385l-1.056 4.49H2a.5.5 0 0 0-.493.583l1.863 10.9a.5.5 0 0 0 .493.417h16.886Zm2.452-10.9H2.593l1.691 9.9h16.587l2.33-9.9Zm-6.549-3.71 2.25-3.66a.501.501 0 0 0-.852-.523L15.8 6.474a.5.5 0 0 0 .852.524Zm-7.485-.524-2.25-3.66a.501.501 0 0 0-.852.525l2.25 3.659a.501.501 0 0 0 .852-.524Zm3.816-.541v-3.66a.5.5 0 0 0-1 0v3.66a.5.5 0 0 0 1 0Z"/></svg>');
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" clip-rule="evenodd" viewBox="0 0 32 40"><path d="M6.783 25.703a2.264 2.264 0 0 0-2.262 2.262 2.263 2.263 0 1 0 2.262-2.262Zm11.4 0a2.264 2.264 0 0 0-2.262 2.262 2.263 2.263 0 1 0 2.262-2.262Zm-11.4 1a1.263 1.263 0 1 1-.001 2.525 1.263 1.263 0 0 1 .001-2.526Zm11.4 0a1.263 1.263 0 1 1-.001 2.525 1.263 1.263 0 0 1 .001-2.526Zm2.566-5.095v1.69a.39.39 0 0 1-.39.39H3.718a.5.5 0 0 0 0 1h16.641a1.39 1.39 0 0 0 1.39-1.39v-2.055l.005-.02 3.621-15.39H30a.5.5 0 0 0 0-1h-5.021a.5.5 0 0 0-.487.385l-1.056 4.49H2a.5.5 0 0 0-.493.583l1.863 10.9a.5.5 0 0 0 .493.417h16.886Zm2.452-10.9H2.593l1.691 9.9h16.587l2.33-9.9Zm-6.549-3.71 2.25-3.66a.501.501 0 0 0-.852-.523L15.8 6.474a.5.5 0 0 0 .852.524Zm-7.485-.524-2.25-3.66a.501.501 0 0 0-.852.525l2.25 3.659a.501.501 0 0 0 .852-.524Zm3.816-.541v-3.66a.5.5 0 0 0-1 0v3.66a.5.5 0 0 0 1 0Z"/></svg>');
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transform: translate(-50%, -50%);
}

.woocommerce-cart p.return-to-shop {
	text-align: center;
}

.woocommerce-cart p.return-to-shop a {
	font-size: 15px;
	font-weight: bold;
}

@media (max-width: 767px) {
	.woocommerce-cart .cart-empty,
	.woocommerce-cart .cart-empty.woocommerce-info {
		padding-top: 180px;
	}

	.woocommerce-cart .cart-empty::before,
	.woocommerce-cart .cart-empty.woocommerce-info::before {
		width: 100px;
		height: 100px;
	}
}

/* Quantity controls (cart table — Shoptimizer main.css + cart-checkout) */
table.cart td.product-quantity .quantity > label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

table.cart td.product-quantity .quantity .qty {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 32px;
	margin: 0;
	border: none;
	text-align: center;
	font-size: 12px;
	color: #111;
	background: transparent;
	box-shadow: none;
	transform: translate(-50%, -50%);
	-moz-appearance: textfield;
	appearance: textfield;
}

table.cart td.product-quantity .quantity .qty::-webkit-outer-spin-button,
table.cart td.product-quantity .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

table.cart td.product-quantity .quantity .quantity-nav {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

table.cart td.product-quantity .quantity .quantity-button {
	position: relative;
	flex: 0 0 26px;
	width: 26px;
	height: 25px;
	border: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px 13px;
	cursor: pointer;
	z-index: 2;
	pointer-events: auto;
	user-select: none;
	font-size: 0;
	line-height: 0;
}

table.cart td.product-quantity .quantity .quantity-button.quantity-down {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M18 12H6'/%3E%3C/svg%3E");
}

table.cart td.product-quantity .quantity .quantity-button.quantity-up {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6v12m6-6H6'/%3E%3C/svg%3E");
}

table.cart td.product-quantity .quantity .quantity-button:hover {
	opacity: 0.7;
}

table.cart td.product-quantity .quantity .quantity-button:focus-visible {
	outline: 0.2rem solid #2491ff;
	outline-offset: 1px;
}

@supports (-webkit-overflow-scrolling: touch) {
	table.cart .quantity {
		width: 100px;
	}

	table.cart .quantity input {
		font-size: 16px;
	}
}

/* Theme buttons */
.wc-proceed-to-checkout .button.checkout-button,
.woocommerce-cart p.return-to-shop a.button {
	background: var(--hq-color-primary, #e0cee5) !important;
	color: #fff !important;
	border: none;
	font-weight: 600;
	transition: background 0.2s;
}

.wc-proceed-to-checkout .button.checkout-button:hover,
.woocommerce-cart p.return-to-shop a.button:hover {
	background: var(--hq-color-primary-hover, #d9b2e4) !important;
	color: #fff !important;
}