/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

body.woocommerce-checkout,
body.woocommerce-cart,
body.woocommerce-account,
body.woocommerce-checkout .woocommerce,
body.woocommerce-cart .woocommerce,
body.woocommerce-account .woocommerce,
.tml {
	--dm-surface: #16181b;
	--dm-surface-2: #1e2126;
	--dm-field: #0f1113;
	--dm-border: #2b2e33;
	--dm-border-soft: #232629;
	--dm-text: #f7f7f7;
	--dm-muted: #9ba0a6;
	--dm-faint: #7f858c;
	--dm-accent: #ed2129;
	--dm-accent-hi: #f23b42;
	--dm-accent-tint: rgba(237, 33, 41, 0.1);
	--dm-radius: 2px;
	--dm-mono: Montserrat, 'Helvetica Neue', Arial, sans-serif;
	--dm-serif: Montserrat, 'Helvetica Neue', Arial, sans-serif;
	--dm-sans: Montserrat, 'Helvetica Neue', Arial, sans-serif;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

@media (min-width: 993px) {
	body.woocommerce-checkout form.checkout.woocommerce-checkout {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
		column-gap: 56px;
		row-gap: 0;
	}

	body.woocommerce-checkout #customer_details {
		grid-column: 1;
		grid-row: 2 / span 2;
	}

	body.woocommerce-checkout #order_review_heading {
		grid-column: 2;
		grid-row: 2;
	}

	body.woocommerce-checkout #order_review {
		grid-column: 2;
		grid-row: 3;
		position: sticky;
		top: 32px;
		align-self: start;
	}
}

body.woocommerce-checkout form.checkout > .woocommerce-NoticeGroup,
body.woocommerce-checkout form.checkout > .woocommerce-NoticeGroup-checkout {
	grid-column: 1 / -1;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout .woocommerce-shipping-fields {
	background: var(--dm-surface);
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 38px 30px 20px;
	margin-bottom: 24px;
}

body.woocommerce-checkout form.checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout form.checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout form.checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout #order_review_heading {
	font-family: var(--dm-serif);
	font-weight: 600;
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: 0.01em;
	color: var(--dm-text);
	margin: 0 0 22px;
	padding: 0;
	text-transform: none;
}

body.woocommerce-checkout .post-title,
body.woocommerce-cart .post-title {
	font-family: var(--dm-serif);
	font-weight: 600;
	font-size: 46px;
	line-height: 1.08;
	letter-spacing: 0.005em;
	color: var(--dm-text);
	text-transform: none;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 46px;
	padding-top: 20px;
}

@media (min-width: 601px) {
	body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
		grid-template-columns: 1fr 1fr;
		column-gap: 20px;
	}

	body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row-wide,
	body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row.notes {
		grid-column: 1 / -1;
	}
}

body.woocommerce-checkout form.checkout .form-row {
	display: block;
	width: 100%;
	float: none;
	padding: 0;
	margin: 0 0 24px;
}

body.woocommerce-checkout form.checkout .form-row label {
	display: block;
	font-family: var(--dm-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dm-muted);
	margin: 0 0 12px;
	line-height: 1.5;
}

body.woocommerce-checkout form.checkout .form-row label .required {
	color: var(--dm-accent);
	text-decoration: none;
	font-weight: 600;
	margin-left: 4px;
}

body.woocommerce-checkout form.checkout .form-row label .optional {
	color: var(--dm-faint);
	text-transform: none;
	letter-spacing: 0.02em;
}

body.woocommerce-checkout form.checkout .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

body.woocommerce-checkout form.checkout .input-text,
body.woocommerce-checkout form.checkout input[type='text'],
body.woocommerce-checkout form.checkout input[type='email'],
body.woocommerce-checkout form.checkout input[type='tel'],
body.woocommerce-checkout form.checkout input[type='password'],
body.woocommerce-checkout form.checkout input[type='number'],
body.woocommerce-checkout form.checkout textarea,
body.woocommerce-checkout form.checkout select:not(.select2-hidden-accessible) {
	width: 100%;
	min-height: 52px;
	background: var(--dm-field);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	color: var(--dm-text);
	font-family: var(--dm-sans);
	font-size: 15px;
	line-height: 1.4;
	padding: 14px 16px;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

body.woocommerce-checkout form.checkout textarea {
	min-height: 110px;
	resize: vertical;
}

body.woocommerce-checkout form.checkout .input-text:focus,
body.woocommerce-checkout form.checkout input[type='text']:focus,
body.woocommerce-checkout form.checkout input[type='email']:focus,
body.woocommerce-checkout form.checkout input[type='tel']:focus,
body.woocommerce-checkout form.checkout input[type='password']:focus,
body.woocommerce-checkout form.checkout input[type='number']:focus,
body.woocommerce-checkout form.checkout textarea:focus,
body.woocommerce-checkout form.checkout select:not(.select2-hidden-accessible):focus {
	border-color: var(--dm-accent);
	box-shadow: 0 0 0 3px var(--dm-accent-tint);
	outline: none;
}

body.woocommerce-checkout form.checkout .input-text::placeholder,
body.woocommerce-checkout form.checkout textarea::placeholder {
	color: #6b7176;
}

body.woocommerce-checkout form.checkout .input-text:-webkit-autofill,
body.woocommerce-checkout form.checkout input:-webkit-autofill,
body.woocommerce-checkout form.checkout textarea:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px var(--dm-field) inset;
	-webkit-text-fill-color: var(--dm-text);
}

