/*
 * Tài Khoản LuxMoom UI layer.
 * Every rule is namespaced to the plugin body class so Flatsome cannot apply
 * these component rules outside LuxMoom screens and LuxMoom cannot leak back.
 */
body.tklm-active {
	--tklm-accent: #638cff;
	--tklm-dark: #292929;
	--tklm-border: #dedede;
	--tklm-muted: #8e8e8e;
	--tklm-soft: #f7f7f7;
}

body.tklm-active .tklm-icon {
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

body.tklm-active .tklm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 32px;
	border: 0;
	border-radius: 0;
	font-weight: 600;
	text-decoration: none !important;
	cursor: pointer;
	transition: .2s;
}

body.tklm-active .tklm-button-dark {
	color: #fff !important;
	background: var(--tklm-dark);
}

body.tklm-active .tklm-button-dark:hover { background: #111; }
body.tklm-active.tklm-modal-open { overflow: hidden; }

body.tklm-active .tklm-toast {
	position: fixed;
	z-index: 100000;
	left: 50%;
	bottom: 32px;
	max-width: min(92vw, 520px);
	padding: 13px 20px;
	color: #fff;
	background: #292929;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
	opacity: 0;
	transform: translate(-50%, 20px);
	pointer-events: none;
	transition: .25s;
}

body.tklm-active .tklm-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
body.tklm-active .tklm-toast.is-error { background: #b32d2e; }
body.tklm-active .tklm-toast.is-success { background: #237b4b; }

/* Header shortcodes. */
body.tklm-active .tklm-header-icon {
	position: relative;
	display: inline-flex;
	gap: 7px;
	align-items: center;
	justify-content: center;
	padding: 7px;
	color: var(--tklm-accent);
	border: 0;
	background: transparent;
	line-height: 1;
	text-decoration: none !important;
	cursor: pointer;
}

body.tklm-active .tklm-header-icon:hover { color: #2c5ee8; }
body.tklm-active .tklm-header-icon .tklm-icon { width: 28px; height: 28px; }
body.tklm-active .tklm-account-menu { position: relative; display: inline-block; }

body.tklm-active .tklm-account-dropdown {
	position: absolute;
	z-index: 9999;
	top: calc(100% + 9px);
	right: 0;
	width: 180px;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--tklm-border);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
	transition: .18s;
}

body.tklm-active .tklm-account-menu:hover .tklm-account-dropdown,
body.tklm-active .tklm-account-menu:focus-within .tklm-account-dropdown {
	opacity: 1;
	visibility: visible;
	transform: none;
}

body.tklm-active .tklm-account-dropdown a {
	display: block;
	padding: 10px 12px;
	color: #222;
	text-decoration: none;
}

body.tklm-active .tklm-account-dropdown a:hover {
	color: var(--tklm-accent);
	background: #f6f8ff;
}

body.tklm-active .tklm-wishlist-count {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 10px;
	color: #fff;
	background: #f13d57;
	font-size: 11px;
	font-weight: 700;
}

/* Authentication. */
body.tklm-active .tklm-auth { max-width: 1000px; margin: 45px auto 80px; }
body.tklm-active .tklm-auth h1,
body.tklm-active .tklm-account-title h1,
body.tklm-active .tklm-commerce-heading h1,
body.tklm-active .tklm-logout-screen h1 {
	margin: 0;
	text-align: center;
	font-size: clamp(34px, 5vw, 60px);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -.02em;
	color: #000;
}

body.tklm-active .tklm-auth-card {
	max-width: 870px;
	margin: 55px auto 0;
	padding: 75px 95px;
	background: #fff;
	box-shadow: 0 0 0 1px #eee;
}

body.tklm-active .tklm-auth input[type="text"],
body.tklm-active .tklm-auth input[type="email"],
body.tklm-active .tklm-auth input[type="tel"],
body.tklm-active .tklm-auth input[type="password"],
body.tklm-active .tklm-auth input[type="date"] {
	width: 100%;
	height: 60px;
	padding: 0 18px;
	border: 1px solid #d9d9d9;
	border-radius: 0;
	box-shadow: none;
	background: #fff;
	font-size: 17px;
}

body.tklm-active .tklm-login .tklm-auth-card input[type="text"],
body.tklm-active .tklm-login .tklm-auth-card input[type="password"] {
	padding: 0;
	border: 0;
	border-bottom: 1px solid var(--tklm-border);
	font-size: 21px;
}

body.tklm-active .tklm-password-wrap { position: relative; }
body.tklm-active .tklm-password-toggle {
	position: absolute;
	right: 0;
	top: 50%;
	padding: 8px;
	border: 0;
	background: none;
	transform: translateY(-50%);
	font-size: 13px;
}

body.tklm-active .tklm-auth .tklm-button {
	width: 100%;
	margin-top: 32px;
	min-height: 70px;
	font-size: 19px;
}

body.tklm-active .tklm-auth-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 30px;
}

body.tklm-active .tklm-auth-links span { width: 1px; height: 24px; background: #aaa; }
body.tklm-active .tklm-auth-links a,
body.tklm-active .tklm-login-prompt a { color: #333; text-decoration: none; }
body.tklm-active .tklm-auth-links a:hover,
body.tklm-active .tklm-login-prompt a:hover { color: var(--tklm-accent); }
body.tklm-active .tklm-remember { display: block; margin-top: 18px; font-weight: 400; }
body.tklm-active .tklm-register-form,
body.tklm-active .tklm-lost-password form { max-width: 870px; margin: 50px auto; }
body.tklm-active .tklm-register-form { padding-top: 28px; border-top: 3px solid #222; }
body.tklm-active .tklm-register-form p,
body.tklm-active .tklm-lost-password form p { margin: 0 0 24px; }
body.tklm-active .tklm-register-form label,
body.tklm-active .tklm-lost-password label { display: block; margin: 0 0 8px; color: #111; font-weight: 700; }
body.tklm-active .tklm-register-form label em,
body.tklm-active .tklm-lost-password label em { color: #e33434; font-style: normal; }
body.tklm-active .tklm-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
body.tklm-active .tklm-inline-field { display: flex; }
body.tklm-active .tklm-inline-field input { flex: 1; }
body.tklm-active .tklm-send-code { flex: 0 0 150px; border: 0; color: #fff; background: var(--tklm-accent); font-weight: 700; }
body.tklm-active .tklm-send-code[disabled] { color: #777; background: #ddd; }
body.tklm-active .tklm-code-message { display: block; min-height: 20px; margin-top: 5px; }
body.tklm-active .tklm-code-message.is-error { color: #b32d2e; }
body.tklm-active .tklm-code-message.is-success { color: #237b4b; }
body.tklm-active .tklm-consent { font-weight: 400 !important; }
body.tklm-active .tklm-login-prompt { text-align: center; }
body.tklm-active .tklm-auth-intro { max-width: 760px; margin: 30px auto; text-align: center; color: #666; font-size: 18px; line-height: 1.6; }
body.tklm-active .tklm-lost-password form { padding-top: 28px; border-top: 3px solid #222; }
body.tklm-active .tklm-auth-status { padding: 20px; border: 1px solid #ddd; background: #fafafa; text-align: center; }

/* Account: constrained to My Account inside #main. */
body.tklm-active.tklm-account-page #main .tklm-account-title {
	grid-column: 1 / -1;
	width: 100%;
	margin: 30px 0 45px;
}

body.tklm-active.tklm-account-page.tklm-account-authenticated #main .woocommerce {
	display: grid;
	grid-template-columns: var(--tklm-account-nav-width, 260px) minmax(0, 1fr);
	column-gap: 55px;
	align-items: start;
	max-width: var(--tklm-content-width, 1400px);
	margin-right: auto;
	margin-left: auto;
}

body.tklm-active.tklm-account-page #main .woocommerce-notices-wrapper,
body.tklm-active.tklm-account-page #main .woocommerce-error,
body.tklm-active.tklm-account-page #main .woocommerce-message { grid-column: 1 / -1; }

body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation {
	float: none;
	width: 100%;
	border-top: 3px solid #222;
}

body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-content {
	float: none;
	width: 100%;
	min-width: 0;
}

body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation ul { margin: 0; padding: 12px 0 0; list-style: none; }
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation li { margin: 0; border: 0; }
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 12px 10px;
	color: #222;
	font-size: 15px;
	text-decoration: none;
}

body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation .is-active a {
	color: var(--tklm-accent);
	font-weight: 700;
	background: #f6f8ff;
}

body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-content h2,
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-content h3 {
	padding-bottom: 12px;
	border-bottom: 2px solid #222;
}

body.tklm-active.tklm-account-page #main .woocommerce-EditAccountForm input.input-text,
body.tklm-active.tklm-account-page #main .woocommerce-address-fields input.input-text,
body.tklm-active.tklm-account-page #main .woocommerce-address-fields select {
	height: 54px;
	border: 1px solid var(--tklm-border);
	border-radius: 0;
	box-shadow: none;
}

body.tklm-active.tklm-account-page #main .woocommerce-EditAccountForm .tklm-account-conditional { display: none; }
body.tklm-active.tklm-account-page #main .woocommerce-EditAccountForm .tklm-account-conditional.is-visible { display: block; }
body.tklm-active.tklm-account-page #main .woocommerce-EditAccountForm .tklm-account-display-name { display: none; }
body.tklm-active.tklm-account-page #main .tklm-profile-extra { margin: 28px 0; padding: 25px 0 0; border: 0; border-top: 1px solid #ddd; }
body.tklm-active.tklm-account-page #main .tklm-profile-extra legend { padding: 0; font-size: 20px; font-weight: 700; }
body.tklm-active.tklm-account-page #main .tklm-gender label { display: inline-flex; align-items: center; margin: 8px 25px 8px 0; }
body.tklm-active.tklm-account-page #main .tklm-field-label { display: block; font-weight: 700; }
body.tklm-active.tklm-account-page #main .tklm-checkbox { display: block; margin: 12px 0; }
body.tklm-active.tklm-account-page #main .tklm-dashboard-welcome h2 { border: 0 !important; }
body.tklm-active.tklm-account-page #main .tklm-dashboard-links { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
body.tklm-active.tklm-account-page #main .tklm-dashboard-links a { display: flex; flex-direction: column; gap: 7px; padding: 24px; color: #222; border: 1px solid #ddd; text-decoration: none; }
body.tklm-active.tklm-account-page #main .tklm-dashboard-links a:hover { border-color: var(--tklm-accent); }
body.tklm-active.tklm-account-page #main .tklm-dashboard-links span { color: #777; font-size: 14px; }
body.tklm-active.tklm-account-page #main .tklm-empty-wishlist { padding: 55px 20px; text-align: center; background: #fafafa; }
body.tklm-active.tklm-account-page #main .tklm-empty-wishlist .tklm-icon { width: 55px; height: 55px; color: #aaa; }
body.tklm-active.tklm-account-page #main .tklm-wishlist-grid { margin-top: 25px; }
body.tklm-active .tklm-logout-screen { padding: 70px 20px; text-align: center; }
body.tklm-active .tklm-logout-screen p { margin: 25px 0 35px; font-size: 19px; }

/* Product cards: never target the single-product gallery. */
body.tklm-active .products .tklm-product-card { position: relative; }
body.tklm-active .products .tklm-product-card .box-image { position: relative; overflow: hidden; }
body.tklm-active .products .tklm-product-card .tklm-badges { position: absolute; z-index: 4; top: 10px; left: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; pointer-events: none; }
body.tklm-active .products .tklm-product-card .tklm-badge { display: inline-block; padding: 3px 9px; color: #fff; font-size: 13px; line-height: 1.35; }
body.tklm-active .products .tklm-product-card .tklm-badge-new { background: var(--tklm-accent); }
body.tklm-active .products .tklm-product-card .tklm-badge-best { background: #ff3852; }
body.tklm-active .tklm-wishlist-button,
body.tklm-active .products .tklm-product-card .tklm-card-cart { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border: 0; border-radius: 50%; color: #fff !important; background: rgba(58, 58, 58, .55); box-shadow: none; text-decoration: none !important; cursor: pointer; transition: .2s; }
body.tklm-active .tklm-wishlist-button .tklm-icon,
body.tklm-active .products .tklm-product-card .tklm-card-cart .tklm-icon { width: 27px; height: 27px; }
body.tklm-active .products .tklm-product-card .tklm-card-heart { position: absolute; z-index: 5; left: 50%; bottom: 14px; opacity: 0; transform: translateX(6px); }
body.tklm-active .products .tklm-product-card .tklm-card-cart { position: absolute; z-index: 5; right: 50%; bottom: 14px; opacity: 0; transform: translateX(-6px); }
body.tklm-active .products .tklm-product-card:hover .tklm-card-heart,
body.tklm-active .products .tklm-product-card:hover .tklm-card-cart,
body.tklm-active .products .tklm-product-card .tklm-card-heart.is-active { opacity: 1; }
body.tklm-active .products .tklm-product-card:hover .tklm-card-heart { transform: translateX(6px); }
body.tklm-active .products .tklm-product-card:hover .tklm-card-cart { transform: translateX(-6px); }
body.tklm-active .tklm-wishlist-button:hover,
body.tklm-active .products .tklm-product-card .tklm-card-cart:hover,
body.tklm-active .tklm-wishlist-button.is-active { color: #fff !important; background: var(--tklm-accent); }
body.tklm-active .tklm-wishlist-button.is-active .tklm-icon { fill: currentColor; }
body.tklm-active .tklm-wishlist-button.is-loading { opacity: .5; pointer-events: none; }
body.tklm-active .products .tklm-product-card .box-text { text-align: center; }
body.tklm-active .products .tklm-product-card .name { min-height: 46px; font-size: 17px; line-height: 1.38; }
body.tklm-active .products .tklm-product-card .price { font-size: 20px; color: #111; }
body.tklm-active .products .tklm-product-card .price del { color: #999; font-size: 14px; }
body.tklm-active .products .tklm-product-card .star-rating { margin: 12px auto; }
body.tklm-active.single-product #main .tklm-single-wishlist { display: flex; align-items: center; gap: 10px; margin: 18px 0; }
body.tklm-active.single-product #main .tklm-single-wishlist .tklm-wishlist-button { color: #444 !important; background: #eee; }
body.tklm-active.single-product #main .tklm-single-wishlist .tklm-wishlist-button.is-active { color: #fff !important; background: var(--tklm-accent); }

/* Mini cart: wrapper prevents Flatsome off-canvas styles from leaking inward. */
body.tklm-active .tklm-mini-cart-shell {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--tklm-mini-cart-width, 430px);
	padding: 22px 24px 24px;
	color: #222;
	background: #fff;
	overflow: hidden;
}

body.tklm-active.tklm-theme-flatsome .cart-popup-inner .tklm-mini-cart-shell,
body.tklm-active.tklm-theme-flatsome .header-cart-title + .nav-dropdown .tklm-mini-cart-shell { min-width: min(var(--tklm-mini-cart-width, 430px), 90vw); }
body.tklm-active .tklm-mini-cart-shell .tklm-mini-cart-head { margin: -4px 0 8px; padding: 0 0 16px; border-bottom: 2px solid #222; font-size: 24px; line-height: 1.2; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart,
body.tklm-active .tklm-mini-cart-shell ul.product_list_widget { margin: 0; padding: 0; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__empty-message { margin: 0; padding: 24px 0; font-size: 15px; text-align: center; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item { position: relative; display: grid; grid-template-columns: 78px minmax(0, 1fr); column-gap: 16px; min-height: 112px; margin: 0; padding: 18px 30px 18px 0 !important; border-bottom: 1px solid #ddd; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item > a:not(.remove) { display: contents; color: #111; font-size: 15px; line-height: 1.4; text-decoration: none; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item img { grid-column: 1; grid-row: 1 / span 3; float: none !important; width: 78px !important; height: 78px !important; margin: 0 !important; object-fit: cover; }
body.tklm-active .tklm-mini-cart-shell .remove { position: absolute !important; top: 50% !important; right: 0 !important; left: auto !important; width: 24px; height: 24px; margin: 0; color: #999 !important; background: transparent !important; font-size: 24px; line-height: 22px; transform: translateY(-50%); }
body.tklm-active .tklm-mini-cart-shell .quantity { grid-column: 2; display: flex !important; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; color: #888; }
body.tklm-active .tklm-mini-cart-shell .quantity strong { color: #111; font-size: 18px; font-weight: 500; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__total { display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 18px 0 !important; border-top: 0 !important; border-bottom: 1px solid #ddd; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0 0; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons .button { display: flex; align-items: center; justify-content: center; min-height: 52px; margin: 0 !important; padding: 10px; border-radius: 0; color: #fff; background: #292929; text-align: center; }
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons .checkout { background: var(--tklm-accent) !important; }

/* Shared commerce headings and hard guard against gallery leakage. */
body.tklm-active .tklm-commerce-heading { max-width: var(--tklm-content-width, 1400px); margin: 20px auto 55px; }
body.tklm-active.tklm-cart-page #main .page-title,
body.tklm-active.tklm-checkout-page #main .page-title { display: none; }
body.tklm-active.tklm-hide-commerce-gallery #main .woocommerce-product-gallery,
body.tklm-active.tklm-hide-commerce-gallery #main .product-gallery,
body.tklm-active.tklm-hide-commerce-gallery #main .product-thumbnails,
body.tklm-active.tklm-hide-commerce-gallery #main .product-images { display: none !important; }

/* Classic WooCommerce cart. */
body.tklm-active.tklm-cart-page #main .woocommerce {
	max-width: var(--tklm-content-width, 1400px);
	margin-right: auto;
	margin-left: auto;
}

body.tklm-active.tklm-cart-page #main table.shop_table { width: 100%; margin: 0; border: 0; border-collapse: collapse; }
body.tklm-active.tklm-cart-page #main table.shop_table thead { display: none; }
body.tklm-active.tklm-cart-page #main table.shop_table tr.cart_item { border-bottom: 1px solid #ddd; }
body.tklm-active.tklm-cart-page #main table.shop_table tr.cart_item td { padding: 28px 12px; border: 0; vertical-align: middle; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-thumbnail { width: calc(var(--tklm-cart-thumb-size, 120px) + 24px); }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-thumbnail a { display: block; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-thumbnail img { display: block; width: var(--tklm-cart-thumb-size, 120px) !important; height: var(--tklm-cart-thumb-size, 120px) !important; max-width: none; object-fit: cover; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-name { width: auto; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-name a { color: #111; font-size: 18px; line-height: 1.45; text-decoration: none; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-price { display: none; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-quantity { width: 150px; text-align: center; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-subtotal { width: 180px; color: #111; font-size: 19px; text-align: right; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-remove { width: 45px; text-align: right; }
body.tklm-active.tklm-cart-page #main table.shop_table td.product-remove a { color: #aaa; background: transparent; font-size: 26px; }
body.tklm-active.tklm-cart-page #main .quantity { display: inline-flex; align-items: center; border: 1px solid #ddd; }
body.tklm-active.tklm-cart-page #main .quantity input.qty { width: 48px !important; height: 42px !important; margin: 0; padding: 0; border: 0 !important; box-shadow: none !important; }
body.tklm-active.tklm-cart-page #main .tklm-qty-button { width: 42px; height: 42px; padding: 0; border: 0; background: #fff; font-size: 22px; cursor: pointer; }
body.tklm-active.tklm-cart-page #main table.shop_table td.actions { padding: 22px 0; }
body.tklm-active.tklm-cart-page #main .cart-collaterals { margin-top: 30px; padding: 28px; background: #f7f7f7; }
body.tklm-active.tklm-cart-page #main .cart_totals { float: none; width: 100% !important; }
body.tklm-active.tklm-cart-page #main .cart_totals h2 { padding-bottom: 14px; border-bottom: 1px solid #ddd; }
body.tklm-active.tklm-cart-page #main .checkout-button { display: flex; align-items: center; justify-content: center; max-width: 535px; min-height: 60px; margin: 35px auto 0 !important; border-radius: 0; background: #292929 !important; }

/* Classic checkout, limited to Vietnamese essentials. */
body.tklm-active.tklm-checkout-page #main .woocommerce {
	max-width: var(--tklm-content-width, 1400px);
	margin-right: auto;
	margin-left: auto;
}

body.tklm-active.tklm-checkout-page #main form.checkout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(330px, .95fr); gap: 20px; margin: 0; padding: 24px; background: #eee; }
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details { grid-column: 1; grid-row: 1 / span 3; float: none; width: 100%; margin: 0; }
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-1,
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-2 { float: none; width: 100%; max-width: none; margin: 0 0 20px; padding: 28px; background: #fff; }
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-2:empty { display: none; }
body.tklm-active.tklm-checkout-page #main form.checkout #order_review_heading { grid-column: 2; grid-row: 1; align-self: end; margin: 0; padding: 24px 28px 12px; background: #fff; }
body.tklm-active.tklm-checkout-page #main form.checkout #order_review { grid-column: 2; grid-row: 2; margin: 0; padding: 0 28px 28px; background: #fff; }
body.tklm-active.tklm-checkout-page #main form.checkout #payment { grid-column: 2; grid-row: 3; margin: 0; padding: 28px; background: #fff; }
body.tklm-active.tklm-checkout-page #main form.checkout .form-row { margin-bottom: 17px; }
body.tklm-active.tklm-checkout-page #main form.checkout input.input-text,
body.tklm-active.tklm-checkout-page #main form.checkout textarea,
body.tklm-active.tklm-checkout-page #main form.checkout select,
body.tklm-active.tklm-checkout-page #main form.checkout .select2-selection { min-height: 50px; border: 1px solid #d5d5d5; border-radius: 0; box-shadow: none; background: #fff; }
body.tklm-active.tklm-checkout-page #main form.checkout input.input-text { padding: 0 14px; }
body.tklm-active.tklm-checkout-page #main form.checkout textarea { min-height: 105px; padding: 12px 14px; }
body.tklm-active.tklm-checkout-page #main form.checkout .select2-selection__rendered { line-height: 48px; }
body.tklm-active.tklm-checkout-page #main form.checkout .select2-selection__arrow { height: 48px; }
body.tklm-active.tklm-checkout-page #main form.checkout #place_order { width: 100%; min-height: 58px; border-radius: 0; background: #292929; }
body.tklm-active.tklm-checkout-page #main .tklm-invoice { margin-top: 28px; padding: 24px; border-top: 2px solid #222; background: #fff; }
body.tklm-active.tklm-checkout-page #main .tklm-invoice-toggle { display: flex; align-items: center; gap: 9px; }
body.tklm-active.tklm-checkout-page #main .tklm-invoice-note { font-size: 13px; color: #666; }
body.tklm-active.tklm-checkout-page #main .tklm-invoice-fields { display: none; margin-top: 18px; padding: 20px; border: 1px solid #aaa; }
body.tklm-active .tklm-order-invoice { margin-top: 15px; padding: 12px; background: #f7f7f7; }

/* Product filters. */
body.tklm-active .tklm-filters { margin: 25px 0 45px; padding: 26px 0; border-top: 1px solid #ddd; }
body.tklm-active .tklm-filter-desktop { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 28px; }
body.tklm-active .tklm-filter-group { min-width: 190px; }
body.tklm-active .tklm-filter-group > label { display: block; margin-bottom: 8px; color: #111; font-size: 15px; font-weight: 500; text-transform: uppercase; }
body.tklm-active .tklm-select-wrap { position: relative; }
body.tklm-active .tklm-select-wrap select { width: 100%; height: 45px; margin: 0; padding: 0 30px 0 0; border: 0; border-bottom: 1px solid #aaa; border-radius: 0; background: #fff; box-shadow: none; appearance: none; }
body.tklm-active .tklm-select-wrap .tklm-icon { position: absolute; right: 4px; top: 50%; width: 17px; transform: translateY(-50%); pointer-events: none; }
body.tklm-active .tklm-filter-submit { height: 45px; padding: 0 22px; border: 0; color: #fff; background: #292929; }
body.tklm-active .tklm-filter-reset { height: 45px; padding: 12px 0; color: #777; text-decoration: underline; }
body.tklm-active .tklm-mobile-filter-open { display: none; align-items: center; gap: 8px; width: 100%; padding: 13px 18px; border: 1px solid #ccc; background: #fff; text-align: left; }
body.tklm-active .tklm-mobile-filter-open span { width: 7px; height: 7px; margin-left: auto; border-radius: 50%; background: var(--tklm-accent); }
body.tklm-active .tklm-mobile-filter { position: fixed; z-index: 99999; inset: 0; display: none; }
body.tklm-active .tklm-mobile-filter.is-open { display: block !important; }
body.tklm-active .tklm-mobile-filter-backdrop { position: absolute; inset: 0; background: rgba(38, 25, 17, .82); }
body.tklm-active .tklm-mobile-filter-panel { position: absolute; top: 10px; bottom: 10px; left: 30px; width: min(605px, calc(100% - 60px)); background: #fff; box-shadow: 0 20px 60px rgba(0, 0, 0, .3); overflow: auto; }
body.tklm-active .tklm-mobile-filter-head { display: flex; align-items: center; justify-content: center; height: 82px; padding: 0 28px; color: var(--tklm-accent); border-bottom: 1px solid #ddd; font-size: 20px; }
body.tklm-active .tklm-mobile-filter-close { position: absolute; right: 20px; border: 0; color: var(--tklm-accent); background: none; }
body.tklm-active .tklm-mobile-filter-body .tklm-filter-group { padding: 20px 28px; border-bottom: 1px solid #ddd; }
body.tklm-active .tklm-mobile-filter-body .tklm-filter-group > label { font-size: 18px; }
body.tklm-active .tklm-mobile-filter-actions { display: flex; align-items: center; gap: 20px; padding: 25px 28px; }
body.tklm-active .tklm-mobile-filter-actions .tklm-button { flex: 1; margin: 0; }

/* Search overlay. */
body.tklm-active .tklm-search-overlay { position: fixed; z-index: 100000; inset: 0; display: none; }
body.tklm-active .tklm-search-overlay.is-open { display: block; }
body.tklm-active .tklm-search-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .48); }
body.tklm-active .tklm-search-panel { position: absolute; top: 0; left: 0; width: 100%; padding: 70px max(30px, calc((100vw - 1100px) / 2)); background: #fff; box-shadow: 0 8px 25px rgba(0, 0, 0, .12); }
body.tklm-active .tklm-search-panel form { display: flex; gap: 12px; }
body.tklm-active .tklm-search-field { position: relative; display: flex; align-items: center; flex: 1; height: 70px; border: 2px solid #9bb4ff; box-shadow: 0 0 4px rgba(99, 140, 255, .5); }
body.tklm-active .tklm-search-field > .tklm-icon { width: 32px; height: 32px; margin: 0 18px; color: #111; }
body.tklm-active .tklm-search-field input { flex: 1; height: 100%; margin: 0 !important; padding: 0 !important; border: 0 !important; box-shadow: none !important; background: #fff; font-size: 20px; }
body.tklm-active .tklm-search-clear { padding: 15px; border: 0; background: none; }
body.tklm-active .tklm-search-submit { flex: 0 0 250px; border: 0; color: #fff; background: var(--tklm-accent); font-size: 18px; }
body.tklm-active .tklm-search-close { position: absolute; top: 18px; right: 28px; border: 0; background: none; }
body.tklm-active .tklm-search-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
body.tklm-active .tklm-search-item { display: flex; align-items: center; gap: 12px; padding: 10px; color: #111; border: 1px solid #eee; text-decoration: none; }
body.tklm-active .tklm-search-item:hover { border-color: var(--tklm-accent); }
body.tklm-active .tklm-search-item img { width: 70px; height: 70px; object-fit: cover; }
body.tklm-active .tklm-search-item-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
body.tklm-active .tklm-search-item-text strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
body.tklm-active .tklm-search-item-text span { color: #777; }
body.tklm-active .tklm-search-loading,
body.tklm-active .tklm-search-empty { grid-column: 1 / -1; padding: 18px; text-align: center; color: #777; }

@media (max-width: 849px) {
	body.tklm-active .tklm-auth { margin: 25px auto 45px; }
	body.tklm-active .tklm-auth-card { margin-top: 30px; padding: 40px 24px; }
	body.tklm-active .tklm-auth h1,
	body.tklm-active .tklm-account-title h1,
	body.tklm-active .tklm-commerce-heading h1,
	body.tklm-active .tklm-logout-screen h1 { font-size: 34px; }
	body.tklm-active .tklm-field-grid { grid-template-columns: 1fr; gap: 0; }
	body.tklm-active .tklm-send-code { flex-basis: 105px; }
	body.tklm-active.tklm-account-page.tklm-account-authenticated #main .woocommerce { grid-template-columns: 1fr; gap: 25px; }
	body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation { overflow-x: auto; border-top-width: 2px; }
	body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation ul { display: flex; min-width: max-content; padding: 0; }
	body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation a { padding: 13px 16px; }
	body.tklm-active.tklm-account-page #main .tklm-account-title { margin-bottom: 5px; }
	body.tklm-active.tklm-account-page #main .tklm-dashboard-links { grid-template-columns: 1fr; }
	body.tklm-active .products .tklm-product-card .tklm-card-heart,
	body.tklm-active .products .tklm-product-card .tklm-card-cart { width: 42px; height: 42px; opacity: 1; }
	body.tklm-active .products .tklm-product-card .name { font-size: 14px; }
	body.tklm-active .products .tklm-product-card .price { font-size: 17px; }
	body.tklm-active .tklm-mini-cart-shell { max-width: 100%; padding: 18px; }
	body.tklm-active.tklm-cart-page #main table.shop_table tr.cart_item { display: grid; grid-template-columns: 90px minmax(0, 1fr) 36px; position: relative; padding: 18px 0; }
	body.tklm-active.tklm-cart-page #main table.shop_table tr.cart_item td { display: block; width: auto; padding: 4px 8px; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-thumbnail { grid-column: 1; grid-row: 1 / span 3; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-thumbnail img { width: 80px !important; height: 80px !important; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-name { grid-column: 2; grid-row: 1; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-name a { font-size: 15px; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-quantity { grid-column: 2; grid-row: 2; text-align: left; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-subtotal { grid-column: 2; grid-row: 3; font-size: 17px; text-align: left; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-remove { grid-column: 3; grid-row: 1 / span 3; align-self: center; }
	body.tklm-active.tklm-cart-page #main table.shop_table td.product-price { display: none; }
	body.tklm-active.tklm-checkout-page #main form.checkout { display: block; padding: 10px; }
	body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-1,
	body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-2,
	body.tklm-active.tklm-checkout-page #main form.checkout #payment { padding: 20px; }
	body.tklm-active.tklm-checkout-page #main form.checkout #order_review_heading { margin-top: 20px; padding: 20px 20px 12px; }
	body.tklm-active.tklm-checkout-page #main form.checkout #order_review { padding: 0 20px 20px; }
	body.tklm-active .tklm-search-panel { padding: 85px 18px 25px; }
	body.tklm-active .tklm-search-panel form { gap: 8px; }
	body.tklm-active .tklm-search-field { height: 58px; }
	body.tklm-active .tklm-search-submit { flex: 0 0 64px; font-size: 0; }
	body.tklm-active .tklm-search-submit::after { content: '\203A'; font-size: 28px; }
	body.tklm-active .tklm-search-results { grid-template-columns: 1fr; }
	body.tklm-active .tklm-mobile-filter-panel { left: 15px; width: calc(100% - 30px); }
}

@media (max-width: 480px) {
	body.tklm-active .tklm-auth-card { padding: 30px 18px; }
	body.tklm-active .tklm-auth-links { gap: 15px; font-size: 14px; }
	body.tklm-active .tklm-register-form,
	body.tklm-active .tklm-lost-password form { margin-top: 30px; }
	body.tklm-active .products .tklm-product-card .box-text { padding-right: 3px; padding-left: 3px; }
	body.tklm-active .products .tklm-product-card .tklm-badges { top: 5px; left: 5px; }
	body.tklm-active .products .tklm-product-card .tklm-badge { font-size: 11px; }
	body.tklm-active .products .tklm-product-card .tklm-card-heart,
	body.tklm-active .products .tklm-product-card .tklm-card-cart { bottom: 8px; width: 37px; height: 37px; }
	body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons { grid-template-columns: 1fr; }
	body.tklm-active .tklm-search-field > .tklm-icon { margin: 0 10px; }
	body.tklm-active .tklm-search-field input { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	body.tklm-active .tklm-toast,
	body.tklm-active .tklm-account-dropdown,
	body.tklm-active .tklm-wishlist-button,
	body.tklm-active .tklm-card-cart { transition: none !important; }
}

/* 1.2.1 compatibility hardening for Flatsome/WooCommerce. */
body.tklm-active .tklm-auth *,
body.tklm-active .tklm-account-menu *,
body.tklm-active .tklm-mini-cart-shell *,
body.tklm-active .tklm-filters *,
body.tklm-active .tklm-search-overlay *,
body.tklm-active .tklm-commerce-heading *,
body.tklm-active.tklm-cart-page #main .woocommerce *,
body.tklm-active.tklm-checkout-page #main .woocommerce *,
body.tklm-active.tklm-account-page #main .woocommerce * {
	box-sizing: border-box;
}

/* Flatsome applies uppercase/line-height rules to generic buttons; normalize only plugin controls. */
body.tklm-active .tklm-button,
body.tklm-active .tklm-send-code,
body.tklm-active .tklm-filter-submit,
body.tklm-active .tklm-mobile-filter-open,
body.tklm-active .tklm-mobile-filter-close,
body.tklm-active .tklm-search-submit,
body.tklm-active .tklm-search-clear,
body.tklm-active .tklm-search-close,
body.tklm-active .tklm-qty-button {
	box-shadow: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
}

/* Prevent theme float/width rules from breaking the checkout grid. */
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details,
body.tklm-active.tklm-checkout-page #main form.checkout #order_review,
body.tklm-active.tklm-checkout-page #main form.checkout #order_review_heading {
	float: none;
	max-width: none;
}

/* Prevent long product/account text from forcing grid overflow on narrow screens. */
body.tklm-active .tklm-mini-cart-shell,
body.tklm-active .tklm-mini-cart-shell *,
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-content,
body.tklm-active.tklm-cart-page #main td.product-name,
body.tklm-active.tklm-checkout-page #main form.checkout {
	min-width: 0;
}


/* ==========================================================================
   1.2.2 Laneige-inspired commerce layout normalization
   Targets the exact problem areas reported on Lux Mom: checkout frame, cart,
   product cards, mini cart, filters and My Account. Rules are intentionally
   scoped and stronger than Flatsome's utility classes.
   ========================================================================== */

body.tklm-active .tklm-commerce-heading {
  width: min(calc(100% - 40px), var(--tklm-content-width, 1400px));
  margin: 38px auto 48px;
}
body.tklm-active .tklm-commerce-heading h1 {
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

/* Product cards ----------------------------------------------------------- */
body.tklm-active .products .tklm-product-card,
body.tklm-active .products .tklm-product-card .product-small,
body.tklm-active .products .tklm-product-card .box {
  min-width: 0;
}
body.tklm-active .products .tklm-product-card .box-image {
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
  overflow: hidden !important;
}
body.tklm-active .products .tklm-product-card .box-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
body.tklm-active .products .tklm-product-card .box-text {
  padding: 17px 0 6px !important;
  text-align: left !important;
}
body.tklm-active .products .tklm-product-card .category,
body.tklm-active .products .tklm-product-card .product-cat {
  display: block;
  margin-bottom: 7px;
  color: #777;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .03em;
  text-transform: uppercase;
}
body.tklm-active .products .tklm-product-card .name,
body.tklm-active .products .tklm-product-card .name a,
body.tklm-active .products .tklm-product-card .woocommerce-loop-product__title {
  min-height: 0 !important;
  margin: 0 !important;
  color: #111 !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
body.tklm-active .products .tklm-product-card .price {
  display: flex !important;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-top: 10px !important;
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.25;
}
body.tklm-active .products .tklm-product-card .price del {
  order: -1;
  margin: 0;
  color: #777 !important;
  font-size: 14px !important;
  font-weight: 400;
  opacity: 1;
}
body.tklm-active .products .tklm-product-card .star-rating {
  margin: 10px 0 0 !important;
}
body.tklm-active .products .tklm-product-card .tklm-badges {
  top: 13px !important;
  right: 13px !important;
  left: auto !important;
  align-items: flex-end !important;
}
body.tklm-active .products .tklm-product-card .tklm-badge {
  padding: 2px 0 !important;
  color: #111 !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 500;
}
body.tklm-active .products .tklm-product-card .tklm-badge-best {
  color: #fff !important;
  padding: 4px 8px !important;
  background: #111 !important;
}
/* Flatsome's .button/.add_to_cart_button rules were expanding this icon into
   the large green rectangle shown in the supplied screenshot. */
body.tklm-active .products .tklm-product-card .tklm-card-cart,
body.tklm-active .products .tklm-product-card .tklm-card-heart,
body.tklm-active .products .tklm-product-card a.tklm-card-cart.button,
body.tklm-active .products .tklm-product-card a.tklm-card-cart.add_to_cart_button {
  position: absolute !important;
  bottom: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(42,42,42,.62) !important;
  box-shadow: none !important;
  line-height: 1 !important;
}
body.tklm-active .products .tklm-product-card .tklm-card-cart {
  right: calc(50% + 7px) !important;
  left: auto !important;
  transform: none !important;
}
body.tklm-active .products .tklm-product-card .tklm-card-heart {
  right: auto !important;
  left: calc(50% + 7px) !important;
  transform: none !important;
}
body.tklm-active .products .tklm-product-card .tklm-card-cart:hover,
body.tklm-active .products .tklm-product-card .tklm-card-heart:hover,
body.tklm-active .products .tklm-product-card .tklm-card-heart.is-active {
  background: var(--tklm-accent) !important;
}

/* Mini cart --------------------------------------------------------------- */
body.tklm-active .tklm-mini-cart-shell {
  width: min(var(--tklm-mini-cart-width, 430px), 100%) !important;
  max-width: 100% !important;
  padding: 24px 26px 26px !important;
  overflow: visible !important;
}
body.tklm-active.tklm-theme-flatsome .cart-popup-inner .tklm-mini-cart-shell,
body.tklm-active.tklm-theme-flatsome .widget_shopping_cart .tklm-mini-cart-shell,
body.tklm-active.tklm-theme-flatsome .off-canvas-cart .tklm-mini-cart-shell {
  min-width: 0 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-cart-head {
  margin: 0 0 4px !important;
  padding: 0 0 18px !important;
  font-size: 25px !important;
  font-weight: 600;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 28px !important;
  grid-template-rows: auto auto !important;
  gap: 8px 10px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid #e2e2e2 !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item > a:not(.remove) {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: grid !important;
  grid-template-columns: 90px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 15px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item img {
  grid-column: 1 !important;
  float: none !important;
  width: 90px !important;
  height: 90px !important;
  max-width: 90px !important;
  margin: 0 !important;
  object-fit: cover !important;
}
body.tklm-active .tklm-mini-cart-shell .remove,
body.tklm-active .tklm-mini-cart-shell a.remove {
  position: static !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #bbb !important;
  border-radius: 50% !important;
  color: #999 !important;
  background: transparent !important;
  font-size: 20px !important;
  line-height: 1 !important;
  transform: none !important;
}
body.tklm-active .tklm-mini-cart-shell .quantity.tklm-mini-meta,
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item > .quantity {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 0 38px 0 105px !important;
  color: #888 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-qty b { color: #555; font-weight: 500; }
body.tklm-active .tklm-mini-cart-shell .tklm-mini-price {
  color: #111 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__total {
  padding: 20px 0 !important;
  font-size: 16px !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__total strong,
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-size: 18px !important;
  font-weight: 600 !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin: 22px 0 0 !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons .button {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border-radius: 0 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

/* Cart ------------------------------------------------------------------- */
body.tklm-active.tklm-cart-page #main .woocommerce {
  width: min(calc(100% - 40px), var(--tklm-content-width, 1400px)) !important;
  max-width: none !important;
}
@media (min-width: 850px) {
  body.tklm-active.tklm-theme-flatsome.tklm-cart-page #main .woocommerce > .row,
  body.tklm-active.tklm-theme-flatsome.tklm-cart-page #main .woocommerce.row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.72fr) minmax(340px, 1fr) !important;
    gap: 46px !important;
    margin: 0 !important;
  }
  body.tklm-active.tklm-theme-flatsome.tklm-cart-page #main .woocommerce > .row > .col.large-7,
  body.tklm-active.tklm-theme-flatsome.tklm-cart-page #main .woocommerce > .row > .cart-collaterals.large-5,
  body.tklm-active.tklm-theme-flatsome.tklm-cart-page #main .woocommerce.row > .col.large-7,
  body.tklm-active.tklm-theme-flatsome.tklm-cart-page #main .woocommerce.row > .cart-collaterals.large-5 {
    width: auto !important;
    max-width: none !important;
    flex-basis: auto !important;
    padding: 0 !important;
  }
}
body.tklm-active.tklm-cart-page #main .woocommerce-cart-form,
body.tklm-active.tklm-cart-page #main .cart-collaterals { min-width: 0 !important; }
body.tklm-active.tklm-cart-page #main table.shop_table { table-layout: auto !important; }
body.tklm-active.tklm-cart-page #main table.shop_table tr.cart_item td {
  padding: 25px 8px !important;
}
body.tklm-active.tklm-cart-page #main table.shop_table td.product-thumbnail {
  width: calc(var(--tklm-cart-thumb-size, 120px) + 18px) !important;
  min-width: calc(var(--tklm-cart-thumb-size, 120px) + 18px) !important;
}
body.tklm-active.tklm-cart-page #main table.shop_table td.product-name {
  width: auto !important;
  min-width: 210px !important;
  padding-right: 18px !important;
}
body.tklm-active.tklm-cart-page #main table.shop_table td.product-name a {
  display: block !important;
  max-width: 360px;
  font-size: 17px !important;
  line-height: 1.45 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
body.tklm-active.tklm-cart-page #main table.shop_table td.product-quantity {
  width: 145px !important;
  min-width: 145px !important;
}
body.tklm-active.tklm-cart-page #main table.shop_table td.product-subtotal {
  width: 155px !important;
  min-width: 155px !important;
  font-size: 18px !important;
  white-space: nowrap !important;
}
body.tklm-active.tklm-cart-page #main table.shop_table td.product-remove {
  width: 34px !important;
  min-width: 34px !important;
}
body.tklm-active.tklm-cart-page #main .quantity {
  height: 46px !important;
  background: #fff;
}
body.tklm-active.tklm-cart-page #main .quantity input.qty,
body.tklm-active.tklm-cart-page #main .tklm-qty-button {
  height: 44px !important;
}
body.tklm-active.tklm-cart-page #main .cart-collaterals {
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
body.tklm-active.tklm-cart-page #main .cart-sidebar,
body.tklm-active.tklm-cart-page #main .cart_totals {
  padding: 30px 34px !important;
  background: #f7f7f7 !important;
}
body.tklm-active.tklm-cart-page #main .cart_totals h2 {
  margin: 0 0 15px !important;
  padding: 0 0 15px !important;
  font-size: 20px !important;
  letter-spacing: .02em;
  text-transform: uppercase;
}
body.tklm-active.tklm-cart-page #main .cart_totals table th,
body.tklm-active.tklm-cart-page #main .cart_totals table td {
  padding: 12px 0 !important;
  border-bottom: 1px solid #e2e2e2 !important;
}
body.tklm-active.tklm-cart-page #main .checkout-button {
  width: 100% !important;
  max-width: none !important;
  min-height: 62px !important;
  margin: 28px 0 0 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
}

/* Checkout --------------------------------------------------------------- */
body.tklm-active.tklm-checkout-page #main .woocommerce {
  width: min(calc(100% - 40px), var(--tklm-content-width, 1400px)) !important;
  max-width: none !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 26px !important;
  background: #f1f1f1 !important;
}
/* Standard WooCommerce template. */
body.tklm-active.tklm-checkout-page #main form.checkout:not(:has(> .row)) {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(390px, .95fr) !important;
  gap: 26px !important;
}
/* Flatsome wraps checkout columns in a .row; neutralize its large-7/large-5
   percentage widths so the order panel cannot collapse into a 180px column. */
@media (min-width: 850px) {
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.5fr) minmax(400px, .95fr) !important;
    gap: 26px !important;
    width: 100% !important;
    margin: 0 !important;
  }
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .col,
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > [class*="large-"] {
    width: auto !important;
    max-width: none !important;
    flex-basis: auto !important;
    padding: 0 !important;
  }
}
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details,
body.tklm-active.tklm-checkout-page #main form.checkout #order_review,
body.tklm-active.tklm-checkout-page #main form.checkout .tklm-order-panel,
body.tklm-active.tklm-checkout-page #main form.checkout #payment {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-1,
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-2 {
  width: 100% !important;
  max-width: none !important;
  padding: 28px 30px !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout .tklm-order-panel {
  align-self: start;
  padding: 0 !important;
  border: 1px solid var(--tklm-accent);
  background: #fff;
}
body.tklm-active.tklm-checkout-page #main form.checkout .tklm-order-panel #order_review_heading,
body.tklm-active.tklm-checkout-page #main form.checkout #order_review_heading {
  width: 100% !important;
  margin: 0 !important;
  padding: 25px 28px 14px !important;
  background: #fff !important;
  font-size: 19px !important;
  line-height: 1.3 !important;
  text-transform: uppercase;
}
body.tklm-active.tklm-checkout-page #main form.checkout .tklm-order-panel #order_review,
body.tklm-active.tklm-checkout-page #main form.checkout #order_review {
  margin: 0 !important;
  padding: 0 28px 28px !important;
  background: #fff !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #order_review table {
  width: 100% !important;
  table-layout: auto !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #order_review th,
body.tklm-active.tklm-checkout-page #main form.checkout #order_review td {
  padding: 10px 0 !important;
  vertical-align: top !important;
  line-height: 1.35 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #order_review .product-name {
  width: 68% !important;
  padding-right: 15px !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #order_review .product-total {
  width: 32% !important;
  text-align: right !important;
  white-space: nowrap !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #payment {
  margin: 0 !important;
  padding: 20px 28px 28px !important;
  background: #fff !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #payment,
body.tklm-active.tklm-checkout-page #main form.checkout #payment p,
body.tklm-active.tklm-checkout-page #main form.checkout #payment li {
  line-height: 1.55 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #place_order {
  min-height: 58px !important;
  padding: 0 22px !important;
  font-size: 16px !important;
  white-space: normal !important;
}

/* Filters ---------------------------------------------------------------- */
body.tklm-active.tklm-shop-page .tklm-filters {
  width: 100%;
  max-width: var(--tklm-content-width, 1400px);
  margin: 18px auto 26px !important;
  padding: 22px 0 8px !important;
  border-top: 1px solid #e1e1e1 !important;
}
body.tklm-active .tklm-filter-desktop {
  align-items: flex-end !important;
  gap: 26px 34px !important;
}
body.tklm-active .tklm-filter-group {
  flex: 0 1 245px;
  min-width: 210px !important;
}
body.tklm-active .tklm-filter-group > label {
  margin: 0 0 9px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: .02em;
}
body.tklm-active .tklm-select-wrap select {
  height: 42px !important;
  padding: 0 32px 0 0 !important;
  font-size: 15px !important;
}
/* Filter selection already auto-submits on change; Laneige-style desktop
   filtering does not need a second large Apply button. Keep it accessible to
   keyboard/no-JS users by making it compact rather than visually dominant. */
body.tklm-active .tklm-filter-submit {
  height: 42px !important;
  min-width: 96px;
  padding: 0 18px !important;
  font-size: 14px !important;
}
body.tklm-active.tklm-shop-page .shop-container,
body.tklm-active.tklm-shop-page .products {
  margin-top: 0 !important;
}

/* My Account ------------------------------------------------------------- */
body.tklm-active.tklm-account-page.tklm-account-authenticated #main .woocommerce {
  width: min(calc(100% - 40px), var(--tklm-content-width, 1400px)) !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: minmax(240px, var(--tklm-account-nav-width, 280px)) minmax(0, 1fr) !important;
  gap: 0 58px !important;
  align-items: start !important;
}
body.tklm-active.tklm-account-page #main .tklm-account-title {
  grid-column: 1 / -1 !important;
  margin: 35px 0 45px !important;
}
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation,
body.tklm-active.tklm-account-page #main #my-account-nav,
body.tklm-active.tklm-account-page #main .account-nav {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation ul,
body.tklm-active.tklm-account-page #main #my-account-nav ul,
body.tklm-active.tklm-account-page #main .account-nav ul,
body.tklm-active.tklm-account-page #main .account-nav-inner ul {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 2px solid #222 !important;
  list-style: none !important;
}
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation li,
body.tklm-active.tklm-account-page #main #my-account-nav li,
body.tklm-active.tklm-account-page #main .account-nav li {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #e2e2e2 !important;
}
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation a,
body.tklm-active.tklm-account-page #main #my-account-nav li > a,
body.tklm-active.tklm-account-page #main .account-nav li > a {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 15px 12px !important;
  color: #333 !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: normal !important;
  text-transform: none !important;
}
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation .is-active > a,
body.tklm-active.tklm-account-page #main #my-account-nav .active > a,
body.tklm-active.tklm-account-page #main #my-account-nav .is-active > a,
body.tklm-active.tklm-account-page #main .account-nav .active > a {
  color: var(--tklm-accent) !important;
  font-weight: 600 !important;
  background: #f8f8f8 !important;
}
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-content {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0 !important;
}
body.tklm-active.tklm-account-page #main .tklm-dashboard-welcome {
  max-width: 780px;
}
body.tklm-active.tklm-account-page #main .tklm-dashboard-welcome h2 {
  margin: 0 0 18px !important;
  padding: 0 !important;
  font-size: 27px !important;
  line-height: 1.25 !important;
}
body.tklm-active.tklm-account-page #main .tklm-dashboard-links {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  max-width: 680px;
  margin-top: 26px !important;
}
body.tklm-active.tklm-account-page #main .tklm-dashboard-links a {
  min-height: 132px;
  padding: 24px !important;
  justify-content: center;
  background: #fff;
}

@media (max-width: 849px) {
  body.tklm-active .tklm-commerce-heading {
    width: calc(100% - 30px);
    margin: 26px auto 30px;
  }
  body.tklm-active .tklm-commerce-heading h1 { font-size: 34px !important; }
  body.tklm-active .products .tklm-product-card .box-text { text-align: left !important; }
  body.tklm-active .products .tklm-product-card .name,
  body.tklm-active .products .tklm-product-card .name a { font-size: 14px !important; }
  body.tklm-active .products .tklm-product-card .tklm-card-cart,
  body.tklm-active .products .tklm-product-card .tklm-card-heart,
  body.tklm-active .products .tklm-product-card a.tklm-card-cart.button {
    width: 42px !important; min-width: 42px !important; max-width: 42px !important;
    height: 42px !important; min-height: 42px !important;
  }
  body.tklm-active .tklm-mini-cart-shell { padding: 20px !important; }
  body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item > a:not(.remove) {
    grid-template-columns: 76px minmax(0,1fr) !important;
    gap: 12px !important;
    font-size: 14px !important;
  }
  body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item img {
    width: 76px !important; height: 76px !important; max-width: 76px !important;
  }
  body.tklm-active .tklm-mini-cart-shell .quantity.tklm-mini-meta,
  body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item > .quantity {
    margin-left: 88px !important;
    margin-right: 0 !important;
  }
  body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr 1fr !important;
  }
  body.tklm-active.tklm-cart-page #main .woocommerce,
  body.tklm-active.tklm-checkout-page #main .woocommerce,
  body.tklm-active.tklm-account-page.tklm-account-authenticated #main .woocommerce {
    width: calc(100% - 30px) !important;
  }
  body.tklm-active.tklm-cart-page #main .cart-sidebar,
  body.tklm-active.tklm-cart-page #main .cart_totals { padding: 24px 20px !important; }
  body.tklm-active.tklm-checkout-page #main form.checkout {
    display: block !important;
    padding: 12px !important;
  }
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row {
    display: block !important;
    margin: 0 !important;
  }
  body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-1,
  body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-2,
  body.tklm-active.tklm-checkout-page #main form.checkout #order_review_heading,
  body.tklm-active.tklm-checkout-page #main form.checkout #order_review,
  body.tklm-active.tklm-checkout-page #main form.checkout #payment {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }
  body.tklm-active.tklm-checkout-page #main form.checkout .tklm-order-panel {
    margin-top: 18px !important;
  }
  body.tklm-active.tklm-account-page.tklm-account-authenticated #main .woocommerce {
    display: block !important;
  }
  body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation,
  body.tklm-active.tklm-account-page #main #my-account-nav,
  body.tklm-active.tklm-account-page #main .account-nav {
    margin-bottom: 28px !important;
    overflow-x: auto;
  }
  body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation ul,
  body.tklm-active.tklm-account-page #main #my-account-nav ul,
  body.tklm-active.tklm-account-page #main .account-nav ul,
  body.tklm-active.tklm-account-page #main .account-nav-inner ul {
    display: flex !important;
    width: max-content !important;
    min-width: 100% !important;
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
  }
  body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation li,
  body.tklm-active.tklm-account-page #main #my-account-nav li,
  body.tklm-active.tklm-account-page #main .account-nav li {
    width: auto !important;
    border-bottom: 0 !important;
  }
  body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-navigation a,
  body.tklm-active.tklm-account-page #main #my-account-nav li > a,
  body.tklm-active.tklm-account-page #main .account-nav li > a {
    width: auto !important;
    padding: 13px 15px !important;
    white-space: nowrap !important;
  }
  body.tklm-active.tklm-account-page #main .woocommerce-MyAccount-content {
    width: 100% !important;
  }
  body.tklm-active.tklm-account-page #main .tklm-dashboard-links {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons .button {
    min-height: 50px !important;
    padding: 0 8px !important;
    font-size: 13px !important;
  }
  body.tklm-active.tklm-cart-page #main table.shop_table td.product-name { min-width: 0 !important; }
}

/* 1.2.2 hotfix: Flatsome legacy/current structure guards ----------------- */
/* Flatsome's checkout template wraps the 7/5 columns inside one .row. The
   older generic rule made the FORM itself a two-column grid, shrinking that
   entire .row into column one and leaving a large blank area on the right. */
@media (min-width: 850px) {
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .large-7 {
    min-width: 0 !important;
  }
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .large-5 {
    min-width: 400px !important;
  }
}
body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .large-7 > #customer_details {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 28px 30px !important;
  background: #fff !important;
}
body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .large-5 > .col-inner,
body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout .checkout-sidebar {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}
body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .large-5 > .col-inner {
  padding: 0 !important;
  border: 1px solid var(--tklm-accent) !important;
  background: #fff !important;
}
body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout .checkout-sidebar > #order_review_heading {
  margin: 0 !important;
  padding: 25px 28px 14px !important;
  font-size: 19px !important;
  line-height: 1.3 !important;
}
body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout .checkout-sidebar > #order_review {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 28px 28px !important;
}

