@charset "utf-8";
/* CSS Document */
:root {
	--ktheme-wc-text: var(--color-theme-dark-text, var(--bs-body-color, #212529));
	--ktheme-wc-heading: var(--color-theme-dark-text, var(--bs-heading-color, var(--bs-body-color, #212529)));
	--ktheme-wc-muted: var(--color-theme-secondary-text, var(--color-theme-muted-text, var(--bs-secondary-color, #6b6f76)));
	--ktheme-wc-surface: var(--color-theme-light-bg, var(--bs-body-bg, #fff));
	--ktheme-wc-surface-muted: color-mix(in srgb, var(--color-theme-light-bg, #f8f9fa) 88%, var(--color-theme-primary-bg, #23ACD6) 12%);
	--ktheme-wc-border: var(--color-theme-light-border, var(--bs-border-color, #e8e8e8));
	--ktheme-wc-border-subtle: color-mix(in srgb, var(--color-theme-light-border, #f8f9fa) 86%, var(--color-theme-dark-border, #212529) 14%);
	--ktheme-wc-primary: var(--color-theme-primary-bg, var(--bs-primary, #23ACD6));
	--ktheme-wc-primary-text: var(--color-theme-primary-text, var(--ktheme-wc-primary));
	--ktheme-wc-success: var(--color-theme-success-bg, var(--bs-success, #53B572));
	--ktheme-wc-danger: var(--color-theme-danger-bg, var(--bs-danger, #CB60B3));
	--ktheme-wc-sale-badge-bg: var(--color-theme-secondary-bg, var(--bs-secondary-bg, #6c757d));
	--ktheme-wc-warning: var(--color-theme-warning-bg, var(--bs-warning, #71e7c5));
	--ktheme-wc-on-accent: var(--color-theme-light-text, var(--bs-white, #fff));
	--ktheme-wc-focus-ring: color-mix(in srgb, var(--ktheme-wc-primary) 18%, transparent);
	--ktheme-wc-component-bg: var(--ktheme-wc-surface);
	--ktheme-wc-component-muted-bg: var(--ktheme-wc-surface-muted);
	--ktheme-wc-component-border: var(--ktheme-wc-border);
	--ktheme-wc-component-radius: 8px;
	--ktheme-wc-shadow-sm: 0 1px 4px rgba(var(--bs-body-color-rgb, 14, 14, 16), 0.08);
	--ktheme-wc-shadow-modal: 0 18px 50px rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.18);
	--ktheme-wc-shadow-bar: 0 -10px 28px rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.08);
}

/* Shared WooCommerce components */
.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-account.ktheme-wc-account .woocommerce form.login,
.woocommerce-account.ktheme-wc-account .woocommerce form.register,
.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-ResetPassword,
.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation,
.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content,
.woocommerce-account.ktheme-wc-account .woocommerce-customer-details address {
	border: 1px solid var(--ktheme-wc-component-border);
	border-radius: var(--ktheme-wc-component-radius);
	background: var(--ktheme-wc-component-bg);
	color: var(--ktheme-wc-text);
}

.woocommerce-cart table.shop_table,
.woocommerce-cart .woocommerce table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-account.ktheme-wc-account table.shop_table,
.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table {
	border-color: var(--ktheme-wc-component-border);
	background: var(--ktheme-wc-component-bg);
	color: var(--ktheme-wc-text);
}

.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th,
.woocommerce-account.ktheme-wc-account table.shop_table th,
.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table th {
	background: var(--ktheme-wc-component-muted-bg);
	color: var(--ktheme-wc-muted);
}

.woocommerce.ktheme-wc .page-content-wrap,
.woocommerce-page.ktheme-wc .page-content-wrap {
	width: 100%;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 24px;
	color: var(--ktheme-wc-muted);
	font-size: 13px;
}

.woocommerce .woocommerce-ordering select {
	min-height: 36px;
	padding: 0 36px 0 12px;
	border: 1px solid var(--ktheme-wc-border-subtle);
	border-radius: 6px;
	background-color: var(--ktheme-wc-surface);
	color: var(--ktheme-wc-text);
	font-size: 14px;
}

.woocommerce ul.products.ktheme-wc-product-grid {
	display: grid;
	grid-template-columns: repeat(var(--k-columns-desktop, 3), minmax(0, 1fr));
	gap: 40px 20px;
	clear: both;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products.ktheme-wc-product-grid::before,
.woocommerce ul.products.ktheme-wc-product-grid::after {
	display: none;
	content: none;
}

.woocommerce ul.products.ktheme-wc-product-grid li.product {
	float: none;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
}

.ktheme-wc-product-card {
	position: relative;
	display: flex;
	height: 100%;
	min-height: 100%;
	flex-direction: column;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.ktheme-wc-product-card a.woocommerce-LoopProduct-link,
.ktheme-wc-product-card a.woocommerce-loop-product__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.ktheme-wc-product-card .k-post-thumbnail {
	position: relative;
	overflow: hidden;
	border: 0;
	border-radius: 4px;
	background: var(--ktheme-wc-surface-muted);
}

.ktheme-wc-product-card .k-post-thumbnail::before {
	display: block;
	padding-bottom: 100%;
	content: "";
}

.ktheme-wc-product-card .img-effect-wrapper {
	position: absolute;
	inset: 0;
}

.ktheme-wc-product-card .img-effect-wrapper img {
	position: absolute;
	inset: 0;
	max-width: none;
}

.ktheme-wc-product-card .k-post-thumbnail img,
.woocommerce .ktheme-wc-product-card .woocommerce-loop-product__link img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	object-fit: cover;
	object-position: center;
	transition: transform 0.18s ease;
}

.ktheme-wc-product-card:hover .k-post-thumbnail img {
	transform: scale(1.01);
}

.ktheme-wc-product-card .ktheme-wc-product-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ktheme-wc-product-card .ktheme-wc-sale-badge,
.ktheme-wc-product-card .onsale {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	min-width: 52px;
	min-height: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--ktheme-wc-sale-badge-bg);
	color: var(--ktheme-wc-on-accent);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.ktheme-wc-product-card .ktheme-wc-hot-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 999px;
	background: var(--ktheme-wc-success);
	color: var(--ktheme-wc-on-accent);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.ktheme-wc-product-card .ktheme-wc-product-actions {
	position: absolute;
	top: 13px;
	right: 13px;
	z-index: 7;
	display: flex;
	flex-direction: column;
	gap: 7px;
	pointer-events: none;
}

.ktheme-wc-product-card .ktheme-wc-action-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--ktheme-wc-surface);
	color: var(--ktheme-wc-text);
	box-shadow: var(--ktheme-wc-shadow-sm);
	opacity: 0;
	transform: translateX(5px);
	transition: opacity 0.14s ease, transform 0.14s ease, background-color 0.14s ease, color 0.14s ease;
	pointer-events: auto;
}

.ktheme-wc-product-card .ktheme-wc-action-wishlist,
.ktheme-wc-product-card:hover .ktheme-wc-action-btn,
.ktheme-wc-product-card:focus-within .ktheme-wc-action-btn {
	opacity: 1;
	transform: translateX(0);
}

.ktheme-wc-product-card .ktheme-wc-action-wishlist.is-active {
	color: var(--ktheme-wc-danger);
}

.ktheme-wc-product-card .ktheme-wc-action-btn svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ktheme-wc-product-card .ktheme-wc-action-btn::after {
	position: absolute;
	top: 50%;
	right: calc(100% + 7px);
	display: inline-flex;
	align-items: center;
	height: 20px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--ktheme-wc-heading);
	color: var(--ktheme-wc-on-accent);
	content: attr(data-label);
	font-size: 11px;
	font-weight: 700;
	line-height: 20px;
	white-space: nowrap;
	opacity: 0;
	transform: translate(4px, -50%);
	transition: opacity 0.12s ease, transform 0.12s ease;
	pointer-events: none;
}

.ktheme-wc-product-card .ktheme-wc-action-btn:hover::after,
.ktheme-wc-product-card .ktheme-wc-action-btn:focus::after {
	opacity: 1;
	transform: translate(0, -50%);
}

.ktheme-wc-product-card .k-post-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 13px 0 0;
}

.ktheme-wc-product-card .ktheme-wc-product-brand {
	margin: 0 0 4px;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.ktheme-wc-product-card .woocommerce-loop-product__title {
	margin: 0 0 8px;
	padding: 0;
	color: var(--ktheme-wc-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0;
}

.ktheme-wc-product-card .k-post-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: auto;
}

.ktheme-wc-product-card .star-rating {
	float: none;
	margin: 0;
	color: var(--ktheme-wc-warning);
	font-size: 12px;
}

.ktheme-wc-product-card .price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 0;
	color: var(--ktheme-wc-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.ktheme-wc-product-card .price del {
	order: 2;
	color: var(--ktheme-wc-muted);
	font-size: 13px;
	font-weight: 400;
	opacity: 1;
}

.ktheme-wc-product-card .price ins {
	order: 1;
	color: var(--ktheme-wc-danger);
	font-weight: 500;
	text-decoration: none;
}

.ktheme-wc-product-card .price ins .amount {
	color: var(--ktheme-wc-danger);
}

.woocommerce .ktheme-wc-product-card .button {
	position: absolute;
	top: 118px;
	right: 13px;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-height: 28px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--ktheme-wc-surface);
	color: var(--ktheme-wc-text);
	box-shadow: var(--ktheme-wc-shadow-sm);
	font-size: 0;
	line-height: 1;
	text-indent: -9999px;
	white-space: nowrap;
	overflow: hidden;
	text-decoration: none;
	opacity: 0;
	transform: translateX(5px);
	transition: opacity 0.14s ease, transform 0.14s ease;
}

.woocommerce .ktheme-wc-product-card:hover .button,
.woocommerce .ktheme-wc-product-card .button:focus {
	opacity: 1;
	transform: translateX(0);
}

.woocommerce .ktheme-wc-product-card .button::before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230e0e10' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l-1 12H7L6 8Z'/%3E%3Cpath d='M9 8a3 3 0 0 1 6 0'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	transform: translate(-50%, -50%);
}

.woocommerce .ktheme-wc-product-card .button::after {
	display: none !important;
	content: none !important;
}

.woocommerce .ktheme-wc-product-card .added_to_cart {
	display: none;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 48px;
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 12px;
	justify-content: center;
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 46px;
	height: 46px;
	border: 1px solid var(--ktheme-wc-border);
	border-radius: 999px;
	background: var(--ktheme-wc-surface);
	color: var(--ktheme-wc-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 44px;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
	border-color: var(--ktheme-wc-text);
	background: var(--ktheme-wc-surface);
	color: var(--ktheme-wc-text);
}

.ktheme-wc-quickview-open {
	overflow: hidden;
}

.ktheme-wc-quickview {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px;
	background: rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.48);
}

.ktheme-wc-quickview-dialog {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.85fr);
	gap: 30px;
	width: min(1128px, calc(100vw - 96px));
	max-height: calc(100vh - 96px);
	overflow: auto;
	padding: 30px;
	border-radius: 4px;
	background: var(--ktheme-wc-surface);
	box-shadow: var(--ktheme-wc-shadow-modal);
}

.ktheme-wc-quickview-x {
	position: fixed;
	top: 84px;
	right: 68px;
	z-index: 10002;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	color: var(--ktheme-wc-on-accent);
	font-size: 28px;
	font-weight: 300;
	line-height: 30px;
}

.ktheme-wc-quickview-gallery {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	gap: 10px;
}

.ktheme-wc-quickview-thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ktheme-wc-quickview-thumb {
	width: 70px;
	height: 70px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 4px;
	background: var(--ktheme-wc-surface-muted);
}

.ktheme-wc-quickview-thumb.is-active {
	border-color: var(--ktheme-wc-text);
}

.ktheme-wc-quickview-thumb img,
.ktheme-wc-quickview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ktheme-wc-quickview-image {
	position: relative;
	height: 518px;
	padding: 0;
	border-radius: 4px;
	background: var(--ktheme-wc-surface-muted);
}

.ktheme-wc-quickview-sale {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: var(--ktheme-wc-sale-badge-bg);
	color: var(--ktheme-wc-on-accent);
	font-size: 14px;
	font-weight: 700;
}

.ktheme-wc-quickview-image .ktheme-wc-quickview-sale {
	position: absolute;
	right: 12px;
	bottom: 12px;
}

.ktheme-wc-quickview-summary {
	padding: 0 0 0 0;
}

.ktheme-wc-quickview-brand {
	margin: 0 0 8px;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
}

.ktheme-wc-quickview-summary h2 {
	margin: 0 0 14px;
	color: var(--ktheme-wc-text);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: 0;
}

.ktheme-wc-quickview-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 26px;
	color: var(--bs-gray-400, #cfcfcf);
	font-size: 18px;
}

.ktheme-wc-quickview-rating em {
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	font-style: normal;
}

.ktheme-wc-quickview-price {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--ktheme-wc-border);
}

.ktheme-wc-quickview-price .price {
	font-size: 30px;
}

.ktheme-wc-quickview-notes {
	display: grid;
	gap: 10px;
	margin: 24px 0 28px;
	padding: 0 0 24px;
	border-bottom: 1px solid var(--ktheme-wc-border);
	list-style: none;
	color: var(--ktheme-wc-text);
	font-size: 15px;
}

.ktheme-wc-quickview-notes li::before {
	margin-right: 10px;
	color: var(--ktheme-wc-success);
	content: "\\2713";
	font-weight: 700;
}

.ktheme-wc-quickview-cart {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 10px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--ktheme-wc-border);
}

.ktheme-wc-quickview-cart input {
	height: 46px;
	padding: 0 12px;
	border: 1px solid var(--ktheme-wc-border);
	border-radius: 999px;
	text-align: center;
}

.ktheme-wc-quickview-cart-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	border-radius: 999px;
	background: var(--ktheme-wc-success);
	color: var(--ktheme-wc-on-accent);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.ktheme-wc-quickview-summary dl {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 10px;
	margin: 24px 0 0;
	font-size: 14px;
}

.ktheme-wc-quickview-summary dt {
	color: var(--ktheme-wc-text);
	font-weight: 500;
}

.ktheme-wc-quickview-summary dd {
	margin: 0;
	color: var(--ktheme-wc-text);
}

.ktheme-wc-compare-bar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 250px;
	gap: 18px;
	align-items: center;
	padding: 18px 22px;
	border-top: 1px solid var(--ktheme-wc-border);
	background: var(--ktheme-wc-surface);
	box-shadow: var(--ktheme-wc-shadow-bar);
}

.ktheme-wc-compare-slot {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 100px;
	padding: 14px 42px 14px 14px;
	border: 1px dashed var(--ktheme-wc-border);
}

.ktheme-wc-compare-slot.is-empty {
	display: flex;
	justify-content: center;
	color: var(--ktheme-wc-border);
	font-size: 34px;
	font-weight: 500;
}

.ktheme-wc-compare-slot img {
	width: 74px;
	height: 74px;
	object-fit: cover;
}

.ktheme-wc-compare-slot strong {
	display: block;
	overflow: hidden;
	color: var(--ktheme-wc-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ktheme-wc-compare-slot .price {
	margin-top: 6px;
	font-size: 15px;
}

.ktheme-wc-compare-slot > button,
.ktheme-wc-compare-close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 0;
	background: transparent;
	color: var(--ktheme-wc-text);
	font-size: 18px;
	line-height: 1;
}

.ktheme-wc-compare-actions {
	display: grid;
	gap: 12px;
}

.ktheme-wc-compare-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	border-radius: 999px;
	background: var(--ktheme-wc-success);
	color: var(--ktheme-wc-on-accent);
	font-weight: 700;
	text-decoration: none;
}

.ktheme-wc-compare-actions button {
	border: 0;
	background: transparent;
	color: var(--ktheme-wc-text);
	font-size: 14px;
	text-decoration: underline;
}

.ktheme-wc-compare-close {
	top: -24px;
	right: 14px;
	font-size: 28px;
}

.woocommerce .related.products,
.woocommerce .up-sells.products,
.woocommerce .cross-sells {
	margin-top: 64px;
}

.woocommerce .related.products > h2,
.woocommerce .up-sells.products > h2,
.woocommerce .cross-sells > h2 {
	margin: 0 0 24px;
	color: var(--ktheme-wc-text);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

/* Cart and checkout */
.woocommerce-cart .woocommerce {
	color: var(--ktheme-wc-text);
}

.woocommerce-cart .woocommerce-cart-form {
	overflow: hidden;
	margin: 0 0 28px;
	padding: 0;
}

.woocommerce-cart table.shop_table {
	margin: 0;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--ktheme-wc-component-radius);
	font-size: 14px;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
	padding: 16px;
	border-color: var(--ktheme-wc-component-border);
	color: var(--ktheme-wc-text);
	vertical-align: middle;
}

.woocommerce-cart table.shop_table th {
	color: var(--ktheme-wc-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

.woocommerce-cart table.shop_table td.product-name a {
	color: var(--ktheme-wc-heading);
	font-weight: 600;
	text-decoration: none;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
	width: 82px;
	height: 82px;
	border-radius: 4px;
	background: var(--ktheme-wc-component-muted-bg);
	object-fit: cover;
}

.woocommerce-cart table.shop_table a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--ktheme-wc-component-muted-bg);
	color: var(--ktheme-wc-danger) !important;
	font-size: 20px;
	line-height: 1;
	text-decoration: none;
}

.woocommerce-cart table.shop_table a.remove:hover {
	background: var(--ktheme-wc-danger);
	color: var(--ktheme-wc-on-accent) !important;
}

.woocommerce-cart .quantity .qty,
.woocommerce-cart .coupon .input-text {
	min-height: 38px;
	border: 1px solid var(--ktheme-wc-component-border);
	border-radius: 6px;
	background: var(--ktheme-wc-component-bg);
	color: var(--ktheme-wc-text);
}

.woocommerce-cart .coupon {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.woocommerce-cart .button,
.woocommerce-cart button.button,
.woocommerce-cart a.button,
.woocommerce-cart input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--ktheme-wc-primary);
	color: var(--ktheme-wc-on-accent);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.14s ease, color 0.14s ease, transform 0.14s ease;
}

.woocommerce-cart .button:hover,
.woocommerce-cart button.button:hover,
.woocommerce-cart a.button:hover,
.woocommerce-cart input.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--ktheme-wc-heading);
	color: var(--ktheme-wc-on-accent);
}

.woocommerce-cart .cart-collaterals .cart_totals {
	float: right;
	width: min(430px, 100%);
	padding: 24px;
}

.woocommerce-cart .cart_totals h2 {
	margin: 0 0 18px;
	color: var(--ktheme-wc-heading);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

.woocommerce-cart .cart_totals table.shop_table {
	margin-bottom: 20px;
	border: 0;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	padding: 12px 0;
	background: transparent;
	border-bottom: 1px solid var(--ktheme-wc-component-border);
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
	color: var(--ktheme-wc-heading);
	font-size: 18px;
	font-weight: 700;
}

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

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	min-height: 46px;
	margin: 0;
	background: var(--ktheme-wc-success);
}

@media (max-width: 991.98px) {
	.woocommerce ul.products.ktheme-wc-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 18px;
	}

	.ktheme-wc-quickview-dialog {
		grid-template-columns: 1fr;
	}

	.ktheme-wc-compare-bar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.woocommerce .woocommerce-result-count,
	.woocommerce .woocommerce-ordering {
		float: none;
		width: 100%;
	}

	.woocommerce ul.products.ktheme-wc-product-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ktheme-wc-quickview {
		padding: 16px;
	}

	.ktheme-wc-quickview-dialog {
		width: 100%;
		max-height: calc(100vh - 32px);
		padding: 16px;
	}

	.ktheme-wc-quickview-gallery {
		grid-template-columns: 1fr;
	}

	.ktheme-wc-quickview-thumbs {
		flex-direction: row;
		order: 2;
	}

	.ktheme-wc-quickview-image {
		height: 320px;
	}
}
/* Single product detail */
.woocommerce div.product.ktheme-wc-single-product {
	color: var(--ktheme-wc-text);
}

.woocommerce div.product.ktheme-wc-single-product .woocommerce-breadcrumb {
	margin: 0 0 34px;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	line-height: 1.5;
}

.woocommerce div.product.ktheme-wc-single-product .woocommerce-breadcrumb a {
	color: var(--ktheme-wc-text);
	text-decoration: none;
}

.ktheme-wc-single-main {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.88fr);
	gap: 40px;
	align-items: start;
}

.ktheme-wc-single-gallery {
	position: relative;
	min-width: 0;
}

.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-gallery > .onsale {
	position: absolute;
	top: 16px;
	right: 16px;
	left: auto;
	z-index: 8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	min-width: 56px;
	min-height: 56px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--ktheme-wc-sale-badge-bg);
	color: var(--ktheme-wc-on-accent);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	transform: none;
}

.woocommerce div.product.ktheme-wc-single-product div.images {
	float: none;
	width: 100%;
	margin: 0;
	opacity: 1 !important;
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__wrapper {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	margin: 0;
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__wrapper::before,
.ktheme-wc-single-gallery .woocommerce-product-gallery__wrapper::after {
	display: none;
	content: none;
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__image {
	position: relative;
	overflow: hidden;
	border: 0;
	border-radius: 4px;
	background: var(--ktheme-wc-surface-muted);
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__image:first-child {
	grid-column: 2;
	grid-row: 1 / span 6;
	height: min(654px, 54vw);
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__image:not(:first-child) {
	grid-column: 1;
	width: 90px;
	height: 90px;
	border: 1px solid transparent;
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__image:not(:first-child):hover,
.ktheme-wc-single-gallery .woocommerce-product-gallery__image:not(:first-child):focus-within {
	border-color: var(--ktheme-wc-text);
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__image a,
.ktheme-wc-single-gallery .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: 100%;
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__image a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-gallery div.images .woocommerce-product-gallery__image img,
.ktheme-wc-single-gallery .woocommerce-product-gallery__image img {
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
	margin: 0;
	padding: 0;
	object-fit: cover;
	object-position: center;
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__image:first-child img {
	object-fit: cover;
	object-position: center;
}

.ktheme-wc-single-gallery .woocommerce-product-gallery__trigger {
	top: 12px;
	right: 12px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--ktheme-wc-surface);
	box-shadow: var(--ktheme-wc-shadow-sm);
	text-indent: -9999px;
}

.woocommerce div.product.ktheme-wc-single-product div.summary {
	float: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.ktheme-wc-single-brand {
	margin: 0 0 8px;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	line-height: 1.4;
}

.woocommerce div.product.ktheme-wc-single-product .product_title {
	margin: 0 0 12px;
	color: var(--ktheme-wc-heading);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: 0;
}

.woocommerce div.product.ktheme-wc-single-product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
}

.woocommerce div.product.ktheme-wc-single-product .star-rating {
	float: none;
	margin: 0;
	color: var(--bs-gray-400, #d5d7da);
	font-size: 16px;
}

.ktheme-wc-empty-stars {
	color: var(--bs-gray-400, #d5d7da);
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 1;
}
.woocommerce div.product.ktheme-wc-single-product .woocommerce-review-link {
	color: var(--ktheme-wc-muted);
	text-decoration: none;
}

.woocommerce div.product.ktheme-wc-single-product p.price,
.woocommerce div.product.ktheme-wc-single-product span.price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 0 0 24px;
	padding: 0 0 24px;
	border-bottom: 1px solid var(--ktheme-wc-border);
	color: var(--ktheme-wc-heading);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
}

.woocommerce div.product.ktheme-wc-single-product p.price del,
.woocommerce div.product.ktheme-wc-single-product span.price del {
	order: 2;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	font-weight: 400;
	opacity: 1;
}

.woocommerce div.product.ktheme-wc-single-product p.price ins,
.woocommerce div.product.ktheme-wc-single-product span.price ins {
	order: 1;
	color: var(--ktheme-wc-danger);
	font-weight: 500;
	text-decoration: none;
}

.ktheme-wc-single-benefits {
	display: grid;
	gap: 10px;
	margin: 0 0 24px;
	padding: 0 0 24px;
	border-bottom: 1px solid var(--ktheme-wc-border);
	list-style: none;
	color: var(--ktheme-wc-text);
	font-size: 14px;
	line-height: 1.5;
}

.ktheme-wc-single-benefits li::before {
	margin-right: 10px;
	color: var(--ktheme-wc-success);
	content: "\2713";
	font-weight: 700;
}

.ktheme-wc-single-box {
	margin: 0 0 20px;
}

.ktheme-wc-single-box h2 {
	margin: 0 0 22px;
	color: var(--ktheme-wc-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.ktheme-wc-single-box-list {
	display: grid;
	gap: 10px;
	padding: 20px;
	border: 1px solid var(--ktheme-wc-border);
	border-radius: 4px;
	background: var(--ktheme-wc-surface);
}

.ktheme-wc-single-box-item {
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
}

.ktheme-wc-single-box-thumb {
	display: block;
	overflow: hidden;
	width: 100px;
	height: 100px;
	border-radius: 4px;
	background: var(--ktheme-wc-surface-muted);
}

.ktheme-wc-single-box-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ktheme-wc-single-box-info > a {
	display: block;
	margin: 0 0 7px;
	color: var(--ktheme-wc-heading);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
}

.ktheme-wc-single-box-info .price {
	display: flex;
	gap: 6px;
	margin: 0 0 8px;
	padding: 0;
	border: 0;
	font-size: 14px;
	font-weight: 500;
}

.ktheme-wc-single-box-info .price ins {
	color: var(--ktheme-wc-danger);
	text-decoration: none;
}

.ktheme-wc-single-box-info .price del {
	color: var(--ktheme-wc-muted);
	font-size: 12px;
	opacity: 1;
}

.ktheme-wc-single-box-info input,
.woocommerce div.product.ktheme-wc-single-product form.cart .quantity input.qty {
	width: 64px;
	height: 30px;
	padding: 0 8px;
	border: 1px solid var(--ktheme-wc-border);
	border-radius: 999px;
	background: var(--ktheme-wc-surface);
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	text-align: center;
}

.woocommerce div.product.ktheme-wc-single-product .summary form.cart,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart {
	position: static;
	display: block;
	float: none;
	clear: both;
	width: 100%;
	max-width: 100%;
	margin: 0 0 20px;
	padding: 0;
	overflow: visible;
}

.woocommerce div.product.ktheme-wc-single-product .summary form.cart:not(.grouped_form) > .quantity,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart:not(.grouped_form) > .quantity {
	display: none;
}

.woocommerce div.product.ktheme-wc-single-product .summary form.cart .button,
.woocommerce div.product.ktheme-wc-single-product .summary form.cart .single_add_to_cart_button,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .button,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .single_add_to_cart_button {
	position: static !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	z-index: auto;
	display: inline-flex;
	float: none !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	height: 46px;
	min-height: 46px;
	margin: 0;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: var(--ktheme-wc-success);
	color: var(--ktheme-wc-on-accent);
	box-shadow: none;
	font-size: 15px !important;
	font-weight: 700;
	line-height: 1;
	text-indent: 0 !important;
	white-space: normal;
	overflow: visible;
	text-decoration: none;
	opacity: 1 !important;
	transform: none !important;
}

.woocommerce div.product.ktheme-wc-single-product .summary form.cart .button::before,
.woocommerce div.product.ktheme-wc-single-product .summary form.cart .single_add_to_cart_button::before,
.woocommerce div.product.ktheme-wc-single-product .summary form.cart .button::after,
.woocommerce div.product.ktheme-wc-single-product .summary form.cart .single_add_to_cart_button::after,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .button::before,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .single_add_to_cart_button::before,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .button::after,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .single_add_to_cart_button::after {
	display: none !important;
	content: none !important;
	background-image: none !important;
}

.woocommerce div.product.ktheme-wc-single-product .summary form.cart .button:hover,
.woocommerce div.product.ktheme-wc-single-product .summary form.cart .single_add_to_cart_button:hover,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .button:hover,
.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .single_add_to_cart_button:hover {
	background: var(--ktheme-wc-success);
	color: var(--ktheme-wc-on-accent);
}

.ktheme-wc-single-secondary-actions {
	display: flex;
	gap: 28px;
	align-items: center;
	margin: 0 0 28px;
	padding: 0 0 28px;
	border-bottom: 1px solid var(--ktheme-wc-border);
}

.ktheme-wc-single-action {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ktheme-wc-heading);
	font-size: 14px;
	line-height: 1.5;
}

.ktheme-wc-single-action span {
	color: var(--ktheme-wc-text);
	font-size: 16px;
	line-height: 1;
}

.ktheme-wc-single-action.is-active {
	color: var(--ktheme-wc-danger);
}

.woocommerce div.product.ktheme-wc-single-product .product_meta {
	display: grid;
	gap: 9px;
	margin: 0;
	color: var(--ktheme-wc-heading);
	font-size: 14px;
	line-height: 1.4;
}

.woocommerce div.product.ktheme-wc-single-product .product_meta > span {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 0;
}

.woocommerce div.product.ktheme-wc-single-product .product_meta > span > span:first-child {
	color: var(--ktheme-wc-heading);
	font-weight: 500;
}

.woocommerce div.product.ktheme-wc-single-product .product_meta a {
	color: var(--ktheme-wc-heading);
	text-decoration: none;
}

.woocommerce div.product.ktheme-wc-single-product .woocommerce-tabs {
	margin-top: 72px;
}

@media (max-width: 1199.98px) {
	.ktheme-wc-single-main {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
		gap: 28px;
	}

	.ktheme-wc-single-gallery .woocommerce-product-gallery__image:first-child {
		height: min(560px, 52vw);
	}
}

@media (max-width: 991.98px) {
	.ktheme-wc-single-main {
		grid-template-columns: 1fr;
	}

	.ktheme-wc-single-gallery .woocommerce-product-gallery__image:first-child {
		height: min(620px, 86vw);
	}
}

@media (max-width: 767.98px) {
	.ktheme-wc-single-gallery .woocommerce-product-gallery__wrapper {
		grid-template-columns: repeat(4, 72px);
		justify-content: start;
	}

	.ktheme-wc-single-gallery .woocommerce-product-gallery__image:first-child {
		grid-column: 1 / -1;
		grid-row: auto;
		width: 100%;
		height: 360px;
	}

	.ktheme-wc-single-gallery .woocommerce-product-gallery__image:not(:first-child) {
		grid-column: auto;
		width: 72px;
		height: 72px;
	}

	.woocommerce div.product.ktheme-wc-single-product .product_title {
		font-size: 26px;
	}

	.woocommerce div.product.ktheme-wc-single-product p.price,
	.woocommerce div.product.ktheme-wc-single-product span.price {
		font-size: 26px;
	}

	.ktheme-wc-single-box-list {
		padding: 14px;
	}

	.ktheme-wc-single-box-item {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 14px;
	}

	.ktheme-wc-single-box-thumb {
		width: 82px;
		height: 82px;
	}

	.ktheme-wc-single-box-info > a {
		white-space: normal;
	}

	.woocommerce div.product.ktheme-wc-single-product .summary form.cart .button,
	.woocommerce div.product.ktheme-wc-single-product .summary form.cart .single_add_to_cart_button,
	.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .button,
	.woocommerce div.product.ktheme-wc-single-product .ktheme-wc-single-summary form.cart .single_add_to_cart_button {
		width: 100%;
		min-width: 0;
	}

	.ktheme-wc-single-secondary-actions {
		gap: 18px;
		flex-wrap: wrap;
	}
}

@media (max-width: 420px) {
	.ktheme-wc-single-gallery .woocommerce-product-gallery__wrapper {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ktheme-wc-single-gallery .woocommerce-product-gallery__image:not(:first-child) {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}

	.ktheme-wc-single-box-item {
		grid-template-columns: 70px minmax(0, 1fr);
	}

	.ktheme-wc-single-box-thumb {
		width: 70px;
		height: 70px;
	}
}

/* My account */
.woocommerce-account.ktheme-wc-account .woocommerce {
	color: var(--ktheme-wc-text);
	font-size: 15px;
	line-height: 1.5;
}

.woocommerce-account.ktheme-wc-account .woocommerce::after {
	display: block;
	clear: both;
	content: "";
}

.woocommerce-account.ktheme-wc-account .woocommerce > h2 {
	max-width: 520px;
	margin: 0 auto 18px;
	color: var(--ktheme-wc-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce .u-columns.col2-set {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce .u-columns.col2-set::before,
.woocommerce-account.ktheme-wc-account .woocommerce .u-columns.col2-set::after {
	display: none;
	content: none;
}

.woocommerce-account.ktheme-wc-account .woocommerce .u-column1,
.woocommerce-account.ktheme-wc-account .woocommerce .u-column2 {
	float: none;
	width: auto;
}

.woocommerce-account.ktheme-wc-account .woocommerce .u-column1 > h2,
.woocommerce-account.ktheme-wc-account .woocommerce .u-column2 > h2 {
	margin: 0 0 18px;
	color: var(--ktheme-wc-heading);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce form.login,
.woocommerce-account.ktheme-wc-account .woocommerce form.register,
.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-ResetPassword {
	max-width: 520px;
	margin: 0 auto;
	padding: 28px;
	box-shadow: none;
}

.woocommerce-account.ktheme-wc-account .woocommerce .u-column1 form.login,
.woocommerce-account.ktheme-wc-account .woocommerce .u-column2 form.register {
	max-width: none;
	margin: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce .form-row {
	margin: 0 0 16px;
	padding: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce .form-row-first,
.woocommerce-account.ktheme-wc-account .woocommerce .form-row-last {
	width: calc(50% - 8px);
}

.woocommerce-account.ktheme-wc-account .woocommerce .form-row label {
	display: block;
	margin: 0 0 8px;
	color: var(--ktheme-wc-heading);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.woocommerce-account.ktheme-wc-account .woocommerce .required {
	color: var(--ktheme-wc-danger);
	text-decoration: none;
}

.woocommerce-account.ktheme-wc-account .woocommerce .input-text,
.woocommerce-account.ktheme-wc-account .woocommerce input[type="text"],
.woocommerce-account.ktheme-wc-account .woocommerce input[type="email"],
.woocommerce-account.ktheme-wc-account .woocommerce input[type="password"],
.woocommerce-account.ktheme-wc-account .woocommerce input[type="tel"],
.woocommerce-account.ktheme-wc-account .woocommerce select,
.woocommerce-account.ktheme-wc-account .woocommerce textarea {
	width: 100%;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--ktheme-wc-border);
	border-radius: 6px;
	background: var(--ktheme-wc-surface);
	color: var(--ktheme-wc-text);
	font-size: 14px;
	line-height: 1.4;
	transition: border-color 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}

.woocommerce-account.ktheme-wc-account .woocommerce textarea {
	min-height: 112px;
	padding-top: 10px;
	padding-bottom: 10px;
	resize: vertical;
}

.woocommerce-account.ktheme-wc-account .woocommerce .input-text:focus,
.woocommerce-account.ktheme-wc-account .woocommerce input[type="text"]:focus,
.woocommerce-account.ktheme-wc-account .woocommerce input[type="email"]:focus,
.woocommerce-account.ktheme-wc-account .woocommerce input[type="password"]:focus,
.woocommerce-account.ktheme-wc-account .woocommerce input[type="tel"]:focus,
.woocommerce-account.ktheme-wc-account .woocommerce select:focus,
.woocommerce-account.ktheme-wc-account .woocommerce textarea:focus {
	border-color: var(--ktheme-wc-primary);
	box-shadow: 0 0 0 3px var(--ktheme-wc-focus-ring);
	outline: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce .password-input {
	display: block;
}

.woocommerce-account.ktheme-wc-account .woocommerce .show-password-input {
	top: 50%;
	transform: translateY(-50%);
	color: var(--ktheme-wc-muted);
}

.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-form-login .form-row:not(.form-row-wide) {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-form-login__rememberme {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin: 0;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	font-weight: 400;
}

.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-form__input-checkbox,
.woocommerce-account.ktheme-wc-account .woocommerce input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--ktheme-wc-primary);
}

.woocommerce-account.ktheme-wc-account .woocommerce button.button,
.woocommerce-account.ktheme-wc-account .woocommerce a.button,
.woocommerce-account.ktheme-wc-account .woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--ktheme-wc-primary);
	color: var(--ktheme-wc-on-accent);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.14s ease, color 0.14s ease, transform 0.14s ease;
}

.woocommerce-account.ktheme-wc-account .woocommerce button.button:hover,
.woocommerce-account.ktheme-wc-account .woocommerce a.button:hover,
.woocommerce-account.ktheme-wc-account .woocommerce input.button:hover {
	background: var(--ktheme-wc-heading);
	color: var(--ktheme-wc-on-accent);
}

.woocommerce-account.ktheme-wc-account .woocommerce button.button:active,
.woocommerce-account.ktheme-wc-account .woocommerce a.button:active,
.woocommerce-account.ktheme-wc-account .woocommerce input.button:active {
	transform: translateY(1px);
}

.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-form-login__submit {
	flex: 0 0 100%;
	width: 100%;
	margin: 4px 0 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-LostPassword {
	margin: 16px 0 0;
	font-size: 14px;
}

.woocommerce-account.ktheme-wc-account .woocommerce a {
	color: var(--ktheme-wc-primary);
	text-decoration: none;
}

.woocommerce-account.ktheme-wc-account .woocommerce a:hover {
	color: var(--ktheme-wc-heading);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-notices-wrapper {
	max-width: 100%;
}

.woocommerce-account.ktheme-wc-account .woocommerce-error,
.woocommerce-account.ktheme-wc-account .woocommerce-info,
.woocommerce-account.ktheme-wc-account .woocommerce-message {
	margin: 0 0 20px;
	padding: 14px 16px 14px 44px;
	border: 1px solid var(--ktheme-wc-border);
	border-radius: 8px;
	background: var(--ktheme-wc-surface-muted);
	color: var(--ktheme-wc-text);
	font-size: 14px;
	line-height: 1.45;
}

.woocommerce-account.ktheme-wc-account .woocommerce-message {
	border-left: 3px solid var(--ktheme-wc-success);
}

.woocommerce-account.ktheme-wc-account .woocommerce-info {
	border-left: 3px solid var(--ktheme-wc-primary);
}

.woocommerce-account.ktheme-wc-account .woocommerce-error {
	border-left: 3px solid var(--ktheme-wc-danger);
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation {
	float: left;
	width: 260px;
	margin: 0;
	padding: 18px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation li {
	margin: 0;
	padding: 0;
	border: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	padding: 0 12px;
	border-radius: 6px;
	color: var(--ktheme-wc-muted);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.14s ease, color 0.14s ease;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation a::after {
	color: var(--ktheme-wc-muted);
	content: ">";
	font-size: 13px;
	line-height: 1;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation-link.is-active a {
	background: var(--ktheme-wc-surface-muted);
	color: var(--ktheme-wc-heading);
	text-decoration: none;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation-link.is-active a {
	background: var(--ktheme-wc-primary);
	color: var(--ktheme-wc-on-accent);
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation-link.is-active a::after {
	color: var(--ktheme-wc-on-accent);
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content {
	float: right;
	width: calc(100% - 292px);
	min-height: 320px;
	padding: 28px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-EditAccountForm,
.woocommerce-account.ktheme-wc-account .woocommerce-address-fields,
.woocommerce-account.ktheme-wc-account .woocommerce-order-details,
.woocommerce-account.ktheme-wc-account .woocommerce-order-downloads {
	margin: 0 0 22px;
	padding: 22px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content > p:first-child {
	margin-top: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content p {
	margin: 0 0 16px;
	color: var(--ktheme-wc-text);
	font-size: 15px;
	line-height: 1.6;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content mark {
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--ktheme-wc-component-muted-bg);
	color: var(--ktheme-wc-heading);
	font-weight: 600;
}

.ktheme-wc-account-dashboard {
	display: grid;
	gap: 18px;
	margin: 24px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--ktheme-wc-component-border);
}

.ktheme-wc-account-dashboard-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
}

.ktheme-wc-account-dashboard-head span {
	display: block;
	margin: 0 0 6px;
	color: var(--ktheme-wc-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

.ktheme-wc-account-dashboard-head h2 {
	margin: 0;
	color: var(--ktheme-wc-heading);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

.ktheme-wc-account-dashboard-shop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border: 1px solid var(--ktheme-wc-component-border);
	border-radius: 6px;
	background: var(--ktheme-wc-component-bg);
	color: var(--ktheme-wc-heading) !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	white-space: nowrap;
}

.ktheme-wc-account-dashboard-shop:hover {
	border-color: var(--ktheme-wc-primary);
	color: var(--ktheme-wc-primary) !important;
}

.ktheme-wc-account-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.ktheme-wc-account-dashboard-card {
	display: grid;
	min-height: 156px;
	align-content: start;
	padding: 18px;
	border: 1px solid var(--ktheme-wc-component-border);
	border-radius: var(--ktheme-wc-component-radius);
	background: var(--ktheme-wc-component-muted-bg);
	color: var(--ktheme-wc-text) !important;
	text-decoration: none !important;
	transition: border-color 0.14s ease, transform 0.14s ease, background-color 0.14s ease;
}

.ktheme-wc-account-dashboard-card:hover {
	border-color: var(--ktheme-wc-primary);
	background: var(--ktheme-wc-component-bg);
	transform: translateY(-1px);
}

.ktheme-wc-account-dashboard-card span {
	color: var(--ktheme-wc-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.ktheme-wc-account-dashboard-card strong {
	margin: 18px 0 8px;
	color: var(--ktheme-wc-heading);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.1;
}

.ktheme-wc-account-dashboard-card em {
	color: var(--ktheme-wc-muted);
	font-size: 13px;
	font-style: normal;
	line-height: 1.45;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content h2,
.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content h3,
.woocommerce-account.ktheme-wc-account .woocommerce-Address-title h2,
.woocommerce-account.ktheme-wc-account .woocommerce-column__title {
	margin: 0 0 18px;
	color: var(--ktheme-wc-heading);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

.woocommerce-account.ktheme-wc-account table.shop_table,
.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table {
	overflow: hidden;
	width: 100%;
	margin: 0 0 22px;
	border: 1px solid var(--ktheme-wc-component-border);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--ktheme-wc-component-radius);
	background: var(--ktheme-wc-component-bg);
	font-size: 14px;
}

.woocommerce-account.ktheme-wc-account table.shop_table th,
.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table th {
	padding: 12px 14px;
	border: 0;
	border-bottom: 1px solid var(--ktheme-wc-component-border);
	background: var(--ktheme-wc-component-muted-bg);
	color: var(--ktheme-wc-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

.woocommerce-account.ktheme-wc-account table.shop_table td,
.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table td {
	padding: 14px;
	border: 0;
	border-bottom: 1px solid var(--ktheme-wc-component-border);
	color: var(--ktheme-wc-text);
	vertical-align: middle;
}

.woocommerce-account.ktheme-wc-account table.shop_table tr:last-child td,
.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table tr:last-child td {
	border-bottom: 0;
}

.woocommerce-account.ktheme-wc-account table.shop_table .button {
	min-height: 34px;
	padding: 0 14px;
	font-size: 13px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-message {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-info::before,
.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-message::before {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	min-width: 24px;
	border-radius: 999px;
	background: var(--ktheme-wc-primary);
	color: var(--ktheme-wc-on-accent);
	font-size: 12px;
	line-height: 1;
}

.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-message .button {
	margin-left: auto;
	white-space: nowrap;
}

.woocommerce-account.ktheme-wc-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-Address {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce-account.ktheme-wc-account .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 10px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-Address-title h2 {
	margin: 0;
	font-size: 18px;
}

.woocommerce-account.ktheme-wc-account .woocommerce-Address-title .edit {
	font-size: 13px;
	font-weight: 600;
}

.woocommerce-account.ktheme-wc-account .woocommerce-Address address {
	min-height: 140px;
	margin: 0;
	padding: 18px;
	border: 1px solid var(--ktheme-wc-component-border);
	border-radius: var(--ktheme-wc-component-radius);
	background: var(--ktheme-wc-component-muted-bg);
	color: var(--ktheme-wc-text);
	font-size: 14px;
	font-style: normal;
	line-height: 1.65;
}

.woocommerce-account.ktheme-wc-account fieldset {
	margin: 24px 0 0;
	padding: 18px;
	border: 1px solid var(--ktheme-wc-component-border);
	border-radius: var(--ktheme-wc-component-radius);
	background: var(--ktheme-wc-component-muted-bg);
}

.woocommerce-account.ktheme-wc-account fieldset legend {
	float: none;
	width: auto;
	margin: 0 0 12px;
	padding: 0 8px 0 0;
	color: var(--ktheme-wc-heading);
	font-size: 16px;
	font-weight: 600;
}

@media (max-width: 991.98px) {
	.woocommerce-account.ktheme-wc-account .woocommerce .u-columns.col2-set,
	.woocommerce-account.ktheme-wc-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}

	.ktheme-wc-account-dashboard-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation,
	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation {
		margin-bottom: 18px;
	}
}

@media (max-width: 767.98px) {
	.woocommerce-account.ktheme-wc-account .woocommerce > h2 {
		max-width: none;
		font-size: 22px;
	}

	.woocommerce-account.ktheme-wc-account .woocommerce form.login,
	.woocommerce-account.ktheme-wc-account .woocommerce form.register,
	.woocommerce-account.ktheme-wc-account .woocommerce .woocommerce-ResetPassword,
	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content,
	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation {
		padding: 18px;
	}

	.woocommerce-account.ktheme-wc-account .woocommerce .form-row-first,
	.woocommerce-account.ktheme-wc-account .woocommerce .form-row-last {
		float: none;
		width: 100%;
	}

	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: 1fr;
	}

	.ktheme-wc-account-dashboard-head,
	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-info,
	.woocommerce-account.ktheme-wc-account .woocommerce-MyAccount-content .woocommerce-message {
		align-items: stretch;
		flex-direction: column;
	}

	.ktheme-wc-account-dashboard-grid {
		grid-template-columns: 1fr;
	}

	.ktheme-wc-account-dashboard-card {
		min-height: 0;
	}

	.woocommerce-account.ktheme-wc-account table.shop_table,
	.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table {
		font-size: 13px;
	}

	.woocommerce-account.ktheme-wc-account table.shop_table th,
	.woocommerce-account.ktheme-wc-account table.shop_table td,
	.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table th,
	.woocommerce-account.ktheme-wc-account .woocommerce table.shop_table td {
		padding: 12px;
	}
}