body.woocommerce-checkout form.checkout .woocommerce-invalid input.input-text,
body.woocommerce-checkout form.checkout .woocommerce-invalid select,
body.woocommerce-checkout form.checkout .woocommerce-invalid textarea {
	border-color: #8c3a40;
	box-shadow: 0 0 0 3px rgba(237, 33, 41, 0.12);
}

body.woocommerce-checkout .select2-container {
	width: 100% !important;
}

body.woocommerce-checkout .select2-container .select2-selection--single {
	height: 52px;
	background: var(--dm-field);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-checkout .select2-container--open .select2-selection--single,
body.woocommerce-checkout .select2-container--focus .select2-selection--single {
	border-color: var(--dm-accent);
	box-shadow: 0 0 0 3px var(--dm-accent-tint);
	outline: none;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 50px;
	padding: 0 42px 0 16px;
	color: var(--dm-text);
	font-family: var(--dm-sans);
	font-size: 15px;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__placeholder {
	color: #6b7176;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	height: 50px;
	right: 10px;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow b {
	border-color: var(--dm-muted) transparent transparent;
	border-width: 5px 4px 0;
}

body.woocommerce-checkout .select2-dropdown {
	background: var(--dm-surface);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	color: var(--dm-text);
}

body.woocommerce-checkout .select2-container--default .select2-results__option {
	padding: 10px 16px;
	font-family: var(--dm-sans);
	font-size: 14px;
	color: var(--dm-muted);
}

body.woocommerce-checkout .select2-container--default .select2-results__option[aria-selected='true'] {
	background: var(--dm-surface-2);
	color: var(--dm-text);
}

body.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: var(--dm-accent);
	color: #fff;
}

body.woocommerce-checkout .select2-search--dropdown .select2-search__field {
	background: var(--dm-field);
	border: 1px solid var(--dm-border);
	color: var(--dm-text);
	padding: 10px 12px;
	border-radius: var(--dm-radius);
}

body.woocommerce-checkout #ship-to-different-address {
	margin: 0 0 18px;
}

body.woocommerce-checkout #ship-to-different-address label,
body.woocommerce-checkout .create-account label,
body.woocommerce-checkout .woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--dm-mono);
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: none;
	color: var(--dm-muted);
	cursor: pointer;
}

body.woocommerce-checkout form.checkout input[type='checkbox'],
body.woocommerce-checkout form.checkout input[type='radio'] {
	width: 18px;
	height: 18px;
	min-height: 0;
	accent-color: var(--dm-accent);
	border: 1px solid var(--dm-border);
	background: var(--dm-field);
	cursor: pointer;
	flex: none;
}

body.woocommerce-checkout form.checkout input[type='checkbox']:focus-visible,
body.woocommerce-checkout form.checkout input[type='radio']:focus-visible {
	outline: 2px solid var(--dm-accent);
	outline-offset: 2px;
}

body.woocommerce-checkout #order_review {
	background: var(--dm-surface);
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 28px;
	box-sizing: border-box;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table {
	width: 100%;
	border: 0;
	border-collapse: collapse;
	margin: 0;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table thead th {
	font-family: var(--dm-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dm-faint);
	text-align: left;
	padding: 0 0 12px;
	border-bottom: 1px solid var(--dm-border-soft);
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table .product-total,
body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table td {
	text-align: right;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tbody .cart_item td {
	padding: 18px 0;
	border-bottom: 1px solid var(--dm-border-soft);
	vertical-align: top;
}

body.woocommerce-checkout .shop_table .product-name {
	text-align: left;
	padding-right: 16px;
}

body.woocommerce-checkout .shop_table .product-item-thumb {
	float: left;
	margin-right: 14px;
}

body.woocommerce-checkout .shop_table .product-item-thumb img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: var(--dm-radius);
	border: 1px solid var(--dm-border-soft);
	display: block;
}

body.woocommerce-checkout .shop_table .product-item-text {
	font-family: var(--dm-sans);
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--dm-text);
	overflow-wrap: anywhere;
}

body.woocommerce-checkout .shop_table .product-item-text .product-quantity {
	display: inline-block;
	margin-top: 4px;
}

body.woocommerce-checkout .shop_table .product-quantity {
	font-family: var(--dm-mono);
	font-size: 12px;
	font-weight: 400;
	color: var(--dm-muted);
	white-space: nowrap;
}

body.woocommerce-checkout .shop_table .product-item-thumb .product-quantity {
	display: none;
}

body.woocommerce-checkout .shop_table tfoot tr th,
body.woocommerce-checkout .shop_table tfoot tr td {
	padding: 14px 0;
	border-bottom: 1px solid var(--dm-border-soft);
	vertical-align: top;
	text-align: left;
}

body.woocommerce-checkout .shop_table tfoot tr th {
	font-family: var(--dm-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dm-muted);
}

body.woocommerce-checkout .shop_table tfoot tr td {
	text-align: right;
	color: var(--dm-text);
	font-family: var(--dm-mono);
	font-size: 13px;
}

body.woocommerce-checkout .shop_table tfoot tr.order-total th {
	color: var(--dm-text);
	font-size: 13px;
}

body.woocommerce-checkout .shop_table tfoot tr.order-total td {
	font-family: var(--dm-serif);
	font-size: 24px;
	line-height: 1.1;
	color: var(--dm-text);
	border-bottom: 0;
	padding-top: 18px;
}

body.woocommerce-checkout .shop_table tfoot tr.order-total td .woocommerce-Price-currencySymbol {
	font-family: var(--dm-sans);
	font-size: 15px;
}

body.woocommerce-checkout .woocommerce-shipping-totals th,
body.woocommerce-checkout .woocommerce-shipping-totals td {
	padding-top: 6px;
}

body.woocommerce-checkout .woocommerce-shipping-methods {
	list-style: none;
	margin: 6px 0 8px;
	padding: 0;
	display: grid;
	gap: 10px;
	text-align: left;
}

body.woocommerce-checkout .woocommerce-shipping-methods li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 12px 14px;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.woocommerce-checkout .woocommerce-shipping-methods li:hover {
	border-color: var(--dm-border);
	background: rgba(242, 239, 233, 0.02);
}

body.woocommerce-checkout .woocommerce-shipping-methods li:has(input.shipping_method:checked) {
	border-color: var(--dm-accent);
	background: var(--dm-accent-tint);
}

body.woocommerce-checkout .woocommerce-shipping-methods li input.shipping_method {
	margin: 2px 0 0;
}

body.woocommerce-checkout .woocommerce-shipping-methods li label {
	font-family: var(--dm-sans);
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--dm-muted);
	cursor: pointer;
	margin: 0;
}