/* Flatsome intentionally ships an empty account navigation template in some
   releases and replaces it with dashboard tiles. The plugin now renders its
   own real navigation; suppress any theme-generated duplicate if present. */
body.tklm-active.tklm-theme-flatsome.tklm-account-page #main .woocommerce-MyAccount-navigation:not(.tklm-account-navigation) {
  display: none !important;
}
body.tklm-active.tklm-account-dashboard #main .woocommerce-MyAccount-content > p {
  display: none !important;
}

/* Keep commerce titles editorial rather than oversized display text. */
body.tklm-active .tklm-commerce-heading h1 {
  font-size: clamp(34px, 3.6vw, 54px) !important;
  letter-spacing: -.025em !important;
}

@media (max-width: 849px) {
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .large-7 > #customer_details {
    padding: 20px 18px !important;
  }
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout > .row > .large-5 {
    min-width: 0 !important;
  }
  body.tklm-active .tklm-commerce-heading h1 {
    font-size: 32px !important;
  }
}


/* ========================================================================== 
   1.2.3 shortcode/UX Builder hardening
   ========================================================================== */

/* Product card actions must work both in archive .products and UX Builder
   product elements, where .products is not always an ancestor. */
body.tklm-active .tklm-product-card { position: relative !important; min-width: 0 !important; }
body.tklm-active .tklm-product-card .box-image { position: relative !important; overflow: hidden !important; }
body.tklm-active .tklm-product-card .tklm-badges { position: absolute !important; z-index: 7 !important; }
body.tklm-active .tklm-product-card .tklm-card-cart,
body.tklm-active .tklm-product-card .tklm-card-heart,
body.tklm-active .tklm-product-card a.tklm-card-cart.button,
body.tklm-active .tklm-product-card a.tklm-card-cart.add_to_cart_button,
body.tklm-active .tklm-product-card button.tklm-card-heart {
  position: absolute !important;
  z-index: 12 !important;
  bottom: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(42,42,42,.68) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  line-height: 1 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  opacity: 0;
  visibility: hidden;
  transition: background-color .2s ease, opacity .2s ease, transform .2s ease !important;
  pointer-events: auto !important;
}
body.tklm-active .tklm-product-card .tklm-card-cart { right: calc(50% + 7px) !important; left: auto !important; transform: none !important; }
body.tklm-active .tklm-product-card .tklm-card-heart { left: calc(50% + 7px) !important; right: auto !important; transform: none !important; }
body.tklm-active .tklm-product-card:hover .tklm-card-cart,
body.tklm-active .tklm-product-card:hover .tklm-card-heart,
body.tklm-active .tklm-product-card .tklm-card-heart.is-active {
  opacity: 1 !important;
  visibility: visible !important;
}
body.tklm-active .tklm-product-card .tklm-card-cart:hover,
body.tklm-active .tklm-product-card .tklm-card-heart:hover,
body.tklm-active .tklm-product-card .tklm-card-heart.is-active {
  color: #fff !important;
  background: var(--tklm-accent) !important;
}
/* If only one action exists, keep it truly centered. */
body.tklm-active .tklm-product-card .box-image:not(:has(.tklm-card-cart)) .tklm-card-heart,
body.tklm-active .tklm-product-card .image-tools:not(:has(.tklm-card-cart)) .tklm-card-heart {
  left: 50% !important; right: auto !important; transform: translateX(-50%) !important;
}
body.tklm-active .tklm-product-card .box-image:not(:has(.tklm-card-heart)) .tklm-card-cart,
body.tklm-active .tklm-product-card .image-tools:not(:has(.tklm-card-heart)) .tklm-card-cart {
  left: 50% !important; right: auto !important; transform: translateX(-50%) !important;
}
/* After AJAX add-to-cart the same action becomes an explicit View Cart CTA. */
body.tklm-active .tklm-product-card .tklm-card-cart.is-view-cart {
  left: 50% !important;
  right: auto !important;
  width: auto !important;
  min-width: 138px !important;
  max-width: calc(100% - 90px) !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: 0 16px !important;
  border-radius: 0 !important;
  color: #fff !important;
  background: #292929 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: translateX(-50%) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
body.tklm-active .tklm-product-card .tklm-card-cart.is-view-cart:hover { background: var(--tklm-accent) !important; }
body.tklm-active .tklm-product-card:has(.tklm-card-cart.is-view-cart) .tklm-card-heart {
  left: auto !important; right: 14px !important; transform: none !important;
}
body.tklm-active .tklm-product-card .added_to_cart.wc-forward { display: none !important; }

/* Mini cart width setting also controls Flatsome's parent dropdown, not only
   the inner widget. This allows widths such as 680/800px on desktop. */
body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown,
body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown .widget_shopping_cart,
body.tklm-active.tklm-theme-flatsome .cart-popup-inner,
body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart {
  width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
  max-width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
}
body.tklm-active .tklm-mini-cart-shell {
  width: 100% !important;
  max-width: none !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart-item > a:not(.remove) {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
}
body.tklm-active .tklm-mini-cart-shell .woocommerce-mini-cart__buttons .button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  white-space: normal !important;
}

/* Cart shortcode: use a deterministic grid for the product row so price text
   can never be clipped by Flatsome's legacy table widths. */
body.tklm-active.tklm-cart-page #main .page-wrapper > .container,
body.tklm-active.tklm-cart-page #main .container,
body.tklm-active.tklm-checkout-page #main .page-wrapper > .container,
body.tklm-active.tklm-checkout-page #main .container {
  max-width: var(--tklm-content-width, 1400px) !important;
}
@media (min-width: 850px) {
  body.tklm-active.tklm-cart-page #main .woocommerce > .row,
  body.tklm-active.tklm-cart-page #main .woocommerce.row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px) !important;
    gap: 52px !important;
    align-items: start !important;
  }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form table.shop_table,
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form table.shop_table tbody {
    display: block !important;
    width: 100% !important;
  }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form tr.cart_item {
    display: grid !important;
    grid-template-columns: 36px var(--tklm-cart-thumb-size, 120px) minmax(210px, 1fr) 176px 170px !important;
    column-gap: 18px !important;
    align-items: center !important;
    width: 100% !important;
    padding: 24px 0 !important;
    border-bottom: 1px solid #ddd !important;
  }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form tr.cart_item > td {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
  }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form td.product-price { display: none !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form td.product-remove { grid-column: 1 !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form td.product-thumbnail { grid-column: 2 !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form td.product-name { grid-column: 3 !important; padding-right: 8px !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form td.product-quantity { grid-column: 4 !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form td.product-subtotal {
    grid-column: 5 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: visible !important;
    font-size: 18px !important;
    font-weight: 600 !important;
  }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form tr:not(.cart_item) { display: block !important; width: 100% !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form tr:not(.cart_item) > td.actions { display: block !important; width: 100% !important; padding: 26px 0 0 !important; }
}
body.tklm-active.tklm-cart-page #main .woocommerce-cart-form td.product-name a {
  max-width: none !important;
  overflow-wrap: anywhere !important;
}
body.tklm-active.tklm-cart-page #main .woocommerce-cart-form .quantity {
  display: grid !important;
  grid-template-columns: 44px minmax(48px, 1fr) 44px !important;
  width: 176px !important;
  max-width: 100% !important;
  height: 46px !important;
  margin: 0 !important;
  border: 1px solid #ddd !important;
}
body.tklm-active.tklm-cart-page #main .woocommerce-cart-form .quantity input.qty,
body.tklm-active.tklm-cart-page #main .woocommerce-cart-form .quantity .tklm-qty-button,
body.tklm-active.tklm-cart-page #main .woocommerce-cart-form .quantity .button {
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body.tklm-active.tklm-cart-page #main .woocommerce-cart-form .quantity input.qty { border-right: 1px solid #eee !important; border-left: 1px solid #eee !important; }
body.tklm-active.tklm-cart-page #main .cart_totals .checkout-button,
body.tklm-active.tklm-cart-page #main a.checkout-button.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 60px !important;
  margin: 28px 0 0 !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff !important;
  background: #292929 !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
body.tklm-active.tklm-cart-page #main .cart_totals .checkout-button:hover { background: var(--tklm-accent) !important; }

/* Checkout shortcode: native WooCommerce and Flatsome get separate, valid
   layouts. No PHP wrapper is injected across theme columns. */
body.tklm-active.tklm-checkout-page #main form.checkout {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 26px !important;
  background: #f2f2f2 !important;
}
@media (min-width: 850px) {
  body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-standard {
    display: grid !important;
    grid-template-columns: minmax(0, 1.6fr) minmax(380px, .95fr) !important;
    gap: 26px !important;
    align-items: start !important;
  }
  body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-standard > #customer_details { grid-column: 1 !important; }
  body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-standard > .tklm-checkout-summary { grid-column: 2 !important; }
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout.tklm-checkout-flatsome > .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.6fr) minmax(380px, .95fr) !important;
    gap: 26px !important;
    width: 100% !important;
    margin: 0 !important;
  }
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout.tklm-checkout-flatsome > .row > .col,
  body.tklm-active.tklm-theme-flatsome.tklm-checkout-page #main form.checkout.tklm-checkout-flatsome > .row > [class*="large-"] {
    width: auto !important;
    max-width: none !important;
    flex-basis: auto !important;
    padding: 0 !important;
  }
}
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details,
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-1,
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-2 {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-1,
body.tklm-active.tklm-checkout-page #main form.checkout #customer_details > .col-2 {
  padding: 28px 30px !important;
  background: #fff !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-summary,
body.tklm-active.tklm-checkout-page #main .checkout-sidebar,
body.tklm-active.tklm-checkout-page #main form.checkout > .row > .large-5 > .col-inner {
  align-self: start !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--tklm-accent) !important;
  background: #fff !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-summary > #order_review_heading,