body.woocommerce-checkout .woocommerce-shipping-methods li label .woocommerce-Price-amount {
	display: inline-block;
	font-family: var(--dm-mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--dm-text);
	margin-left: 4px;
}

body.woocommerce-checkout .woocommerce-shipping-methods li:has(input.shipping_method:checked) label {
	color: var(--dm-text);
}

body.woocommerce-checkout .woocommerce-shipping-methods li label .woocommerce-Price-currencySymbol {
	font-family: var(--dm-sans);
	font-size: 11px;
}

body.woocommerce-checkout .woocommerce-shipping-destination,
body.woocommerce-checkout .woocommerce-shipping-calculator {
	font-family: var(--dm-sans);
	font-size: 12px;
	color: var(--dm-faint);
	text-align: left;
}

body.woocommerce-checkout .shop_table tfoot .woocommerce-shipping-destination {
	display: block;
	margin-top: 6px;
}

body.woocommerce-checkout #payment {
	background: transparent;
	border-radius: 0;
	margin-top: 6px;
}

body.woocommerce-checkout #payment .wc_payment_methods {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
	text-align: left;
}

body.woocommerce-checkout #payment .wc_payment_method {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 15px 16px;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.woocommerce-checkout #payment .wc_payment_method:hover {
	border-color: var(--dm-border);
}

body.woocommerce-checkout #payment .wc_payment_method:has(input.input-radio:checked) {
	border-color: var(--dm-accent);
	background: var(--dm-accent-tint);
}

body.woocommerce-checkout #payment .wc_payment_method > label {
	display: flex;
	align-items: center;
	flex: 1 1 0;
	flex-wrap: wrap;
	min-width: 0;
	gap: 8px 12px;
	font-family: var(--dm-sans);
	font-size: 15px;
	font-weight: 500;
	color: var(--dm-text);
	cursor: pointer;
	margin: 0;
	line-height: 1.4;
}

body.woocommerce-checkout #payment .wc_payment_method > label::before {
	display: none;
}

body.woocommerce-checkout #payment .wc_payment_method input.input-radio {
	margin: 0;
}

body.woocommerce-checkout #payment .aps-cards-container {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	flex: none;
}

body.woocommerce-checkout #payment .aps-cards-container img.payment-icons {
	height: 20px;
	width: auto;
	opacity: 0.9;
}

@media (max-width: 569px) {
	body.woocommerce-checkout #payment .wc_payment_method {
		gap: 10px;
	}

	body.woocommerce-checkout #payment .wc_payment_method > label {
		gap: 6px 10px;
	}

	body.woocommerce-checkout #payment .aps-cards-container {
		margin-left: 0;
	}

	body.woocommerce-checkout #payment .aps-cards-container img.payment-icons {
		height: 18px;
	}
}

body.woocommerce-checkout #payment .payment_box {
	flex: 1 1 100%;
	width: 100%;
	background: var(--dm-field);
	border-left: 2px solid var(--dm-accent);
	border-radius: var(--dm-radius);
	margin: 12px 0 2px;
	padding: 12px 14px;
	font-family: var(--dm-sans);
	font-size: 13px;
	line-height: 1.6;
	color: var(--dm-muted);
}

body.woocommerce-checkout #payment .payment_box::before {
	display: none;
}

body.woocommerce-checkout #payment .payment_box p {
	margin: 0;
	font-size: 13px;
	color: var(--dm-muted);
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
	margin-top: 22px;
	border-top: 1px solid var(--dm-border-soft);
	padding-top: 18px;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text p {
	font-family: var(--dm-sans);
	font-size: 12px;
	line-height: 1.6;
	color: var(--dm-faint);
	margin: 0 0 14px;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a,
body.woocommerce-checkout .woocommerce-terms-and-conditions-link {
	color: var(--dm-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: var(--dm-border);
	transition: color 0.2s ease;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a:hover,
body.woocommerce-checkout .woocommerce-terms-and-conditions-link:hover {
	color: var(--dm-accent-hi);
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .form-row {
	margin-bottom: 0;
}

body.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: var(--dm-sans);
	font-size: 13px;
	line-height: 1.55;
	letter-spacing: 0;
	text-transform: none;
	color: var(--dm-muted);
	margin: 0;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .required {
	color: var(--dm-accent);
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout form.checkout #place_order.button {
	width: 100%;
	margin-top: 24px;
	background: var(--dm-accent) !important;
	color: #ffffff !important;
	border: 0 !important;
	border-radius: var(--dm-radius) !important;
	padding: 19px 24px !important;
	min-height: 52px !important;
	font-family: var(--dm-mono);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	text-shadow: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout form.checkout #place_order.button:hover {
	background: var(--dm-accent-hi) !important;
	color: #ffffff !important;
	box-shadow: 0 10px 28px rgba(237, 33, 41, 0.3);
}

body.woocommerce-checkout #place_order:active,
body.woocommerce-checkout form.checkout #place_order.button:active {
	transform: translateY(1px);
	box-shadow: 0 4px 12px rgba(237, 33, 41, 0.25);
}

body.woocommerce-checkout #place_order:disabled,
body.woocommerce-checkout #place_order.disabled,
body.woocommerce-checkout form.checkout #place_order.button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	background: transparent;
	border: 0;
	border-left: 2px solid var(--dm-border);
	border-radius: 0;
	padding: 4px 0 4px 14px;
	margin: 0 0 26px;
	font-family: var(--dm-mono);
	font-size: 12px;
	letter-spacing: 0.03em;
	color: var(--dm-muted);
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
	display: none;
}

body.woocommerce-checkout .woocommerce-form-login-toggle a,
body.woocommerce-checkout .woocommerce-form-coupon-toggle a {
	color: var(--dm-accent-hi);
	text-decoration: none;
	border-bottom: 1px solid rgba(199, 94, 38, 0.4);
	transition: border-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-checkout .woocommerce-form-login-toggle a:hover,
body.woocommerce-checkout .woocommerce-form-coupon-toggle a:hover {
	color: var(--dm-text);
	border-bottom-color: var(--dm-text);
}

body.woocommerce-checkout form.checkout_coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	background: var(--dm-surface);
	border: 1px dashed var(--dm-border);
	border-radius: var(--dm-radius);
	padding: 18px;
	margin: 0 0 26px;
}

body.woocommerce-checkout form.checkout_coupon p {
	margin: 0;
	flex: 1 1 220px;
}

body.woocommerce-checkout form.checkout_coupon .form-row {
	margin: 0;
}

body.woocommerce-checkout form.checkout_coupon .input-text {
	min-height: 48px;
}

body.woocommerce-checkout form.checkout_coupon button.button {
	background: transparent !important;
	color: var(--dm-text) !important;
	border: 1px solid var(--dm-border) !important;
	border-radius: var(--dm-radius);
	padding: 0 22px;
	min-height: 48px;
	font-family: var(--dm-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-checkout form.checkout_coupon button.button:hover {
	border-color: var(--dm-accent) !important;
	background: var(--dm-accent-tint) !important;
	color: var(--dm-text) !important;
}

body.woocommerce-checkout .woocommerce-NoticeGroup {
	margin: 0 0 28px;
}

body.woocommerce-checkout .woocommerce-notices-wrapper {
	margin: 0 0 24px;
}

body.woocommerce-checkout ul.woocommerce-error,
body.woocommerce-checkout .woocommerce-NoticeGroup ul.woocommerce-error {
	background: rgba(237, 33, 41, 0.08);
	border: 1px solid #5c2b2e;
	border-radius: var(--dm-radius);
	color: #f0b6ba;
	font-family: var(--dm-sans);
	font-size: 14px;
	line-height: 1.6;
	list-style: none;
	margin: 0;
	padding: 16px 18px;
}

body.woocommerce-checkout ul.woocommerce-error li {
	margin: 0 0 6px;
}

body.woocommerce-checkout ul.woocommerce-error li:last-child {
	margin-bottom: 0;
}

body.woocommerce-checkout ul.woocommerce-error::before {
	display: none;
}

body.woocommerce-checkout ul.woocommerce-error a {
	color: #f7f7f7;
}

@media (max-width: 992px) {
	body.woocommerce-checkout .woocommerce-billing-fields,
	body.woocommerce-checkout .woocommerce-additional-fields,
	body.woocommerce-checkout .woocommerce-shipping-fields,
	body.woocommerce-checkout #order_review {
		padding: 28px 20px 14px;
	}

	body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
		margin-top: 36px;
		padding-top: 16px;
	}

	body.woocommerce-checkout #order_review {
		margin-top: 8px;
	}

	body.woocommerce-checkout #order_review_heading {
		margin-top: 34px;
	}
}