body.tklm-active.tklm-checkout-page #main .checkout-sidebar > #order_review_heading {
  width: 100% !important;
  margin: 0 !important;
  padding: 25px 28px 14px !important;
  font-size: 19px !important;
  line-height: 1.3 !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-summary > #order_review,
body.tklm-active.tklm-checkout-page #main .checkout-sidebar > #order_review {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 28px 28px !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout .form-row input.input-text,
body.tklm-active.tklm-checkout-page #main form.checkout .form-row select,
body.tklm-active.tklm-checkout-page #main form.checkout .select2-container .select2-selection {
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout select.tklm-vn-location-select {
  height: 48px !important;
  padding: 0 36px 0 14px !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-back-to-cart {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 48px !important;
  margin: 12px 0 !important;
  padding: 0 16px !important;
  border: 1px solid #292929 !important;
  color: #292929 !important;
  background: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-back-to-cart:hover { color: #fff !important; background: #292929 !important; }
body.tklm-active.tklm-checkout-page #main #place_order,
body.tklm-active.tklm-checkout-page #main button#place_order.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 10px 0 0 !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff !important;
  background: #111 !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
body.tklm-active.tklm-checkout-page #main #place_order:hover { background: var(--tklm-accent) !important; }

/* Desktop filters auto-submit on change, so there is no layout-breaking Apply
   button. Only the noscript fallback remains. */
body.tklm-active .tklm-filter-desktop { display: flex !important; flex-wrap: wrap !important; align-items: flex-end !important; }
body.tklm-active .tklm-filter-desktop > noscript { display: contents; }
body.tklm-active .tklm-filter-reset { align-self: flex-end !important; margin: 0 0 8px !important; }

/* Normalize only the buttons owned by these commerce components so Flatsome's
   generic .button rules cannot stretch them or force uppercase text. */
body.tklm-active .tklm-mini-cart-shell .button,
body.tklm-active.tklm-cart-page #main .woocommerce .button,
body.tklm-active.tklm-checkout-page #main .woocommerce .button,
body.tklm-active .tklm-mobile-filter .button,
body.tklm-active .tklm-filter-submit {
  box-sizing: border-box !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

@media (max-width: 849px) {
  body.tklm-active .tklm-product-card .tklm-card-cart,
  body.tklm-active .tklm-product-card .tklm-card-heart,
  body.tklm-active .tklm-product-card a.tklm-card-cart.button {
    width: 42px !important; min-width: 42px !important; max-width: 42px !important;
    height: 42px !important; min-height: 42px !important; max-height: 42px !important;
    opacity: 1 !important; visibility: visible !important;
  }
  body.tklm-active .tklm-product-card .tklm-card-cart.is-view-cart {
    width: auto !important; min-width: 124px !important; max-width: calc(100% - 70px) !important;
    height: 40px !important; min-height: 40px !important; max-height: 40px !important;
  }
  body.tklm-active.tklm-cart-page #main .woocommerce > .row,
  body.tklm-active.tklm-cart-page #main .woocommerce.row { display: block !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce-cart-form .quantity { width: 150px !important; grid-template-columns: 42px minmax(44px,1fr) 42px !important; }
  body.tklm-active.tklm-checkout-page #main form.checkout { display: block !important; padding: 12px !important; }
  body.tklm-active.tklm-checkout-page #main .tklm-checkout-summary,
  body.tklm-active.tklm-checkout-page #main .checkout-sidebar { margin-top: 18px !important; }
}

/* ========================================================================== 
   1.2.4 classic-shortcode templates — stable LuxMoom/Laneige-style layout
   ========================================================================== */

/* Filters: the desktop submit is a real button. Do not hide it in <noscript>,
   because browsers with JS enabled parse body-noscript content as text. */
body.tklm-active .tklm-filter-desktop {
  display: flex !important;
  align-items: flex-end !important;
  flex-wrap: wrap !important;
  gap: 28px 36px !important;
}
body.tklm-active .tklm-filter-desktop .tklm-filter-group {
  flex: 0 1 330px !important;
  min-width: 220px !important;
  margin: 0 !important;
}
body.tklm-active .tklm-filter-desktop .tklm-filter-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 130px !important;
  height: 56px !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 30px !important;
  border: 1px solid #292929 !important;
  border-radius: 0 !important;
  background: #292929 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}
body.tklm-active .tklm-filter-desktop .tklm-filter-submit:hover,
body.tklm-active .tklm-filter-desktop .tklm-filter-submit:focus {
  border-color: var(--tklm-accent) !important;
  background: var(--tklm-accent) !important;
  color: #fff !important;
}

/* Mini Cart template ------------------------------------------------------ */
body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown,
body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown .widget_shopping_cart,
body.tklm-active.tklm-theme-flatsome .cart-popup-inner,
body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart,
body.tklm-active.tklm-theme-flatsome .off-canvas-cart .widget_shopping_cart {
  width: min(var(--tklm-minicart-width, 430px), calc(100vw - 24px)) !important;
  max-width: min(var(--tklm-minicart-width, 430px), calc(100vw - 24px)) !important;
}
body.tklm-active .tklm-mini-cart-shell {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 28px 30px 30px !important;
  background: #fff !important;
  color: #111 !important;
  box-sizing: border-box !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-cart-head {
  margin: 0 !important;
  padding: 0 0 22px !important;
  border-bottom: 1px solid #ddd !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-cart-head strong {
  display: block !important;
  margin: 0 0 8px !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-cart-head p {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  margin: 0 !important;
  color: #777 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-cart-head p span {
  color: #111 !important;
  font-size: 20px !important;
  font-weight: 500 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) 28px !important;
  gap: 18px !important;
  align-items: start !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid #e1e1e1 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb a {
  display: block !important;
  width: 92px !important;
  height: 92px !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb img {
  display: block !important;
  float: none !important;
  width: 92px !important;
  height: 92px !important;
  max-width: none !important;
  margin: 0 !important;
  object-fit: cover !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-copy {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  min-height: 92px !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-name,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-name a {
  margin: 0 !important;
  padding: 0 !important;
  color: #111 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-variation {
  margin-top: 5px !important;
  color: #aaa !important;
  font-size: 13px !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-variation dl,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-variation p { margin: 0 !important; }
body.tklm-active .tklm-mini-cart-shell .tklm-mini-bottom {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin-top: auto !important;
  padding-top: 10px !important;
  color: #777 !important;
  font-size: 13px !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-bottom strong {
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > a.remove {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  margin: 30px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #aaa !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > a.remove:hover { color: #111 !important; }
body.tklm-active .tklm-mini-cart-shell .tklm-mini-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-buttons .button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 1px solid #292929 !important;
  border-radius: 0 !important;
  background: #292929 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-buttons .checkout {
  border-color: var(--tklm-accent) !important;
  background: var(--tklm-accent) !important;
}

/* Cart shortcode template ------------------------------------------------ */
body.tklm-active.tklm-cart-page #main .woocommerce,
body.tklm-active.tklm-cart-page #main .tklm-cart-layout {
  width: min(calc(100% - 40px), 1250px) !important;
  max-width: 1250px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
body.tklm-active.tklm-cart-page #main .woocommerce > .row,
body.tklm-active.tklm-cart-page #main .woocommerce.row { display: block !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-layout {
  display: block !important;
  margin-top: 28px !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-form,
body.tklm-active.tklm-cart-page #main .tklm-cart-summary {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-list {
  width: 100% !important;
  border-top: 2px solid #222 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-row {
  display: grid !important;
  grid-template-columns: var(--tklm-cart-thumb-size, 120px) minmax(260px, 1fr) 150px 170px 28px !important;
  gap: 22px !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 190px !important;
  padding: 30px 0 !important;
  border-bottom: 1px solid #ddd !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-thumb,
body.tklm-active.tklm-cart-page #main .tklm-cart-thumb a {
  display: block !important;
  width: var(--tklm-cart-thumb-size, 120px) !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-thumb img {
  display: block !important;
  width: var(--tklm-cart-thumb-size, 120px) !important;
  height: var(--tklm-cart-thumb-size, 120px) !important;
  max-width: none !important;
  object-fit: cover !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-info { min-width: 0 !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-name,
body.tklm-active.tklm-cart-page #main .tklm-cart-name a {
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-meta {
  margin-top: 12px !important;
  color: #aaa !important;
  font-size: 13px !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-meta dl,
body.tklm-active.tklm-cart-page #main .tklm-cart-meta p { margin: 0 !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-unit-price { display: none !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-subtotal {
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  text-align: right !important;
  white-space: nowrap !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-remove .remove {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #aaa !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-quantity .quantity {
  display: grid !important;
  grid-template-columns: 38px 48px 38px !important;
  width: 124px !important;
  height: 40px !important;
  margin: 0 auto !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-quantity .quantity input,
body.tklm-active.tklm-cart-page #main .tklm-cart-quantity .quantity button,
body.tklm-active.tklm-cart-page #main .tklm-cart-quantity .quantity a {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: none !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-quantity .quantity input.qty {
  border-right: 1px solid #eee !important;
  border-left: 1px solid #eee !important;
  text-align: center !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 28px 0 34px !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-continue,
body.tklm-active.tklm-cart-page #main .tklm-update-cart {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-continue {
  border: 1px solid var(--tklm-accent) !important;
  color: var(--tklm-accent) !important;
  background: #fff !important;
}
body.tklm-active.tklm-cart-page #main .tklm-update-cart {
  border: 1px solid #aaa !important;
  color: #fff !important;
  background: #aaa !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-summary {
  margin-top: 10px !important;
  padding: 0 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-summary-box {
  width: 100% !important;
  padding: 8px 210px !important;
  border-top: 1px solid #ddd !important;
  border-bottom: 1px solid #222 !important;
  background: #f7f7f7 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 30px !important;
  align-items: center !important;
  min-height: 58px !important;
  padding: 0 !important;
  border-bottom: 1px solid #ddd !important;
  font-size: 15px !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row:last-child { border-bottom: 0 !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row.is-muted { color: #aaa !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row strong { color: #111 !important; font-size: 17px !important; font-weight: 500 !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row.is-total span { font-weight: 700 !important; color: #111 !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row.is-total strong { font-size: 19px !important; }
body.tklm-active.tklm-cart-page #main .tklm-cart-checkout {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(410px, 100%) !important;
  min-height: 58px !important;
  margin: 54px auto 0 !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #292929 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.tklm-active.tklm-cart-page #main .tklm-cart-checkout:hover { background: var(--tklm-accent) !important; }

/* Checkout shortcode template ------------------------------------------- */
body.tklm-active.tklm-checkout-page #main .woocommerce {
  width: min(calc(100% - 40px), 1180px) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 18px !important;
  background: #eee !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-left,
body.tklm-active.tklm-checkout-page #main .tklm-checkout-right { min-width: 0 !important; }
body.tklm-active.tklm-checkout-page #main .tklm-checkout-panel,
body.tklm-active.tklm-checkout-page #main .tklm-order-summary-card {
  margin: 0 0 16px !important;
  padding: 28px 30px !important;
  border: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-panel > h2,
body.tklm-active.tklm-checkout-page #main .tklm-order-summary-card > h2,
body.tklm-active.tklm-checkout-page #main .tklm-payment-title {
  margin: 0 0 18px !important;
  padding: 0 0 18px !important;
  border-bottom: 2px solid #222 !important;
  color: #111 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.tklm-active.tklm-checkout-page #main .woocommerce-billing-fields > h3,
body.tklm-active.tklm-checkout-page #main .woocommerce-shipping-fields > h3 { display: none !important; }
body.tklm-active.tklm-checkout-page #main #customer_details,
body.tklm-active.tklm-checkout-page #main #customer_details > .col-1,
body.tklm-active.tklm-checkout-page #main #customer_details > .col-2 {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details > .col-2 { margin-top: 18px !important; }
body.tklm-active.tklm-checkout-page #main .tklm-saved-address {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  margin: 0 0 18px !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid #ddd !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-saved-address[hidden] { display: none !important; }
body.tklm-active.tklm-checkout-page #main .tklm-address-check {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 23px !important;
  height: 23px !important;
  border-radius: 3px !important;
  background: var(--tklm-accent) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-address-person { display: block !important; margin: 0 0 4px !important; font-size: 15px !important; }
body.tklm-active.tklm-checkout-page #main .tklm-address-line { margin: 0 !important; color: #555 !important; font-size: 14px !important; line-height: 1.5 !important; }
body.tklm-active.tklm-checkout-page #main .tklm-address-edit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 160px !important;
  min-height: 42px !important;
  margin: 18px auto 0 !important;
  padding: 0 20px !important;
  border: 1px solid #777 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-address-edit[hidden] { display: none !important; }
body.tklm-active.tklm-checkout-page #main .form-row { margin: 0 0 15px !important; }
body.tklm-active.tklm-checkout-page #main .form-row label {
  margin-bottom: 6px !important;
  color: #111 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
body.tklm-active.tklm-checkout-page #main .form-row input.input-text,
body.tklm-active.tklm-checkout-page #main .form-row textarea,
body.tklm-active.tklm-checkout-page #main .form-row select,
body.tklm-active.tklm-checkout-page #main .select2-container .select2-selection {
  min-height: 48px !important;
  margin: 0 !important;
  border: 1px solid #ddd !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.tklm-active.tklm-checkout-page #main .form-row textarea { min-height: 100px !important; padding: 12px !important; }
body.tklm-active.tklm-checkout-page #main .tklm-checkout-coupon-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 170px !important;
  gap: 0 !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-coupon-row input {
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 1px solid #ddd !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-coupon-row .button {
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid #ddd !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: none !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-coupon-row .button:hover { color: #fff !important; background: #292929 !important; border-color: #292929 !important; }
body.tklm-active.tklm-checkout-page #main .tklm-coupon-message { min-height: 0 !important; margin-top: 8px !important; font-size: 13px !important; }
body.tklm-active.tklm-checkout-page #main .tklm-coupon-message.is-error { color: #a00 !important; }
body.tklm-active.tklm-checkout-page #main .tklm-coupon-message.is-success { color: #2d7a35 !important; }
body.tklm-active.tklm-checkout-page #main .tklm-shipping-preview {
  display: grid !important;
  grid-template-columns: 100px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
  min-height: 54px !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-shipping-amount { color: #111 !important; font-size: 16px !important; }
body.tklm-active.tklm-checkout-page #main .tklm-shipping-copy { color: #555 !important; font-size: 14px !important; }
body.tklm-active.tklm-checkout-page #main .tklm-order-summary-card .tklm-order-count {
  margin: -10px 0 18px !important;
  color: #555 !important;
  font-size: 13px !important;
}
body.tklm-active.tklm-checkout-page #main #order_review,
body.tklm-active.tklm-checkout-page #main #order_review table,
body.tklm-active.tklm-checkout-page #main #order_review #payment {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}
body.tklm-active.tklm-checkout-page #main #order_review table {
  table-layout: fixed !important;
  margin: 0 !important;
  border: 0 !important;
}
body.tklm-active.tklm-checkout-page #main #order_review table th,
body.tklm-active.tklm-checkout-page #main #order_review table td {
  padding: 14px 0 !important;
  border-bottom: 1px solid #ddd !important;
  vertical-align: middle !important;
  font-size: 14px !important;
}
body.tklm-active.tklm-checkout-page #main #order_review table .product-name { width: 68% !important; padding-right: 14px !important; }
body.tklm-active.tklm-checkout-page #main #order_review table .product-total { width: 32% !important; text-align: right !important; white-space: nowrap !important; }
body.tklm-active.tklm-checkout-page #main .tklm-checkout-line {
  display: grid !important;
  grid-template-columns: 76px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-product-thumb,
body.tklm-active.tklm-checkout-page #main .tklm-checkout-product-thumb img {
  display: block !important;
  width: 76px !important;
  height: 76px !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-product-thumb img { object-fit: cover !important; }
body.tklm-active.tklm-checkout-page #main .tklm-checkout-product-copy {
  min-width: 0 !important;
  color: #111 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere !important;
}
body.tklm-active.tklm-checkout-page #main #payment {
  margin: 28px 0 0 !important;
  padding: 26px 0 0 !important;
  border-top: 16px solid #eee !important;
  border-radius: 0 !important;
  background: #fff !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-payment-title { margin-right: 0 !important; margin-left: 0 !important; }
body.tklm-active.tklm-checkout-page #main #payment ul.payment_methods {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  list-style: none !important;
}
body.tklm-active.tklm-checkout-page #main #payment ul.payment_methods > li {
  margin: 0 !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid #ddd !important;
}
body.tklm-active.tklm-checkout-page #main #payment .place-order { margin: 0 !important; padding: 22px 0 0 !important; }
body.tklm-active.tklm-checkout-page #main #place_order {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #292929 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.tklm-active.tklm-checkout-page #main #place_order:hover { background: var(--tklm-accent) !important; }
body.tklm-active.tklm-checkout-page #main .tklm-back-to-cart {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 44px !important;
  margin: 0 !important;
  border: 1px solid #777 !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 14px !important;
  text-decoration: none !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-invoice {
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 2px solid #222 !important;
}

@media (max-width: 849px) {
  body.tklm-active .tklm-filter-desktop { display: none !important; }
  body.tklm-active .tklm-mini-cart-shell { padding: 22px 20px !important; }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-item {
    grid-template-columns: 76px minmax(0, 1fr) 24px !important;
    gap: 12px !important;
  }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb a,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb img { width: 76px !important; height: 76px !important; }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-copy { min-height: 76px !important; }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-name,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-name a { font-size: 14px !important; }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-bottom { flex-wrap: wrap !important; }

  body.tklm-active.tklm-cart-page #main .tklm-cart-row {
    grid-template-columns: 90px minmax(0, 1fr) 24px !important;
    grid-template-areas: "thumb info remove" "thumb qty subtotal" !important;
    gap: 10px 14px !important;
    min-height: 0 !important;
    padding: 22px 0 !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb { grid-area: thumb !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-info { grid-area: info !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-quantity { grid-area: qty !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-subtotal { grid-area: subtotal !important; align-self: center !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-remove { grid-area: remove !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb,
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb a,
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb img { width: 90px !important; height: 90px !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-name,
  body.tklm-active.tklm-cart-page #main .tklm-cart-name a { font-size: 15px !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-quantity .quantity { margin: 0 !important; transform: scale(.9); transform-origin: left center; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-subtotal { font-size: 15px !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-actions { flex-direction: column !important; align-items: stretch !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-continue,
  body.tklm-active.tklm-cart-page #main .tklm-update-cart { width: 100% !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-summary-box { padding: 8px 20px !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-checkout { margin-top: 30px !important; }

  body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form { padding: 10px !important; }
  body.tklm-active.tklm-checkout-page #main .tklm-checkout-grid { grid-template-columns: 1fr !important; }
  body.tklm-active.tklm-checkout-page #main .tklm-checkout-panel,
  body.tklm-active.tklm-checkout-page #main .tklm-order-summary-card { padding: 22px 18px !important; }
  body.tklm-active.tklm-checkout-page #main .tklm-checkout-coupon-row { grid-template-columns: 1fr 120px !important; }
  body.tklm-active.tklm-checkout-page #main .tklm-checkout-line { grid-template-columns: 58px minmax(0, 1fr) !important; gap: 10px !important; }
  body.tklm-active.tklm-checkout-page #main .tklm-checkout-product-thumb,
  body.tklm-active.tklm-checkout-page #main .tklm-checkout-product-thumb img { width: 58px !important; height: 58px !important; }
}

@media (max-width: 480px) {
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-buttons { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-buttons .button { min-height: 50px !important; padding: 8px !important; font-size: 13px !important; }
  body.tklm-active.tklm-cart-page #main .woocommerce,
  body.tklm-active.tklm-cart-page #main .tklm-cart-layout,
  body.tklm-active.tklm-checkout-page #main .woocommerce { width: calc(100% - 24px) !important; }
  body.tklm-active.tklm-cart-page #main .tklm-cart-row {
    grid-template-columns: 76px minmax(0, 1fr) 22px !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb,
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb a,
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb img { width: 76px !important; height: 76px !important; }
}

/* 1.2.4 specificity guard against earlier generic checkout rules. */
body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form:not(:has(> .row)) {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form #customer_details > .col-1,
body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form #customer_details > .col-2 {
  padding: 0 !important;
  background: transparent !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form #order_review {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form #payment {
  margin: 28px 0 0 !important;
  padding: 26px 0 0 !important;
  border-top: 16px solid #eee !important;
  background: #fff !important;
}
body.tklm-active.tklm-checkout-page #main form.checkout.tklm-checkout-form #order_review_heading.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ========================================================================== 
   1.2.5 checkout fields + resilient Flatsome mini cart + mobile cart
   ========================================================================== */

/* Checkout: backend-controlled frame and field geometry. */
body.tklm-active.tklm-checkout-page #main .woocommerce {
  width: min(calc(100% - 40px), var(--tklm-checkout-width, 1180px)) !important;
  max-width: var(--tklm-checkout-width, 1180px) !important;
}
body.tklm-active.tklm-checkout-page #main .tklm-checkout-grid {
  grid-template-columns: minmax(0, var(--tklm-checkout-left, 60fr)) minmax(330px, var(--tklm-checkout-right, 40fr)) !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-billing-fields__field-wrapper,
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-shipping-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 20px !important;
  width: 100% !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row {
  display: block !important;
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row.tklm-checkout-field.tklm-field-half,
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-billing-fields__field-wrapper > .tklm-field-half,
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-shipping-fields__field-wrapper > .tklm-field-half {
  grid-column: auto !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row.tklm-checkout-field.tklm-field-full,
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-billing-fields__field-wrapper > .tklm-field-full,
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-shipping-fields__field-wrapper > .tklm-field-full {
  grid-column: 1 / -1 !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .tklm-field-hidden {
  display: none !important;
}
body.tklm-active.tklm-checkout-country-hidden #main #billing_country_field,
body.tklm-active.tklm-checkout-country-hidden #main #shipping_country_field {
  display: none !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details input.input-text,
body.tklm-active.tklm-checkout-page #main #customer_details select,
body.tklm-active.tklm-checkout-page #main #customer_details .select2-container,
body.tklm-active.tklm-checkout-page #main #customer_details .select2-selection {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details input.input-text,
body.tklm-active.tklm-checkout-page #main #customer_details select,
body.tklm-active.tklm-checkout-page #main #customer_details .select2-selection--single {
  height: var(--tklm-checkout-field-height, 48px) !important;
  min-height: var(--tklm-checkout-field-height, 48px) !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .select2-selection--single .select2-selection__rendered,
body.tklm-active.tklm-checkout-page #main #customer_details .select2-selection--single .select2-selection__arrow {
  height: var(--tklm-checkout-field-height, 48px) !important;
  line-height: var(--tklm-checkout-field-height, 48px) !important;
}

/* Mini cart: normalize both the LuxMoom template and Flatsome's native AJAX
   fragment. Flatsome may refresh its own mini-cart template after add/remove,
   so these rules do not depend on our PHP template winning the template lookup. */
body.tklm-active .widget_shopping_cart,
body.tklm-active .widget_shopping_cart_content,
body.tklm-active .tklm-mini-cart-shell,
body.tklm-active .tklm-mini-native-root {
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
body.tklm-active .tklm-mini-native-root {
  width: 100% !important;
  padding: 26px 28px 28px !important;
  overflow: hidden !important;
  background: #fff !important;
}
body.tklm-active .tklm-mini-native-head {
  margin: 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid #ddd !important;
}
body.tklm-active .tklm-mini-native-head > strong {
  display: block !important;
  margin: 0 0 8px !important;
  color: #111 !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}
body.tklm-active .tklm-mini-native-head p {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  margin: 0 !important;
  color: #777 !important;
  font-size: 14px !important;
}
body.tklm-active .tklm-mini-native-head .tklm-mini-native-amount {
  color: #111 !important;
  font-size: 20px !important;
  font-weight: 500 !important;
}
body.tklm-active .tklm-mini-native-total-source { display: none !important; }
body.tklm-active .tklm-mini-native-root > ul,
body.tklm-active .tklm-mini-native-root .tklm-mini-list {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-item,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) 26px !important;
  gap: 14px !important;
  align-items: start !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid #e1e1e1 !important;
  box-sizing: border-box !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-thumb,
body.tklm-active .tklm-mini-native-root .tklm-mini-thumb a,
body.tklm-active .tklm-mini-native-root .tklm-mini-thumb img,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb a,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb img {
  display: block !important;
  float: none !important;
  width: 88px !important;
  height: 88px !important;
  max-width: 88px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-copy,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-copy {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 88px !important;
  margin: 0 !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-name,
body.tklm-active .tklm-mini-native-root .tklm-mini-name a,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-name,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-name a {
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-bottom,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-bottom {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 6px 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: auto 0 0 !important;
  padding: 9px 0 0 !important;
  color: #888 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-bottom .tklm-mini-price,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-bottom .tklm-mini-price {
  margin-left: auto !important;
  color: #111 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-item > a.remove,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > a.remove {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 26px !important;
  height: 26px !important;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  transform: none !important;
  border: 0 !important;
  background: transparent !important;
  color: #aaa !important;
  font-size: 25px !important;
  line-height: 1 !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-buttons,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-buttons,
body.tklm-active .tklm-mini-native-root .woocommerce-mini-cart__buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
}
body.tklm-active .tklm-mini-native-root .tklm-mini-buttons .button,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-buttons .button,
body.tklm-active .tklm-mini-native-root .woocommerce-mini-cart__buttons .button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 8px 10px !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  white-space: normal !important;
  text-align: center !important;
  box-sizing: border-box !important;
}
@media (min-width: 850px) {
  body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown,
  body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart {
    width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
    max-width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
    box-sizing: border-box !important;
  }
}

/* Cart: remove mobile overflow. The old grid gave the subtotal only the 24px
   remove column; 1.2.5 gives quantity and subtotal full usable rows. */
@media (max-width: 849px) {
  body.tklm-active.tklm-cart-page #main .tklm-cart-layout,
  body.tklm-active.tklm-cart-page #main .tklm-cart-form,
  body.tklm-active.tklm-cart-page #main .tklm-cart-list,
  body.tklm-active.tklm-cart-page #main .tklm-cart-summary {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-row {
    grid-template-columns: 84px minmax(0, 1fr) 24px !important;
    grid-template-areas:
      "thumb info remove"
      "thumb qty qty"
      "thumb subtotal subtotal" !important;
    column-gap: 12px !important;
    row-gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 20px 0 !important;
    overflow: hidden !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb,
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb a,
  body.tklm-active.tklm-cart-page #main .tklm-cart-thumb img {
    width: 84px !important;
    height: 84px !important;
    max-width: 84px !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-info,
  body.tklm-active.tklm-cart-page #main .tklm-cart-name,
  body.tklm-active.tklm-cart-page #main .tklm-cart-name a {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-quantity {
    justify-self: start !important;
    width: auto !important;
    min-width: 0 !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-quantity .quantity {
    width: auto !important;
    max-width: 150px !important;
    margin: 0 !important;
    transform: none !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-subtotal {
    justify-self: end !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #111 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 18px 0 0 !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-actions > .tklm-cart-continue,
  body.tklm-active.tklm-cart-page #main .tklm-cart-actions > .tklm-update-cart {
    width: 100% !important;
    max-width: none !important;
    min-height: 52px !important;
    margin: 0 !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-summary-box {
    padding: 8px 16px !important;
    overflow: hidden !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-summary-row strong {
    white-space: nowrap !important;
  }
  body.tklm-active.tklm-cart-page #main .tklm-cart-checkout {
    width: 100% !important;
    max-width: none !important;
    margin-top: 24px !important;
  }

  body.tklm-active .tklm-mini-native-root,
  body.tklm-active .tklm-mini-cart-shell {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px 18px 24px !important;
    overflow: hidden !important;
  }
  body.tklm-active .tklm-mini-native-root .tklm-mini-item,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-item {
    grid-template-columns: 72px minmax(0, 1fr) 22px !important;
    gap: 10px !important;
  }
  body.tklm-active .tklm-mini-native-root .tklm-mini-thumb,
  body.tklm-active .tklm-mini-native-root .tklm-mini-thumb a,
  body.tklm-active .tklm-mini-native-root .tklm-mini-thumb img,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb a,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-thumb img {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
  }
  body.tklm-active .tklm-mini-native-root .tklm-mini-copy,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-copy { min-height: 72px !important; }
  body.tklm-active .tklm-mini-native-root .tklm-mini-name,
  body.tklm-active .tklm-mini-native-root .tklm-mini-name a,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-name,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-name a { font-size: 14px !important; }
  body.tklm-active .tklm-mini-native-root .tklm-mini-item > a.remove,
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > a.remove { margin-top: 23px !important; }
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .widget_shopping_cart_content,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart_content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-billing-fields__field-wrapper,
  body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  body.tklm-active.tklm-checkout-page #main #customer_details .form-row {
    grid-column: 1 !important;
  }
}

/* Fallback before JS normalizes Flatsome's native fragment. */
body.tklm-active .tklm-mini-native-root .mini_cart_item:not(.tklm-mini-item) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 26px !important;
  gap: 12px !important;
  padding: 18px 0 !important;
}
body.tklm-active .tklm-mini-native-root .mini_cart_item:not(.tklm-mini-item) > a:not(.remove) {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: 14px !important;
  min-width: 0 !important;
  color: #111 !important;
  white-space: normal !important;
}
body.tklm-active .tklm-mini-native-root .mini_cart_item:not(.tklm-mini-item) > a:not(.remove) img {
  float: none !important;
  width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
  object-fit: cover !important;
}

/* 1.2.5 final Flatsome popup width guard. */
@media (min-width: 850px) {
  body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown,
  body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart {
    width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
    max-width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
  }
}
@media (max-width: 849px) {
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .cart-popup-inner,
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .widget_shopping_cart_content,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart_content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}
@media (max-width: 849px) {
  body.tklm-active.tklm-theme-flatsome .tklm-mini-native-head > strong,
  body.tklm-active.tklm-theme-flatsome .tklm-mini-cart-shell .tklm-mini-cart-head > strong {
    display: none !important;
  }
  body.tklm-active.tklm-theme-flatsome .tklm-mini-native-head,
  body.tklm-active.tklm-theme-flatsome .tklm-mini-cart-shell .tklm-mini-cart-head {
    padding-bottom: 12px !important;
  }
}


/* ==========================================================================
   1.2.6 - isolated mini cart + editable checkout fields
   The mini cart intentionally avoids Flatsome/WooCommerce generic classes
   (.product_list_widget, .mini_cart_item, .button, .remove) so theme rules
   cannot collapse the product-copy column or resize the controls.
   ========================================================================== */

body.tklm-active .tklm-mini-cart-shell,
body.tklm-active .tklm-mini-cart-shell *,
body.tklm-active .tklm-mini-native-root,
body.tklm-active .tklm-mini-native-root * {
  box-sizing: border-box !important;
}

body.tklm-active .tklm-mini-cart-shell {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 26px 28px 28px !important;
  background: #fff !important;
  color: #111 !important;
  overflow: hidden !important;
}

body.tklm-active .tklm-mini-cart-head {
  display: block !important;
  margin: 0 !important;
  padding: 0 0 18px !important;
  border: 0 !important;
  border-bottom: 1px solid #ddd !important;
  background: transparent !important;
}

body.tklm-active .tklm-mini-cart-title {
  display: block !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #111 !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  white-space: normal !important;
}

body.tklm-active .tklm-mini-subtotal {
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #777 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}
body.tklm-active .tklm-mini-subtotal strong {
  color: #111 !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

body.tklm-active .tklm-mini-list {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: visible !important;
}

body.tklm-active .tklm-mini-list > .tklm-mini-item {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) 28px !important;
  grid-template-areas: "thumb copy remove" !important;
  align-items: start !important;
  gap: 14px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 18px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #e1e1e1 !important;
  background: transparent !important;
  float: none !important;
  overflow: visible !important;
}

body.tklm-active .tklm-mini-item > .tklm-mini-thumb {
  grid-area: thumb !important;
  display: block !important;
  width: 88px !important;
  min-width: 88px !important;
  max-width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body.tklm-active .tklm-mini-thumb > a {
  display: block !important;
  width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  line-height: 0 !important;
}
body.tklm-active .tklm-mini-thumb img {
  position: static !important;
  display: block !important;
  float: none !important;
  width: 88px !important;
  min-width: 88px !important;
  max-width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: cover !important;
  transform: none !important;
}

body.tklm-active .tklm-mini-item > .tklm-mini-copy {
  grid-area: copy !important;
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 88px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  overflow: visible !important;
}
body.tklm-active .tklm-mini-name,
body.tklm-active .tklm-mini-name > a {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #111 !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.42 !important;
  text-align: left !important;
  text-decoration: none !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  float: none !important;
}
body.tklm-active .tklm-mini-variation {
  display: block !important;
  width: 100% !important;
  margin: 5px 0 0 !important;
  padding: 0 !important;
  color: #aaa !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}
body.tklm-active .tklm-mini-variation dl,
body.tklm-active .tklm-mini-variation p {
  margin: 0 !important;
  padding: 0 !important;
}

body.tklm-active .tklm-mini-bottom {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: auto 0 0 !important;
  padding: 9px 0 0 !important;
  color: #888 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
body.tklm-active .tklm-mini-qty {
  display: block !important;
  min-width: 0 !important;
  color: #888 !important;
  white-space: nowrap !important;
}
body.tklm-active .tklm-mini-price {
  display: block !important;
  margin: 0 0 0 auto !important;
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

body.tklm-active .tklm-mini-item > .tklm-mini-remove {
  grid-area: remove !important;
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #aaa !important;
  font-size: 26px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transform: none !important;
  float: none !important;
}

body.tklm-active .tklm-mini-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
}
body.tklm-active a.tklm-mini-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #292929 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: normal !important;
  box-shadow: none !important;
}
body.tklm-active a.tklm-mini-checkout-link {
  background: var(--tklm-accent) !important;
}
body.tklm-active a.tklm-mini-btn:hover {
  filter: brightness(.93) !important;
  color: #fff !important;
}

body.tklm-active .tklm-mini-empty {
  margin: 0 !important;
  padding: 26px 0 8px !important;
  color: #666 !important;
  font-size: 15px !important;
  text-align: center !important;
}

/* Reset the containers Flatsome still owns; all item layout lives inside our shell. */
body.tklm-active.tklm-theme-flatsome .widget_shopping_cart,
body.tklm-active.tklm-theme-flatsome .widget_shopping_cart_content,
body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart,
body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart_content {
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

@media (min-width: 850px) {
  body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner {
    width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
    min-width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
    max-width: min(var(--tklm-minicart-width, 430px), calc(100vw - 32px)) !important;
  }
  body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome li.cart-item.has-dropdown > .nav-dropdown .widget_shopping_cart_content,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .cart-popup-inner .widget_shopping_cart_content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 849px) {
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart,
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .cart-popup-inner,
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .widget_shopping_cart_content,
  body.tklm-active.tklm-theme-flatsome #cart-popup,
  body.tklm-active.tklm-theme-flatsome #cart-popup .widget_shopping_cart,
  body.tklm-active.tklm-theme-flatsome #cart-popup .widget_shopping_cart_content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.tklm-active .tklm-mini-cart-shell {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 18px 22px !important;
  }
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .tklm-mini-cart-title,
  body.tklm-active.tklm-theme-flatsome #cart-popup .tklm-mini-cart-title {
    display: none !important;
  }
  body.tklm-active.tklm-theme-flatsome .off-canvas-cart .tklm-mini-cart-head,
  body.tklm-active.tklm-theme-flatsome #cart-popup .tklm-mini-cart-head {
    padding-bottom: 14px !important;
  }
  body.tklm-active .tklm-mini-list > .tklm-mini-item {
    grid-template-columns: 72px minmax(0, 1fr) 24px !important;
    gap: 10px !important;
    padding: 16px 0 !important;
  }
  body.tklm-active .tklm-mini-item > .tklm-mini-thumb,
  body.tklm-active .tklm-mini-thumb > a,
  body.tklm-active .tklm-mini-thumb img {
    width: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    height: 72px !important;
  }
  body.tklm-active .tklm-mini-item > .tklm-mini-copy {
    min-height: 72px !important;
  }
  body.tklm-active .tklm-mini-name,
  body.tklm-active .tklm-mini-name > a {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
  body.tklm-active .tklm-mini-price {
    font-size: 16px !important;
  }
}

@media (max-width: 390px) {
  body.tklm-active .tklm-mini-cart-shell {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  body.tklm-active .tklm-mini-list > .tklm-mini-item {
    grid-template-columns: 64px minmax(0, 1fr) 22px !important;
    gap: 9px !important;
  }
  body.tklm-active .tklm-mini-item > .tklm-mini-thumb,
  body.tklm-active .tklm-mini-thumb > a,
  body.tklm-active .tklm-mini-thumb img {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
  }
  body.tklm-active .tklm-mini-item > .tklm-mini-copy {
    min-height: 64px !important;
  }
  body.tklm-active .tklm-mini-bottom {
    gap: 6px !important;
    font-size: 12px !important;
  }
  body.tklm-active .tklm-mini-price {
    font-size: 15px !important;
  }
  body.tklm-active .tklm-mini-buttons {
    gap: 8px !important;
  }
  body.tklm-active a.tklm-mini-btn {
    min-height: 50px !important;
    padding: 8px 6px !important;
    font-size: 13px !important;
  }
}

/* Checkout field editor geometry: no fixed field IDs, so backend order/width wins. */
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-billing-fields__field-wrapper,
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-shipping-fields__field-wrapper,
body.tklm-active.tklm-checkout-page #main #customer_details .woocommerce-additional-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 20px !important;
  width: 100% !important;
  grid-auto-flow: row !important;
  align-items: start !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row.tklm-field-half {
  grid-column: auto !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row.tklm-field-full {
  grid-column: 1 / -1 !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row.tklm-field-hidden {
  display: none !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row label,
body.tklm-active.tklm-checkout-page #main #customer_details .form-row .woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}
body.tklm-active.tklm-checkout-page #main #customer_details .form-row input,
body.tklm-active.tklm-checkout-page #main #customer_details .form-row select,
body.tklm-active.tklm-checkout-page #main #customer_details .form-row textarea,
body.tklm-active.tklm-checkout-page #main #customer_details .form-row .select2-container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 849px) {
  body.tklm-active.tklm-checkout-page #main #customer_details .form-row.tklm-field-half,
  body.tklm-active.tklm-checkout-page #main #customer_details .form-row.tklm-field-full {
    grid-column: 1 / -1 !important;
  }
}

/* =======================================================================
   LuxMoom 1.2.7 – dedicated product card system (isolated from Flatsome)
   ======================================================================= */
body.tklm-active .tklm-product-card .tklm-badges {
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}
body.tklm-active .tklm-product-card .tklm-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 3px 8px !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-transform: none !important;
  background: #ff4c5a !important;
}
body.tklm-active .tklm-product-card .tklm-badge-new { background: #6d8dff !important; }
body.tklm-active .tklm-product-card .tklm-badge-best { background: #ff4c5a !important; }

body.tklm-active .tklm-product-card .box-text,
body.tklm-active .tklm-product-card .box-text-inner,
body.tklm-active .tklm-product-card .product-info {
  min-width: 0 !important;
}
body.tklm-active .tklm-product-card .box-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
body.tklm-active .tklm-product-card .name,
body.tklm-active .tklm-product-card .name a,
body.tklm-active .tklm-product-card .woocommerce-loop-product__title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  min-height: 2.7em;
}
body.tklm-active .tklm-product-card .tklm-card-price-topline {
  order: 18;
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 10px !important;
  color: #989898 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
body.tklm-active .tklm-product-card .tklm-card-discount {
  color: #4f7cff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
body.tklm-active .tklm-product-card .tklm-card-regular-price,
body.tklm-active .tklm-product-card .tklm-card-regular-price .woocommerce-Price-amount {
  color: #9a9a9a !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
}
body.tklm-active .tklm-product-card .price {
  order: 19;
  display: block !important;
  width: 100% !important;
  margin-top: 6px !important;
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}
body.tklm-active .tklm-product-card.product.sale .price del,
body.tklm-active .tklm-product-card.sale .price del {
  display: none !important;
}
body.tklm-active .tklm-product-card .price ins {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
  background: transparent !important;
}
body.tklm-active .tklm-product-card .tklm-card-rating-row {
  order: 20;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  width: 100% !important;
  margin-top: 10px !important;
}
body.tklm-active .tklm-product-card .tklm-card-rating-row .star-rating {
  margin: 0 !important;
  float: none !important;
}
body.tklm-active .tklm-product-card .tklm-card-review-count {
  color: #7a7a7a !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

/* =======================================================================
   LuxMoom 1.2.7 – final mini cart isolation (Flatsome-safe)
   ======================================================================= */
body.tklm-active .tklm-mini-cart-shell,
body.tklm-active .tklm-mini-cart-shell * {
  box-sizing: border-box !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-list {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-list > .tklm-mini-item {
  display: grid !important;
  grid-template-columns: 84px minmax(0, 1fr) 26px !important;
  column-gap: 16px !important;
  align-items: start !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 18px 0 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > .tklm-mini-thumb {
  grid-column: 1 !important;
  width: 84px !important;
  min-width: 84px !important;
  max-width: 84px !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > .tklm-mini-copy {
  grid-column: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-name,
body.tklm-active .tklm-mini-cart-shell .tklm-mini-name > a {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  writing-mode: horizontal-tb !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px 12px !important;
  width: 100% !important;
  min-width: 0 !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-price {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}
body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > .tklm-mini-remove {
  grid-column: 3 !important;
  grid-row: 1 / span 2 !important;
  position: static !important;
  align-self: center !important;
  justify-self: end !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-list > .tklm-mini-item {
    grid-template-columns: 76px minmax(0, 1fr) 22px !important;
    column-gap: 12px !important;
  }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-item > .tklm-mini-thumb {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
  }
  body.tklm-active .tklm-mini-cart-shell .tklm-mini-bottom {
    flex-wrap: wrap !important;
  }
  body.tklm-active .tklm-mini-cart-shell a.tklm-mini-btn {
    min-height: 50px !important;
    font-size: 14px !important;
  }
}

/* =======================================================================
   LuxMoom 1.2.8 – badge isolation + review count fixes
   ======================================================================= */
body.tklm-active .tklm-product-card .box-image > .tklm-badges,
body.tklm-active .tklm-product-card .box-image > .tklm-badges-fixed {
  position: absolute !important;
  z-index: 40 !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  bottom: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: none !important;
}
body.tklm-active .tklm-product-card .box-image > .tklm-badges .tklm-badge {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  height: 28px !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 8px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 28px !important;
}
body.tklm-active .tklm-product-card .box-image > .tklm-badges .tklm-badge-new { background:#6388ff !important; }
body.tklm-active .tklm-product-card .box-image > .tklm-badges .tklm-badge-best { background:#ff4155 !important; }
body.tklm-active .tklm-product-card .image-tools .tklm-badges,
body.tklm-active .tklm-product-card .image-tools .tklm-badge { opacity:1 !important; visibility:visible !important; }
body.tklm-active .tklm-product-card .tklm-card-review-count { white-space:nowrap !important; }

/* =======================================================================
   LuxMoom 1.2.9 – Laneige-style product filters, isolated from Flatsome
   ======================================================================= */
body.tklm-active .tklm-filters {
  width: 100% !important;
  max-width: var(--tklm-content-width, 1400px) !important;
  margin: 20px auto 42px !important;
  padding: 22px 0 0 !important;
  border-top: 1px solid #e5e5e5 !important;
}
body.tklm-active .tklm-filter-desktop {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}
body.tklm-active .tklm-active-filters {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin: 0 0 34px !important;
}
body.tklm-active .tklm-active-filter-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 22px !important;
}
body.tklm-active .tklm-active-filter {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #111 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}
body.tklm-active .tklm-active-filter > span {
  color: #b7b7b7 !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
}
body.tklm-active .tklm-active-filter strong { font-weight: 600 !important; }
body.tklm-active .tklm-filter-clear-all {
  color: #4f73ff !important;
  font-size: 14px !important;
  text-decoration: none !important;
}
body.tklm-active .tklm-filter-fields-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-end !important;
  gap: 24px 38px !important;
  width: 100% !important;
}
body.tklm-active .tklm-filter-fields-row > .tklm-filter-group {
  flex: 1 1 190px !important;
  min-width: 170px !important;
  max-width: 250px !important;
  margin: 0 !important;
}
body.tklm-active .tklm-filter-group > label {
  display: block !important;
  margin: 0 0 12px !important;
  color: #111 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}
body.tklm-active .tklm-filter-fields-row .tklm-select-wrap,
body.tklm-active .tklm-filter-fields-row .tklm-select-wrap select {
  width: 100% !important;
}
body.tklm-active .tklm-filter-fields-row .tklm-select-wrap {
  border: 0 !important;
  border-bottom: 1px solid #bdbdbd !important;
  background: transparent !important;
}
body.tklm-active .tklm-filter-fields-row .tklm-select-wrap select {
  height: 44px !important;
  margin: 0 !important;
  padding: 0 34px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #111 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
body.tklm-active .tklm-filter-fields-row .tklm-filter-submit {
  position: static !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 124px !important;
  max-width: none !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 1px solid #292929 !important;
  border-radius: 0 !important;
  background: #292929 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-transform: none !important;
  box-shadow: none !important;
}
body.tklm-active .tklm-filter-fields-row .tklm-filter-submit:hover,
body.tklm-active .tklm-filter-fields-row .tklm-filter-submit:focus {
  border-color: var(--tklm-accent) !important;
  background: var(--tklm-accent) !important;
}
body.tklm-active .tklm-filter-meta-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  width: 100% !important;
  margin: 42px 0 0 !important;
}
body.tklm-active .tklm-result-count {
  color: #8c8c8c !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
body.tklm-active .tklm-sort-control {
  display: block !important;
  width: 196px !important;
  margin-left: auto !important;
}
body.tklm-active .tklm-sort-control > label .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
body.tklm-active .tklm-sort-select-wrap {
  width: 100% !important;
  border: 1px solid #bdbdbd !important;
  background: #fff !important;
}
body.tklm-active .tklm-sort-select-wrap select {
  width: 100% !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 38px 0 16px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #444 !important;
  font-size: 15px !important;
}
body.tklm-active .tklm-sort-select-wrap .tklm-icon {
  right: 13px !important;
}

body.tklm-active .tklm-mobile-filter-body .tklm-sort-control.is-mobile {
  width: 100% !important;
  margin: 0 !important;
  padding: 20px 28px !important;
  border-bottom: 1px solid #ddd !important;
}
body.tklm-active .tklm-mobile-filter-body .tklm-sort-control.is-mobile > label {
  display: block !important;
  margin: 0 0 10px !important;
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}
body.tklm-active .tklm-mobile-filter-body .tklm-sort-select-wrap {
  width: 100% !important;
}

@media (max-width: 1100px) and (min-width: 850px) {
  body.tklm-active .tklm-filter-fields-row > .tklm-filter-group {
    flex-basis: calc(33.333% - 26px) !important;
    max-width: none !important;
  }
}

/* =======================================================================
   LuxMoom 1.2.10 – product card typography & centering refinements
   ======================================================================= */
body.tklm-active .tklm-product-card .box-text,
body.tklm-active .tklm-product-card .box-text-inner,
body.tklm-active .tklm-product-card .product-info {
  width: 100% !important;
}
body.tklm-active .tklm-product-card .box-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
body.tklm-active .tklm-product-card .category,
body.tklm-active .tklm-product-card .product-cat,
body.tklm-active .tklm-product-card .name,
body.tklm-active .tklm-product-card .name a,
body.tklm-active .tklm-product-card .woocommerce-loop-product__title,
body.tklm-active .tklm-product-card .price,
body.tklm-active .tklm-product-card .price ins,
body.tklm-active .tklm-product-card .price > .woocommerce-Price-amount,
body.tklm-active .tklm-product-card .tklm-card-price-topline,
body.tklm-active .tklm-product-card .tklm-card-rating-row {
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
}
body.tklm-active .tklm-product-card .name,
body.tklm-active .tklm-product-card .name a,
body.tklm-active .tklm-product-card .woocommerce-loop-product__title {
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  min-height: 2.8em !important;
  margin-top: 10px !important;
  margin-bottom: 2px !important;
}
body.tklm-active .tklm-product-card .price {
  margin-top: 6px !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}
body.tklm-active .tklm-product-card .tklm-card-price-topline {
  margin-top: 8px !important;
  gap: 6px !important;
}
body.tklm-active .tklm-product-card .tklm-card-discount {
  font-size: 15px !important;
}
body.tklm-active .tklm-product-card .tklm-card-regular-price,
body.tklm-active .tklm-product-card .tklm-card-regular-price .woocommerce-Price-amount {
  font-size: 13px !important;
}
body.tklm-active .tklm-product-card .tklm-card-rating-row {
  margin-top: 8px !important;
  gap: 8px !important;
}
body.tklm-active .tklm-product-card .tklm-card-review-count {
  font-size: 13px !important;
  line-height: 1.25 !important;
}
body.tklm-active .tklm-product-card .star-rating {
  margin: 0 !important;
}
@media (max-width: 849px) {
  body.tklm-active .tklm-product-card .box-text {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  body.tklm-active .tklm-product-card .name,
  body.tklm-active .tklm-product-card .name a,
  body.tklm-active .tklm-product-card .woocommerce-loop-product__title {
    font-size: 14px !important;
  }
  body.tklm-active .tklm-product-card .price {
    font-size: 16px !important;
  }
  body.tklm-active .tklm-product-card .tklm-card-review-count {
    font-size: 12px !important;
  }
}

/* =======================================================================
   LuxMoom 1.2.11 – [giohangbylux] product purchase controls
   ======================================================================= */
body.tklm-active .tklm-giohangbylux,
body.tklm-active .tklm-giohangbylux * { box-sizing: border-box; }
body.tklm-active .tklm-giohangbylux {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0;
  color: #111;
}
body.tklm-active .tklm-gbl-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
body.tklm-active .tklm-gbl-quantity {
  display: inline-grid;
  grid-template-columns: 48px 48px 48px;
  height: 48px;
  border: 1px solid #ddd;
}
body.tklm-active .tklm-gbl-quantity button,
body.tklm-active .tklm-gbl-quantity input {
  width: 48px !important;
  min-width: 48px !important;
  height: 46px !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-right: 1px solid #ddd !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: none !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 46px !important;
  text-align: center !important;
}
body.tklm-active .tklm-gbl-quantity button:last-child { border-right: 0 !important; }
body.tklm-active .tklm-gbl-quantity input { appearance: textfield; -moz-appearance: textfield; }
body.tklm-active .tklm-gbl-quantity input::-webkit-outer-spin-button,
body.tklm-active .tklm-gbl-quantity input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
body.tklm-active .tklm-gbl-price,
body.tklm-active .tklm-gbl-price .woocommerce-Price-amount {
  color: #111 !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
}
body.tklm-active .tklm-gbl-price del,
body.tklm-active .tklm-gbl-price del .woocommerce-Price-amount { color: #999 !important; font-size: 15px !important; }
body.tklm-active .tklm-gbl-price ins { color: inherit !important; text-decoration: none !important; background: transparent !important; }
body.tklm-active .tklm-gbl-price-solo { margin: 0 0 28px auto; text-align: right; }
body.tklm-active .tklm-gbl-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
body.tklm-active .tklm-gbl-btn,
body.tklm-active button.tklm-gbl-btn,
body.tklm-active a.tklm-gbl-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 74px !important;
  margin: 0 !important;
  padding: 12px 20px !important;
  border: 1px solid #222 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
body.tklm-active .tklm-gbl-btn.tklm-gbl-buy {
  border-color: #2a2a2a !important;
  background: #2a2a2a !important;
  color: #fff !important;
}
body.tklm-active .tklm-gbl-btn:hover { border-color: #5d9135 !important; color: #5d9135 !important; }
body.tklm-active .tklm-gbl-btn.tklm-gbl-buy:hover { border-color: #5d9135 !important; background: #5d9135 !important; color: #fff !important; }
body.tklm-active .tklm-gbl-unavailable,
body.tklm-active button.tklm-gbl-unavailable:disabled {
  width: 100% !important;
  border-color: #dedede !important;
  background: #dedede !important;
  color: #aaa !important;
  cursor: default !important;
  opacity: 1 !important;
}
body.tklm-active .tklm-gbl-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 46px;
}
body.tklm-active .tklm-gbl-icon,
body.tklm-active button.tklm-gbl-icon,
body.tklm-active .tklm-giohangbylux .tklm-wishlist-button.tklm-gbl-icon {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  margin: 0 !important;
  padding: 3px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #a8a8a8 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
body.tklm-active .tklm-gbl-icon .tklm-icon { width: 28px !important; height: 28px !important; }
body.tklm-active .tklm-gbl-icon:hover,
body.tklm-active .tklm-gbl-icon.is-active { color: #5d9135 !important; }
body.tklm-active .tklm-gbl-share-wrap { position: relative; }
body.tklm-active .tklm-gbl-share-menu {
  position: absolute;
  z-index: 50;
  right: 0;
  bottom: calc(100% + 10px);
  display: none;
  width: 170px;
  padding: 7px 0;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
body.tklm-active .tklm-gbl-share-menu.is-open { display: block; }
body.tklm-active .tklm-gbl-share-menu a,
body.tklm-active .tklm-gbl-share-menu button {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 9px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #222 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
}
body.tklm-active .tklm-gbl-share-menu a:hover,
body.tklm-active .tklm-gbl-share-menu button:hover { background: #f5f5f5 !important; }
body.tklm-active .tklm-giohangbylux.is-loading { opacity: .68; pointer-events: none; }

/* [danhgiabylux] – compact rating row like reference */
body.tklm-active .tklm-review-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  color: #222;
  font-size: 15px;
  line-height: 1.2;
}
body.tklm-active .tklm-review-inline .tklm-stars {
  display: inline-flex;
  margin: 0 14px 0 0 !important;
  gap: 0;
  color: #111 !important;
  font-size: 27px !important;
  line-height: 1 !important;
  letter-spacing: -2px;
}
body.tklm-active .tklm-review-inline .tklm-stars span,
body.tklm-active .tklm-review-inline .tklm-stars .is-filled { color: #111 !important; }
body.tklm-active .tklm-review-inline-count { margin-right: 10px; color: #333; }
body.tklm-active .tklm-review-inline-all {
  padding-right: 13px;
  margin-right: 13px;
  border-right: 1px solid #ddd;
  color: #333 !important;
  text-decoration: none !important;
}
body.tklm-active button.tklm-review-inline-write {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #555 !important;
  box-shadow: none !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  line-height: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
body.tklm-active .tklm-review-inline-all:hover,
body.tklm-active button.tklm-review-inline-write:hover { color: #5d9135 !important; }

@media (max-width: 767px) {
  body.tklm-active .tklm-gbl-top { gap: 14px; margin-bottom: 20px; }
  body.tklm-active .tklm-gbl-quantity { grid-template-columns: 42px 42px 42px; height: 44px; }
  body.tklm-active .tklm-gbl-quantity button,
  body.tklm-active .tklm-gbl-quantity input { width: 42px !important; min-width: 42px !important; height: 42px !important; min-height: 42px !important; line-height: 42px !important; font-size: 18px !important; }
  body.tklm-active .tklm-gbl-price,
  body.tklm-active .tklm-gbl-price .woocommerce-Price-amount { font-size: 20px !important; }
  body.tklm-active .tklm-gbl-buttons { gap: 10px; }
  body.tklm-active .tklm-gbl-btn,
  body.tklm-active button.tklm-gbl-btn,
  body.tklm-active a.tklm-gbl-btn { min-height: 58px !important; padding: 10px 8px !important; font-size: 14px !important; }
  body.tklm-active .tklm-gbl-tools { margin-top: 28px; }
  body.tklm-active .tklm-review-inline { font-size: 13px; row-gap: 8px; }
  body.tklm-active .tklm-review-inline .tklm-stars { margin-right: 9px !important; font-size: 22px !important; }
}