@media (max-width: 600px) {
	body.woocommerce-checkout form.checkout .form-row {
		margin-bottom: 20px;
	}

	body.woocommerce-checkout .woocommerce-shipping-methods li {
		padding: 12px 12px;
	}

	body.woocommerce-checkout .shop_table .product-item-thumb img {
		width: 52px;
		height: 52px;
	}
}

body.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 993px) {
	body.woocommerce-cart .woocommerce {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
		column-gap: 56px;
		align-items: start;
	}

	body.woocommerce-cart .woocommerce-notices-wrapper {
		grid-column: 1 / -1;
	}

	body.woocommerce-cart form.woocommerce-cart-form {
		grid-column: 1;
		grid-row: 2;
	}

	body.woocommerce-cart .cart-collaterals {
		grid-column: 2;
		grid-row: 2;
		position: sticky;
		top: 32px;
	}
}

body.woocommerce-cart form.woocommerce-cart-form {
	background: var(--dm-surface);
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 10px 26px 26px;
	margin: 0;
}

body.woocommerce-cart table.shop_table {
	width: 100%;
	border: 0;
	border-collapse: collapse;
	margin: 0;
}

body.woocommerce-cart table.shop_table thead th {
	font-family: var(--dm-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dm-faint);
	padding: 14px 0;
	border-bottom: 1px solid var(--dm-border-soft);
	text-align: left;
}

body.woocommerce-cart table.shop_table tbody td {
	padding: 18px 0;
	border-bottom: 1px solid var(--dm-border-soft);
	vertical-align: middle;
	color: var(--dm-text);
	font-family: var(--dm-sans);
	font-size: 14px;
}

body.woocommerce-cart table.shop_table tbody tr:last-child td {
	border-bottom: 0;
}

body.woocommerce-cart table.shop_table .product-remove {
	width: 36px;
}

body.woocommerce-cart table.shop_table .product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid var(--dm-border-soft);
	border-radius: 50%;
	color: var(--dm-muted) !important;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

body.woocommerce-cart table.shop_table .product-remove a.remove:hover {
	border-color: var(--dm-accent);
	color: var(--dm-accent) !important;
	background: var(--dm-accent-tint);
}

body.woocommerce-cart table.shop_table .product-thumbnail {
	width: 96px;
}

body.woocommerce-cart table.shop_table .product-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--dm-radius);
	border: 1px solid var(--dm-border-soft);
	display: block;
}

body.woocommerce-cart table.shop_table .product-name a {
	color: var(--dm-text);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.2s ease;
}

body.woocommerce-cart table.shop_table .product-name a:hover {
	color: var(--dm-accent-hi);
}

body.woocommerce-cart table.shop_table .product-price .amount,
body.woocommerce-cart table.shop_table .product-subtotal .amount {
	font-family: var(--dm-mono);
	font-size: 14px;
	font-variant-numeric: tabular-nums;
	color: var(--dm-text);
	white-space: nowrap;
}

body.woocommerce-cart table.shop_table .product-subtotal .amount {
	font-weight: 600;
}

body.woocommerce-cart table.shop_table .quantity {
	display: inline-block;
}

body.woocommerce-cart table.shop_table .quantity input.qty {
	width: 72px;
	min-height: 46px;
	background: var(--dm-field);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	color: var(--dm-text);
	font-family: var(--dm-mono);
	font-size: 14px;
	text-align: center;
	padding: 10px 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-cart table.shop_table .quantity input.qty:focus {
	border-color: var(--dm-accent);
	box-shadow: 0 0 0 3px var(--dm-accent-tint);
	outline: none;
}

body.woocommerce-cart table.shop_table td.actions {
	padding: 20px 0 6px;
	border-bottom: 0;
}

body.woocommerce-cart table.shop_table td.actions::after {
	content: '';
	display: block;
	clear: both;
}

body.woocommerce-cart table.shop_table td.actions .coupon {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: center;
	float: left;
	max-width: 100%;
}

body.woocommerce-cart table.shop_table td.actions button[name='update_cart'] {
	float: right;
}

body.woocommerce-cart table.shop_table td.actions .coupon .input-text {
	width: 200px;
	flex: 0 0 200px;
	min-height: 46px;
	background: var(--dm-field);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	color: var(--dm-text);
	font-family: var(--dm-sans);
	font-size: 14px;
	padding: 10px 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-cart table.shop_table td.actions .coupon .input-text:focus {
	border-color: var(--dm-accent);
	box-shadow: 0 0 0 3px var(--dm-accent-tint);
	outline: none;
}

body.woocommerce-cart table.shop_table td.actions .coupon button.button,
body.woocommerce-cart table.shop_table td.actions button[name='update_cart'] {
	background: transparent !important;
	color: var(--dm-text) !important;
	border: 1px solid var(--dm-border) !important;
	border-radius: var(--dm-radius) !important;
	min-height: 46px;
	padding: 0 22px !important;
	font-family: var(--dm-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-cart table.shop_table td.actions .coupon button.button:hover,
body.woocommerce-cart table.shop_table td.actions button[name='update_cart']:hover {
	border-color: var(--dm-accent) !important;
	background: var(--dm-accent-tint) !important;
	color: var(--dm-text) !important;
}

body.woocommerce-cart table.shop_table td.actions button[name='update_cart']:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

body.woocommerce-cart .cart-collaterals {
	margin: 0;
}

body.woocommerce-cart .cart_totals {
	background: var(--dm-surface);
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 26px;
	float: none;
	width: auto;
}

body.woocommerce-cart .cart_totals h2 {
	font-family: var(--dm-serif);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
	color: var(--dm-text);
	margin: 0 0 18px;
	text-transform: none;
}

body.woocommerce-cart .cart_totals table.shop_table {
	width: 100%;
	border: 0;
	border-collapse: collapse;
	margin: 0 0 4px;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
	padding: 13px 0;
	border-bottom: 1px solid var(--dm-border-soft);
	background: transparent;
	vertical-align: top;
}

body.woocommerce-cart .cart_totals table.shop_table th {
	font-family: var(--dm-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dm-muted);
	text-align: left;
}

body.woocommerce-cart .cart_totals table.shop_table td {
	text-align: right;
	font-family: var(--dm-mono);
	font-size: 14px;
	font-variant-numeric: tabular-nums;
	color: var(--dm-text);
}

body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals th {
	padding-top: 16px;
}

body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals td {
	text-align: left;
	border-bottom: 1px solid var(--dm-border-soft);
	padding-top: 12px;
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	text-align: left;
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 12px 14px;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods li:hover {
	border-color: var(--dm-border);
	background: rgba(247, 247, 247, 0.02);
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods li:has(input.shipping_method:checked) {
	border-color: var(--dm-accent);
	background: var(--dm-accent-tint);
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods li input.shipping_method {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: var(--dm-accent);
	flex: none;
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods li label {
	font-family: var(--dm-sans);
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--dm-muted);
	cursor: pointer;
	margin: 0;
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods li:has(input.shipping_method:checked) label {
	color: var(--dm-text);
}

body.woocommerce-cart .cart_totals #shipping_method.woocommerce-shipping-methods li label .woocommerce-Price-amount {
	display: inline-block;
	font-family: var(--dm-mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--dm-text);
	margin-left: 4px;
	white-space: nowrap;
}

body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals p {
	font-family: var(--dm-sans);
	font-size: 12px;
	color: var(--dm-faint);
	margin: 10px 0 0;
	text-align: left;
}

body.woocommerce-cart .cart_totals table.shop_table tr.order-total th {
	color: var(--dm-text);
	font-size: 13px;
	border-bottom: 0;
	padding-top: 18px;
}

body.woocommerce-cart .cart_totals table.shop_table tr.order-total td {
	font-family: var(--dm-serif);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--dm-text);
	border-bottom: 0;
	padding-top: 18px;
}

body.woocommerce-cart .cart_totals table.shop_table tr.order-total td .woocommerce-Price-currencySymbol {
	font-family: var(--dm-sans);
	font-size: 15px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
	padding: 20px 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: block;
	width: 100%;
	background: var(--dm-accent) !important;
	color: #ffffff !important;
	border: 0 !important;
	border-radius: var(--dm-radius) !important;
	padding: 19px 24px !important;
	min-height: 52px;
	font-family: var(--dm-mono) !important;
	font-size: 13px !important;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1 !important;
	text-align: center;
	cursor: pointer;
	margin: 0 !important;
	box-shadow: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--dm-accent-hi) !important;
	color: #ffffff !important;
	box-shadow: 0 10px 28px rgba(237, 33, 41, 0.3);
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:active {
	transform: translateY(1px);
	box-shadow: 0 4px 12px rgba(237, 33, 41, 0.25);
}

@media (max-width: 992px) {
	body.woocommerce-cart form.woocommerce-cart-form {
		padding: 6px 16px 18px;
	}

	body.woocommerce-cart .cart_totals {
		padding: 22px 18px;
	}

	body.woocommerce-cart table.shop_table td.actions .coupon {
		flex-wrap: wrap;
	}
}

@media (max-width: 600px) {
	body.woocommerce-cart table.shop_table .product-thumbnail img {
		width: 56px;
		height: 56px;
	}

	body.woocommerce-cart table.shop_table td.actions .coupon .input-text {
		width: 100%;
		flex: 0 0 100%;
	}
}

body.woocommerce-account .tml,
.tml {
	max-width: 460px;
	margin: 0 auto;
}

.tml form {
	background: var(--dm-surface);
	border: 1px solid var(--dm-border-soft);
	border-radius: var(--dm-radius);
	padding: 32px 30px 28px;
	margin: 0;
}

.tml .tml-field-wrap {
	margin: 0 0 18px;
}

.tml .tml-label {
	display: block;
	font-family: var(--dm-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dm-muted);
	margin: 0 0 8px;
}

.tml .tml-field {
	width: 100%;
	min-height: 48px;
	background: var(--dm-field);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	color: var(--dm-text);
	font-family: var(--dm-sans);
	font-size: 15px;
	padding: 12px 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tml .tml-field:focus {
	border-color: var(--dm-accent);
	box-shadow: 0 0 0 3px var(--dm-accent-tint);
	outline: none;
}

.tml .tml-pwd {
	position: relative;
	display: block;
}

.tml .tml-pwd .tml-field {
	padding-right: 46px;
}

.tml .tml-toggle-pwd {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	color: var(--dm-muted);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
}

.tml .tml-toggle-pwd:hover {
	color: var(--dm-text);
}

.tml .tml-rememberme-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tml .tml-rememberme-wrap .tml-label {
	margin: 0;
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: 12px;
}

.tml input[type='checkbox'].tml-checkbox {
	width: 16px;
	height: 16px;
	accent-color: var(--dm-accent);
	cursor: pointer;
}

.tml .tml-submit-wrap {
	margin: 22px 0 0;
}

.tml input[type='submit'].tml-submit,
.tml .tml-submit-wrap input[type='submit'],
.tml .tml-submit-wrap button {
	width: 100%;
	background: var(--dm-accent) !important;
	color: #ffffff !important;
	border: 0 !important;
	border-radius: var(--dm-radius) !important;
	min-height: 50px;
	padding: 15px 24px !important;
	font-family: var(--dm-mono) !important;
	font-size: 13px !important;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1 !important;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}

.tml input[type='submit'].tml-submit:hover,
.tml .tml-submit-wrap input[type='submit']:hover,
.tml .tml-submit-wrap button:hover {
	background: var(--dm-accent-hi) !important;
	box-shadow: 0 10px 28px rgba(237, 33, 41, 0.3);
}

.tml .tml-submit-wrap input[type='submit']:active,
.tml .tml-submit-wrap button:active {
	transform: translateY(1px);
}

.tml .tml-links,
.tml .tml-action-links {
	margin: 18px 0 0;
	font-size: 13px;
}

.tml .tml-links a,
.tml .tml-action-links a,
.tml a {
	color: var(--dm-accent-hi);
	text-decoration: none;
	border-bottom: 1px solid rgba(237, 33, 41, 0.4);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.tml .tml-links a:hover,
.tml .tml-action-links a:hover,
.tml a:hover {
	color: var(--dm-text);
	border-bottom-color: var(--dm-text);
}

.tml .tml-error,
.tml .tml-message {
	background: rgba(237, 33, 41, 0.08);
	border: 1px solid #5c2b2e;
	border-radius: var(--dm-radius);
	color: #f0b6ba;
	font-family: var(--dm-sans);
	font-size: 13px;
	line-height: 1.6;
	padding: 12px 14px;
	margin: 0 0 18px;
}


.tmb-dark.tmb-color-overlay-text, .tmb-dark.tmb .t-entry-visual *:not(.add_to_cart_text):not(.view-cart), .tmb-dark.tmb .t-entry-visual a:not(.add_to_cart_text):not(.view-cart), .tmb-dark.tmb .t-entry-visual .t-entry-title a:not(.add_to_cart_text):not(.view-cart), .tmb-dark.tmb .t-entry-visual .t-entry-meta span:not(.add_to_cart_text):not(.view-cart) {
	color: #ff0000;
}

.tmb-dark.tmb-woocommerce.tmb .t-entry-visual .add-to-cart-overlay a {
	background-color: red;
	color: white !important;
}

button.single_add_to_cart_button.button.alt.btn.btn-default.disabled.wc-variation-selection-needed.cursor-init {
	background-color: red !important;
}

button.single_add_to_cart_button.button.alt.btn.btn-default.cursor-init {
	background-color: red !important;
}

textarea#order_comments {
	color: white;
}

.add_to_cart_button, .btn.btn-default.checkout, .checkout-button.btn.btn-default.alt.wc-forward, button[type="submit"], .rev_slider .tp-button {
	background-color: #ed2129 !important;
}

.select2-dropdown {
	border-width: 1px;
	border-style: solid;
	background-color: black;
	border-radius: 3px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: #ed2129;
	border-radius: 3px;
}

.style-dark .btn-default, .style-light .style-dark .btn-default, .tmb-dark .t-entry-text .btn-default, .style-light .tmb-dark .t-entry-text .btn-default, .tmb-light .t-overlay-inner .btn-default {
	color: white !important;
	background-color: transparent !important;
	border-color: #ffffff !important;
}

.style-dark .wc-backward, .style-light .style-dark .wc-backward, .style-dark .wc-backward, .style-light .style-dark .wc-backward {
	color: #ffffff !important;
	background-color: transparent !important;
	border-color: #ffffff !important;
}

button#place_order {
	background-color: red !important;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table .cart_item td.product-name .product-item-thumb,
body.woocommerce-checkout .shop_table .order_item td.product-name .product-item-thumb {
	display: block !important;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table .cart_item td.product-name img,
body.woocommerce-checkout .shop_table .order_item td.product-name img {
	display: block !important;
}

body.woocommerce-checkout .shop_table .product-item-thumb {
	float: left;
	margin: 0 14px 6px 0;
}

body.woocommerce-checkout .shop_table .product-item-thumb img {
	width: 64px !important;
	height: 64px !important;
	object-fit: cover;
	border-radius: var(--dm-radius);
	border: 1px solid var(--dm-border-soft);
	display: block;
}

@media (max-width: 569px) {
	body.woocommerce-checkout .shop_table .product-item-thumb img {
		width: 52px !important;
		height: 52px !important;
	}

	body.woocommerce-checkout .shop_table .product-item-thumb {
		margin-right: 10px;
	}
}

@media (max-width: 569px) {
	body.woocommerce-cart .shop_table.cart tbody tr.cart_item {
		position: relative;
		display: grid !important;
		grid-template-columns: 88px minmax(0, 1fr);
		column-gap: 16px;
		row-gap: 6px;
		padding: 20px 0 !important;
		border-bottom: 1px solid var(--dm-border-soft);
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td {
		position: static !important;
		display: block !important;
		width: auto !important;
		padding: 0 !important;
		border: 0 !important;
		text-align: left !important;
		float: none !important;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td::before {
		display: none !important;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-remove {
		position: absolute !important;
		top: 14px;
		right: 0;
		width: 28px;
		z-index: 2;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-thumbnail {
		grid-column: 1;
		grid-row: 1 / span 5;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-thumbnail img {
		width: 88px !important;
		max-width: 88px !important;
		min-width: 0 !important;
		height: 88px !important;
		object-fit: cover;
		border-radius: var(--dm-radius);
		border: 1px solid var(--dm-border-soft);
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name {
		grid-column: 2;
		padding-right: 34px !important;
		margin-bottom: 4px;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price,
	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity,
	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal {
		grid-column: 2;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price::before,
	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity::before,
	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal::before {
		content: attr(data-title);
		display: inline-block !important;
		font-family: var(--dm-mono);
		font-size: 10.5px;
		font-weight: 500;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--dm-faint);
		float: none !important;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity input.qty {
		width: 64px;
		min-height: 40px;
		font-size: 13px;
	}

	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price .amount,
	body.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal .amount {
		font-size: 13px;
	}
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table th.product-name,
body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table td.product-name {
	width: auto;
	text-align: left;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table th.product-total,
body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table td.product-total {
	white-space: nowrap;
}

@media (max-width: 569px) {
	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table td.product-name {
		text-align: left !important;
		padding-right: 10px !important;
	}

	body.woocommerce-checkout .shop_table .product-item-text {
		text-align: left !important;
	}
}

@media (max-width: 569px) {
	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table {
		display: block;
		width: 100%;
	}

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

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tbody,
	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot {
		display: block;
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tr.cart_item {
		display: grid;
		grid-template-columns: minmax(0, 1fr) max-content;
		column-gap: 14px;
		padding: 16px 0;
		border-bottom: 1px solid var(--dm-border-soft);
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tr.cart_item td {
		display: block;
		padding: 0;
		border: 0;
		text-align: left;
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tr.cart_item td.product-total {
		text-align: right;
		white-space: nowrap;
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		gap: 14px;
		padding: 14px 0;
		border-bottom: 1px solid var(--dm-border-soft);
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot th,
	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot td {
		display: block;
		width: auto;
		padding: 0;
		border: 0;
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total {
		border-bottom: 0;
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals {
		display: block;
	}

	body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th {
		padding-bottom: 10px;
	}
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th,
body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td {
	display: block;
	width: 100%;
	text-align: left;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th {
	padding-bottom: 4px;
	border-bottom: 0;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td {
	padding-top: 8px;
}

body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals .woocommerce-shipping-methods {
	margin: 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.dm-pay-banner {
	background: #16181b;
	border: 1px solid #232629;
	border-left: 3px solid #2b2e33;
	border-radius: 2px;
	padding: 20px 22px;
	margin: 0 0 28px;
}

.dm-pay-banner h3 {
	font-family: Montserrat, 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	color: #f7f7f7;
	margin: 0 0 8px;
	text-transform: none;
}

.dm-pay-banner p {
	font-family: Montserrat, 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #9ba0a6;
	margin: 0;
}

.dm-pay-banner--confirmed {
	border-left-color: #2e9e5b;
}

.dm-pay-banner--pending {
	border-left-color: #c98a1f;
}

.dm-pay-banner--failed,
.dm-pay-banner--cancelled {
	border-left-color: #ed2129;
}

.dm-pay-banner__retry.button {
	display: inline-block;
	margin: 16px 0 0;
	background: #ed2129 !important;
	color: #ffffff !important;
	border: 0 !important;
	border-radius: 2px !important;
	padding: 14px 28px !important;
	font-family: Montserrat, 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}

.dm-pay-banner__retry.button:hover {
	background: #f23b42 !important;
	color: #ffffff !important;
	box-shadow: 0 10px 28px rgba(237, 33, 41, 0.3);
}

.dm-pay-banner__retry.button:active {
	transform: translateY(1px);
}

.dm-pay-banner ~ h3.woocommerce-thankyou-order-received,
.dm-pay-banner ~ h3.woocommerce-thankyou-order-failed,
.dm-pay-banner ~ p.woocommerce-thankyou-order-failed-actions {
	display: none;
}
