/*
 * KCM / SiteKart — Refined UI layer
 * Loaded after every legacy and responsive stylesheet.
 * Version: 2.0.0
 */

:root {
	--kcm-canvas: #f3f2ef;
	--kcm-canvas-strong: #ebe9e4;
	--kcm-surface: #ffffff;
	--kcm-surface-soft: #f8f7f4;
	--kcm-ink: #141619;
	--kcm-ink-soft: #2a2d31;
	--kcm-muted: #686d72;
	--kcm-faint: #92969a;
	--kcm-border: #deddd8;
	--kcm-border-strong: #c8c7c1;
	--kcm-accent: #b9232b;
	--kcm-accent-dark: #8f171e;
	--kcm-accent-soft: #f5e7e8;
	--kcm-success: #28734b;
	--kcm-warning: #956400;
	--kcm-danger: #a6272e;
	--kcm-radius-xs: 6px;
	--kcm-radius-sm: 10px;
	--kcm-radius-md: 16px;
	--kcm-radius-lg: 22px;
	--kcm-shadow-xs: 0 1px 2px rgba(20, 22, 25, 0.05);
	--kcm-shadow-sm: 0 12px 32px rgba(20, 22, 25, 0.07);
	--kcm-shadow-lg: 0 24px 70px rgba(20, 22, 25, 0.13);
	--kcm-gutter: clamp(20px, 3.2vw, 64px);
	--kcm-reading: 1180px;
	--kcm-transition: 180ms cubic-bezier(.2, .7, .2, 1);

	/* Compatibility with the previous visual layer. */
	--st-bg: var(--kcm-canvas);
	--st-surface: var(--kcm-surface);
	--st-surface-soft: var(--kcm-surface-soft);
	--st-text: var(--kcm-ink);
	--st-text-soft: var(--kcm-muted);
	--st-text-faint: var(--kcm-faint);
	--st-line: var(--kcm-border);
	--st-line-strong: var(--kcm-border-strong);
	--st-dark: var(--kcm-ink);
	--st-dark-soft: var(--kcm-ink-soft);
	--st-red: var(--kcm-accent);
	--st-red-dark: var(--kcm-accent-dark);
	--st-red-soft: var(--kcm-accent-soft);
	--st-gutter: var(--kcm-gutter);
}

/* --------------------------------------------------------------------------
   Foundations
   -------------------------------------------------------------------------- */

html {
	background: var(--kcm-canvas);
	scroll-padding-top: 92px;
}

body {
	min-width: 320px;
	background: var(--kcm-canvas) !important;
	color: var(--kcm-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.62;
	letter-spacing: -0.006em;
}

body,
button,
input,
select,
textarea {
	font-family: inherit;
}

a {
	color: var(--kcm-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover,
a:focus {
	color: var(--kcm-accent-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--kcm-ink);
	font-family: inherit !important;
	font-weight: 680;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.15rem, 4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.8rem); }
h3 { font-size: clamp(1.28rem, 1.8vw, 1.8rem); }

::selection {
	background: var(--kcm-accent);
	color: #fff;
}

:focus-visible {
	outline: 3px solid rgba(185, 35, 43, 0.27) !important;
	outline-offset: 3px;
}

.boxed_layout,
.row,
#content,
#l-main,
.l-main {
	max-width: none !important;
}

.boxed_layout {
	width: 100% !important;
	min-height: 100vh;
	margin: 0 !important;
	background: var(--kcm-canvas) !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

#content,
#l-main,
.l-main {
	width: 100%;
	background: var(--kcm-canvas) !important;
}

#content > .main.row,
#l-main > .main.row,
.l-main > .main.row {
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

#content article,
#l-main {
	width: 100%;
	padding: clamp(36px, 5vw, 76px) var(--kcm-gutter) !important;
	background: transparent !important;
}

#content article.large-12.columns {
	float: none !important;
}

.body.field {
	width: 100%;
	max-width: none;
	margin: 0;
}

.body.field > p,
.body.field > ul,
.body.field > ol,
.body.field > blockquote,
.body.field > h1,
.body.field > h2,
.body.field > h3,
.body.field > h4,
.body.field > h5,
.body.field > h6 {
	max-width: var(--kcm-reading);
}

.body.field > .vc_row,
.body.field > .wpb_row,
.body.field > section {
	width: 100%;
	max-width: none;
}

/* --------------------------------------------------------------------------
   Controls
   -------------------------------------------------------------------------- */

button,
.button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 18px !important;
	border: 1px solid var(--kcm-ink) !important;
	border-radius: var(--kcm-radius-sm) !important;
	background: var(--kcm-ink) !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 720 !important;
	line-height: 1.2 !important;
	letter-spacing: .07em;
	text-transform: uppercase;
	box-shadow: none !important;
	transition: transform var(--kcm-transition), background-color var(--kcm-transition), border-color var(--kcm-transition), box-shadow var(--kcm-transition);
}

button:hover,
.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	border-color: var(--kcm-accent) !important;
	background: var(--kcm-accent) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(185, 35, 43, .16) !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
select,
textarea {
	width: 100%;
	min-height: 46px;
	margin: 0 0 14px;
	padding: 11px 13px;
	border: 1px solid var(--kcm-border-strong) !important;
	border-radius: var(--kcm-radius-sm) !important;
	background: var(--kcm-surface) !important;
	color: var(--kcm-ink) !important;
	font-size: 14px;
	box-shadow: var(--kcm-shadow-xs) !important;
	transition: border-color var(--kcm-transition), box-shadow var(--kcm-transition);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--kcm-accent) !important;
	box-shadow: 0 0 0 4px rgba(185, 35, 43, .09) !important;
	outline: 0;
}

label {
	color: var(--kcm-ink-soft);
	font-size: 12px;
	font-weight: 680;
}

/* --------------------------------------------------------------------------
   Compact one-line desktop header
   -------------------------------------------------------------------------- */

.wd-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, .97) !important;
	border-bottom: 1px solid var(--kcm-border);
	box-shadow: 0 8px 30px rgba(20, 22, 25, .055) !important;
	backdrop-filter: blur(14px);
}

.admin-bar .wd-header {
	top: 32px;
}

.wd-header .wd-menu-nav,
.wd-header .top-bar {
	width: 100%;
	background: transparent !important;
}

.wd-header .top-bar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	min-height: 78px;
	height: auto !important;
	align-items: stretch;
}

.top-bar .bg-header {
	display: flex;
	width: auto !important;
	align-items: center;
	margin: 0 !important;
	padding: 0 18px 0 var(--kcm-gutter) !important;
	background: transparent !important;
	background-image: none !important;
	border: 0 !important;
}

.top-bar .title-area {
	display: block;
	width: auto !important;
	min-width: 154px;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	background: transparent !important;
}

.top-bar .name {
	display: flex !important;
	min-height: 78px !important;
	height: 78px !important;
	align-items: center;
	justify-content: flex-start;
	margin: 0 !important;
	padding: 0 !important;
}

.top-bar .name .wd-logo,
.top-bar .wd-logo.right {
	float: none !important;
	text-align: left !important;
}

.top-bar .name h1,
.top-bar .name h2 {
	margin: 0 !important;
}

.top-bar .name h1 a {
	display: flex;
	width: auto !important;
	height: 78px !important;
	align-items: center;
	padding: 0 !important;
}

.top-bar .name .wd-logo h1 a img {
	display: block;
	width: auto !important;
	max-width: 176px !important;
	height: auto !important;
	max-height: 52px !important;
	padding: 0 !important;
	object-fit: contain;
}

.top-bar .name h2 {
	display: none !important;
}

.top-bar-section {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	min-height: 78px;
	align-items: center;
	gap: 18px;
	padding: 0 var(--kcm-gutter) 0 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.top-bar-section .primary-area {
	min-width: 0;
	align-self: stretch;
}

.menu-menu-top-container,
.menu-top-bar-container {
	margin: 0 !important;
	padding: 0 !important;
}

.menu-menu-top-container > ul,
.menu-top-bar-container > ul {
	display: flex !important;
	width: auto !important;
	height: 100%;
	align-items: stretch;
	gap: 2px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.menu-menu-top-container > ul > li,
.menu-top-bar-container > ul > li {
	display: flex !important;
	height: 100%;
	align-items: stretch;
	padding: 0 !important;
	float: none !important;
	position: relative;
}

.menu-menu-top-container > ul > li > a,
.menu-menu-top-container > ul > li.has-dropdown > a {
	display: flex !important;
	min-height: 78px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 0 !important;
	padding: 0 clamp(8px, .9vw, 16px) !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--kcm-ink-soft) !important;
	font-size: 11px !important;
	font-weight: 690 !important;
	line-height: 1.2 !important;
	letter-spacing: .055em;
	text-align: center !important;
	text-transform: uppercase !important;
	white-space: nowrap;
}

.menu-menu-top-container > ul > li > a::before {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 0;
	height: 3px;
	content: "";
	background: var(--kcm-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--kcm-transition);
}

.menu-menu-top-container > ul > li:hover > a,
.menu-menu-top-container > ul > li.current-menu-item > a,
.menu-menu-top-container > ul > li.current-menu-ancestor > a {
	color: var(--kcm-ink) !important;
}

.menu-menu-top-container > ul > li:hover > a::before,
.menu-menu-top-container > ul > li.current-menu-item > a::before,
.menu-menu-top-container > ul > li.current-menu-ancestor > a::before {
	transform: scaleX(1);
}

.top-bar-section ul .has-dropdown > a::after {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	margin: 2px 0 0 !important;
	border-top-color: currentColor !important;
}

.top-bar-section ul .has-dropdown ul,
.top-bar-section .menu-menu-top-container ul .has-dropdown ul {
	width: 270px !important;
	margin: 0 !important;
	padding: 8px !important;
	background: var(--kcm-surface) !important;
	border: 1px solid var(--kcm-border) !important;
	border-radius: 0 0 var(--kcm-radius-md) var(--kcm-radius-md) !important;
	box-shadow: var(--kcm-shadow-lg) !important;
}

.top-bar-section ul .has-dropdown ul li a,
.top-bar-section ul .has-dropdown:hover ul li a {
	display: flex !important;
	min-height: 42px;
	align-items: center;
	justify-content: space-between;
	padding: 9px 12px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: var(--kcm-muted) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	text-transform: none !important;
}

.top-bar-section ul .has-dropdown ul li a:hover,
.top-bar-section ul .has-dropdown ul li:hover > a {
	background: var(--kcm-surface-soft) !important;
	color: var(--kcm-accent) !important;
}

.top-bar-section .secondary-area {
	display: grid !important;
	grid-template-areas: "user-nav cart search";
	grid-template-columns: auto 40px 40px;
	align-items: center;
	gap: 7px;
	flex: none;
}

.menu-top-bar-container {
	grid-area: user-nav;
}

.menu-top-bar-container > ul > li > a {
	display: flex !important;
	min-height: 38px;
	height: 38px;
	align-items: center;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 1px solid var(--kcm-border-strong) !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: var(--kcm-ink) !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: .06em;
	text-transform: uppercase !important;
}

.menu-top-bar-container > ul > li > a:hover {
	border-color: var(--kcm-ink) !important;
	background: var(--kcm-ink) !important;
	color: #fff !important;
}

.top-bar-section .cart,
.top-bar-section .search-action {
	display: flex;
	width: 40px;
	justify-content: center;
}

.top-bar-section .cart { grid-area: cart; }
.top-bar-section .search-action { grid-area: search; }

.top-bar-section .cart .show-cart-btn,
.top-bar-section .search-action #search-trigger {
	display: inline-flex;
	width: 38px !important;
	height: 38px !important;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--kcm-border) !important;
	border-radius: 50% !important;
	background: var(--kcm-surface-soft) !important;
	color: var(--kcm-ink) !important;
	font-size: 17px !important;
	box-shadow: none !important;
}

.top-bar-section .cart .show-cart-btn:hover,
.top-bar-section .search-action #search-trigger:hover {
	border-color: var(--kcm-accent) !important;
	background: var(--kcm-accent) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.search-action,
.search-action a,
.search-action a i {
	color: var(--kcm-ink) !important;
}

.top-bar-section .cart .cart-count,
.top-bar-section .cart .min-cart-count {
	display: flex !important;
	position: absolute;
	top: -5px;
	right: -5px;
	min-width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--kcm-accent);
	color: #fff;
	font-size: 9px;
	font-weight: 750;
	line-height: 1;
}

.top-bar-section .cart .show-cart-btn {
	position: relative;
}

.hidden-search {
	display: none;
	width: 100%;
	margin: 0;
	padding: 18px var(--kcm-gutter) 22px;
	background: var(--kcm-ink) !important;
	border: 0 !important;
}

.hidden-search .row,
.hidden-search .dgwt-wcas-search-wrapp {
	width: 100%;
	max-width: 980px !important;
	margin: 0 auto !important;
}

.hidden-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
.hidden-search .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	height: 50px !important;
	margin: 0 !important;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: var(--kcm-radius-sm) !important;
	background: #fff !important;
}

/* --------------------------------------------------------------------------
   Page headings
   -------------------------------------------------------------------------- */

.wd-title-bar {
	width: 100%;
	min-height: 0 !important;
	margin: 0 !important;
	padding: clamp(42px, 5.5vw, 78px) var(--kcm-gutter) !important;
	background: var(--kcm-ink) !important;
	border: 0 !important;
}

.wd-title-bar .row,
.wd-title-bar .row .columns {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wd-title-bar .wd-title-section {
	text-align: left !important;
}

.wd-title-bar .wd-title-section h2 {
	display: flex !important;
	align-items: center;
	gap: 14px;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	color: #fff !important;
	font-size: clamp(1.8rem, 3.5vw, 3.4rem) !important;
	font-weight: 660 !important;
	letter-spacing: -.045em;
	text-transform: none !important;
}

.wd-title-bar .wd-title-section h2::before {
	width: 5px;
	height: .85em;
	border-radius: 999px;
	background: var(--kcm-accent);
	content: "";
}

.entete_categ .wd-title-bar {
	margin-bottom: 24px !important;
	padding: 0 0 20px !important;
	background: transparent !important;
	border-bottom: 1px solid var(--kcm-border) !important;
}

.entete_categ .wd-title-bar .wd-title-section h2 {
	color: var(--kcm-ink) !important;
	font-size: clamp(1.7rem, 2.4vw, 2.55rem) !important;
}

.woocommerce-breadcrumb {
	margin: 0 !important;
	padding: 12px 0 !important;
	color: var(--kcm-faint) !important;
	font-size: 11px !important;
	letter-spacing: .02em;
}

/* --------------------------------------------------------------------------
   Homepage — full-width editorial composition
   -------------------------------------------------------------------------- */

.home,
.home #content,
.home #l-main,
.home .l-main {
	background: var(--kcm-canvas) !important;
}

.home #content article,
.home #l-main {
	padding: clamp(22px, 2.7vw, 42px) var(--kcm-gutter) clamp(60px, 6vw, 98px) !important;
}

.home .body.field {
	width: 100%;
	max-width: none;
	margin: 0;
}

.home .body.field > .vc_row:first-child,
.home .body.field > .wpb_row:first-child {
	display: grid !important;
	grid-template-columns: clamp(238px, 17vw, 300px) minmax(0, 1fr);
	gap: clamp(18px, 2vw, 32px);
	align-items: start;
	width: 100% !important;
	margin: 0 !important;
}

.home .body.field > .vc_row:first-child > .wpb_column,
.home .body.field > .wpb_row:first-child > .wpb_column {
	width: auto !important;
	min-width: 0;
	padding: 0 !important;
	float: none !important;
}

.home .body.field > .vc_row:first-child > .wpb_column > .vc_column-inner,
.home .body.field > .wpb_row:first-child > .wpb_column > .vc_column-inner {
	padding: 0 !important;
}

.home .body.field > .vc_row:first-child > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper,
.home .body.field > .wpb_row:first-child > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px;
	position: sticky;
	top: 100px;
	background: var(--kcm-ink);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--kcm-radius-md);
	box-shadow: var(--kcm-shadow-sm);
}

.home .body.field > .vc_row:first-child > .wpb_column:first-child .wpb_content_element,
.home .body.field > .wpb_row:first-child > .wpb_column:first-child .wpb_content_element {
	margin: 0 !important;
}

.home .body.field > .vc_row:first-child > .wpb_column:first-child .wpb_single_image,
.home .body.field > .wpb_row:first-child > .wpb_column:first-child .wpb_single_image {
	margin: 0 !important;
	padding: 12px;
	background: rgba(255, 255, 255, .96) !important;
	border: 0 !important;
	border-radius: 10px;
	text-align: center;
}

.home .body.field > .vc_row:first-child > .wpb_column:first-child .wpb_single_image img,
.home .body.field > .wpb_row:first-child > .wpb_column:first-child .wpb_single_image img {
	width: auto;
	max-height: 126px;
	object-fit: contain;
}

.home .body.field > .vc_row:first-child > .wpb_column:first-child .wpb_text_column,
.home .body.field > .wpb_row:first-child > .wpb_column:first-child .wpb_text_column {
	padding: 5px 4px !important;
}

.home .body.field > .vc_row:first-child > .wpb_column:first-child .wpb_text_column p,
.home .body.field > .wpb_row:first-child > .wpb_column:first-child .wpb_text_column p {
	margin: 0;
	color: rgba(255, 255, 255, .66) !important;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .085em;
	text-transform: uppercase;
}

.home .blocText {
	margin: 0 !important;
	padding: 13px !important;
	border: 1px solid rgba(255, 255, 255, .1) !important;
	border-radius: 10px !important;
	background: rgba(255, 255, 255, .055) !important;
	color: rgba(255, 255, 255, .78) !important;
	box-shadow: none !important;
	transition: background-color var(--kcm-transition), transform var(--kcm-transition);
}

.home .blocText:hover {
	background: rgba(255, 255, 255, .1) !important;
	transform: translateY(-1px);
}

.home .blocText img {
	width: 100%;
	max-height: 126px;
	margin: 0;
	border-radius: 7px;
	object-fit: contain;
}

.home .blocText p {
	margin: 9px 0 0;
	font-size: 11px;
	line-height: 1.45;
	text-align: center;
}

.home .body.field > .vc_row:first-child > .wpb_column:last-child > .vc_column-inner > .wpb_wrapper,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child > .vc_column-inner > .wpb_wrapper {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: clamp(18px, 1.7vw, 28px);
}

.home .wpb_revslider_element,
.home rs-module-wrap,
.home .rev_slider_wrapper {
	border-radius: var(--kcm-radius-lg) !important;
	overflow: hidden !important;
}

.home .wpb_revslider_element {
	margin: 0 !important;
	background: var(--kcm-ink) !important;
	border: 0 !important;
	box-shadow: var(--kcm-shadow-sm) !important;
}

.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row,
.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 1.45vw, 24px);
	width: 100% !important;
	margin: 0 !important;
}

.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row > .wpb_column,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row > .wpb_column,
.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row > .wpb_column,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row > .wpb_column {
	display: block !important;
	width: auto !important;
	height: 100%;
	padding: 0 !important;
	float: none !important;
}

.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row > .wpb_column > .vc_column-inner,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row > .wpb_column > .vc_column-inner,
.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row > .wpb_column > .vc_column-inner,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row > .wpb_column > .vc_column-inner {
	height: 100%;
	padding: 0 !important;
}

.home .promo {
	height: 100%;
	margin: 0 !important;
}

.home .promo .wpb_wrapper {
	min-height: clamp(210px, 15vw, 292px);
	height: 100%;
	background-color: var(--kcm-ink-soft);
	background-position: center !important;
	background-size: cover !important;
	border: 0 !important;
	border-radius: var(--kcm-radius-md) !important;
	box-shadow: var(--kcm-shadow-xs);
	overflow: hidden;
	transition: transform var(--kcm-transition), box-shadow var(--kcm-transition);
}

.home .promo .wpb_wrapper:hover {
	transform: translateY(-4px);
	box-shadow: var(--kcm-shadow-lg);
}

.home .promo .wpb_wrapper .disc {
	padding: 22px !important;
	background: linear-gradient(to top, rgba(9, 10, 12, .91), rgba(9, 10, 12, 0) 76%) !important;
}

.home .promo .wpb_wrapper h3 {
	color: #fff !important;
	font-size: clamp(16px, 1.3vw, 20px) !important;
	font-weight: 690 !important;
	letter-spacing: -.02em;
}

.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row .wpb_single_image,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row .wpb_single_image,
.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row .wpb_single_image,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row .wpb_single_image {
	display: flex;
	min-height: 164px;
	height: 100%;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	padding: 24px;
	background: var(--kcm-surface) !important;
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-md) !important;
	box-shadow: none !important;
	transition: transform var(--kcm-transition), border-color var(--kcm-transition), box-shadow var(--kcm-transition);
}

.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row .wpb_single_image:hover,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row .wpb_single_image:hover,
.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row .wpb_single_image:hover,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row .wpb_single_image:hover {
	border-color: var(--kcm-border-strong) !important;
	transform: translateY(-3px);
	box-shadow: var(--kcm-shadow-sm) !important;
}

.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_single_image img,
.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_single_image img {
	width: auto;
	max-width: 80%;
	max-height: 112px;
	object-fit: contain;
}

.home .body.field .wpb_content_element,
.home .body.field .vc_row-has-fill + .vc_row-full-width + .vc_row,
.home .body.field .vc_row-has-fill > .vc_column_container > .vc_column-inner {
	margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   Catalog layout and filters
   -------------------------------------------------------------------------- */

.archive.woocommerce .boxed_layout > .row,
.page-template-page-woocommerce .boxed_layout > .row {
	display: grid;
	grid-template-columns: minmax(230px, 278px) minmax(0, 1fr);
	gap: clamp(24px, 3vw, 48px);
	width: 100%;
	margin: 0 !important;
	padding: clamp(30px, 4vw, 58px) var(--kcm-gutter) clamp(60px, 6vw, 96px) !important;
}

.archive.woocommerce .boxed_layout > .row > .large-3,
.page-template-page-woocommerce .boxed_layout > .row > .large-3,
.archive.woocommerce .boxed_layout > .row > .large-9,
.page-template-page-woocommerce .boxed_layout > .row > .large-9 {
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

.archive.woocommerce .boxed_layout > .row > .large-3,
.page-template-page-woocommerce .boxed_layout > .row > .large-3,
.single-product .large-3 {
	align-self: start;
	padding: 18px !important;
	position: sticky;
	top: 100px;
	background: var(--kcm-surface) !important;
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-md) !important;
	box-shadow: var(--kcm-shadow-xs) !important;
}

.widget.woocommerce {
	margin-bottom: 24px !important;
}

.single-product .large-3 .widget-title,
.page-template-page-woocommerce .large-3 .widget-title,
.archive .large-3 .widget-title,
.archive.woocommerce #secondary h4,
.page-template-page-woocommerce #secondary h4 {
	margin: 0 0 12px !important;
	padding: 0 0 12px !important;
	border: 0 !important;
	border-bottom: 1px solid var(--kcm-border) !important;
	color: var(--kcm-ink) !important;
	font-size: 11px !important;
	font-weight: 750 !important;
	letter-spacing: .085em;
	text-transform: uppercase !important;
}

.single-product li.cat-item,
.page-template-page-woocommerce li.cat-item,
.archive li.cat-item {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border-bottom: 1px solid var(--kcm-border) !important;
}

.single-product li.cat-item > a,
.page-template-page-woocommerce li.cat-item > a,
.archive li.cat-item > a {
	display: block;
	padding: 10px 2px !important;
	color: var(--kcm-muted) !important;
	font-size: 12px;
	font-weight: 550;
}

.single-product li.cat-item > a:hover,
.page-template-page-woocommerce li.cat-item > a:hover,
.archive li.cat-item > a:hover,
.page-template-page-woocommerce .widget-area ul li.current-cat > a,
.archive .widget-area ul li.current-cat > a {
	color: var(--kcm-accent) !important;
}

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
	margin: 0 0 20px !important;
}

.woocommerce .woocommerce-result-count {
	color: var(--kcm-muted);
	font-size: 12px;
}

.woocommerce .woocommerce-ordering select,
.page-template-page-woocommerce .orderby,
.archive .orderby {
	min-height: 42px;
	margin: 0 !important;
	padding-right: 38px !important;
	background-color: var(--kcm-surface) !important;
	font-size: 12px;
}

/* --------------------------------------------------------------------------
   Product and category cards
   -------------------------------------------------------------------------- */

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: clamp(14px, 1.55vw, 24px);
	width: 100%;
	margin: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce ul.products li.product-category {
	display: block !important;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	background: var(--kcm-surface) !important;
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-md) !important;
	box-shadow: none !important;
	overflow: hidden !important;
	transition: transform var(--kcm-transition), border-color var(--kcm-transition), box-shadow var(--kcm-transition);
}

.woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product-category:hover {
	padding-bottom: 0 !important;
	border-color: var(--kcm-border-strong) !important;
	transform: translateY(-3px);
	box-shadow: var(--kcm-shadow-sm) !important;
}

.woocommerce ul.products li.product-category {
	height: auto !important;
	min-height: 0 !important;
}

.woocommerce ul.products li.product-category a {
	display: grid !important;
	grid-template-rows: minmax(210px, 1fr) auto;
	height: 100%;
	margin: 0 !important;
	position: static !important;
	color: var(--kcm-ink) !important;
	text-decoration: none;
}

.woocommerce ul.products li.product-category a::before {
	display: none !important;
}

.woocommerce ul.products li.product-category img {
	position: static !important;
	inset: auto !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 210px;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 28px !important;
	background: var(--kcm-surface-soft) !important;
	object-fit: contain;
}

.woocommerce ul.products li.product-category h2 {
	position: static !important;
	display: flex !important;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	width: 100% !important;
	margin: 0 !important;
	padding: 16px 18px !important;
	background: var(--kcm-surface) !important;
	border-top: 1px solid var(--kcm-border);
	color: var(--kcm-ink) !important;
	font-size: 12px !important;
	font-weight: 730 !important;
	letter-spacing: .065em;
	text-align: left !important;
	text-transform: uppercase !important;
}

.woocommerce ul.products li.product-category h2::after {
	color: var(--kcm-accent);
	font-family: FontAwesome;
	font-size: 11px;
	content: "\f054";
}

.woocommerce ul.products li.product-type-yith_bundle,
.woocommerce ul.products li.product-type-variable,
.woocommerce ul.products li.product-type-grouped,
.woocommerce ul.products li.product-type-simple {
	padding: 14px !important;
}

.woocommerce ul.products li.product-type-yith_bundle .item,
.woocommerce ul.products li.product-type-variable .item,
.woocommerce ul.products li.product-type-simple .item,
.woocommerce ul.products li.product-type-grouped .item {
	display: grid !important;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 16px;
	height: 100%;
	align-items: start;
}

.woocommerce ul.products li.product-type-yith_bundle .thumbnail,
.woocommerce ul.products li.product-type-variable .thumbnail,
.woocommerce ul.products li.product-type-simple .thumbnail,
.woocommerce ul.products li.product-type-grouped .thumbnail {
	display: flex;
	width: 116px !important;
	min-height: 116px !important;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: var(--kcm-surface-soft) !important;
	border-radius: var(--kcm-radius-sm);
}

.woocommerce ul.products li.product-type-yith_bundle .thumbnail img,
.woocommerce ul.products li.product-type-variable .thumbnail img,
.woocommerce ul.products li.product-type-grouped .thumbnail img,
.woocommerce ul.products li.product-type-simple .thumbnail img {
	width: auto;
	max-width: 100%;
	max-height: 96px;
	margin: 0 auto;
	object-fit: contain;
}

.woocommerce ul.products li.product-type-yith_bundle .content,
.woocommerce ul.products li.product-type-variable .content,
.woocommerce ul.products li.product-type-simple .content,
.woocommerce ul.products li.product-type-grouped .content {
	display: flex !important;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	padding: 0 !important;
}

.woocommerce ul.products li.product .content .primary-info {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: start;
}

.woocommerce ul.products li.product .content h2 {
	margin: 0 0 7px !important;
	padding: 0 !important;
	background: transparent !important;
	color: var(--kcm-ink) !important;
	font-size: 15px !important;
	font-weight: 680 !important;
	line-height: 1.25 !important;
	letter-spacing: -.02em;
	text-transform: none !important;
}

.woocommerce ul.products li.product .content .primary-info .sku {
	padding: 2px 0 0;
	color: var(--kcm-faint) !important;
	font-size: 9px !important;
	font-style: normal;
	letter-spacing: .04em;
	text-align: right;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .loop-product-description {
	margin: 0 0 12px;
	color: var(--kcm-muted);
	font-size: 11px;
	line-height: 1.5;
}

.woocommerce ul.products li.product .loop-product-description p {
	margin: 0;
}

.woocommerce ul.products li.product .content form.cart {
	margin-top: auto;
}

.woocommerce .product form .actions {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto auto;
	width: 100%;
	margin: 10px 0 0 !important;
	padding: 0 !important;
	background: var(--kcm-surface-soft) !important;
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-sm) !important;
	overflow: hidden;
}

.woocommerce .product form .actions > div,
.woocommerce .product form .actions div.price,
.woocommerce .product form .actions div.quantity,
.woocommerce .product form .actions div.add-to-cart,
.woocommerce .product form .actions div.variations-table {
	display: flex !important;
	min-width: 0;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	padding: 7px 10px !important;
	border: 0 !important;
	border-right: 1px solid var(--kcm-border) !important;
	background: transparent !important;
}

.woocommerce .product form .actions > div:last-child,
.woocommerce .product form .actions div.add-to-cart {
	border-right: 0 !important;
}

.woocommerce .product form .actions div.price {
	color: var(--kcm-ink) !important;
	font-size: 12px !important;
	font-weight: 720 !important;
	white-space: nowrap;
}

.woocommerce .product form .actions div.quantity {
	width: 64px;
}

.woocommerce .product form .actions .quantity input.qty {
	width: 45px !important;
	height: 34px !important;
	min-height: 34px;
	margin: 0 !important;
	padding: 4px !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	text-align: center;
}

.woocommerce .product form .actions div.add-to-cart {
	width: 48px;
	padding: 0 !important;
}

.woocommerce .product form .actions div.add-to-cart .button,
.woocommerce .product form .actions .add_to_cart_inline .button {
	width: 48px !important;
	height: 48px !important;
	min-height: 48px;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--kcm-ink) !important;
	box-shadow: none !important;
}

.woocommerce .product form .actions div.add-to-cart .button::before,
.woocommerce .product form .actions .add_to_cart_inline .button::before {
	font-family: FontAwesome;
	font-size: 14px;
	content: "\f07a";
}

.woocommerce .product form .actions div.add-to-cart .button:hover,
.woocommerce .product form .actions .add_to_cart_inline .button:hover {
	background: var(--kcm-accent) !important;
	transform: none;
}

.woocommerce ul.products li .type-yith {
	display: inline-flex;
	margin-top: 2px;
	color: var(--kcm-accent) !important;
	font-size: 9px;
	font-style: normal;
	font-weight: 730;
	letter-spacing: .075em;
	text-transform: uppercase;
}

.single-product.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 6px 9px !important;
	border-radius: 0 0 9px 0 !important;
	background: var(--kcm-accent) !important;
	color: #fff !important;
	font-size: 9px !important;
	font-weight: 750 !important;
	line-height: 1.2 !important;
	letter-spacing: .07em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Single product
   -------------------------------------------------------------------------- */

.single-product #content,
.single-product #l-main,
.single-product .site-main {
	background: var(--kcm-canvas) !important;
}

.single-product .wd-header-single-product {
	width: 100%;
	padding: clamp(28px, 4vw, 58px) var(--kcm-gutter) clamp(60px, 6vw, 96px);
}

.single-product .wd-header-single-product > .row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
	gap: clamp(28px, 4vw, 64px);
	width: 100%;
	margin: 0 !important;
}

.single-product .wd-header-single-product > .row:first-child,
.single-product .wd-header-single-product > .row:last-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px !important;
}

.single-product .wd-header-single-product > .row > .columns,
.single-product .wd-header-single-product > .row > .images,
.single-product .wd-header-single-product > .row > .summary {
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.single-product .images,
.single-product .woocommerce-product-gallery {
	width: 100% !important;
	padding: clamp(18px, 2vw, 30px) !important;
	background: var(--kcm-surface) !important;
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-lg) !important;
	box-shadow: var(--kcm-shadow-xs);
}

.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	max-height: 620px;
	object-fit: contain;
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary,
.single-product .summary {
	width: 100% !important;
	padding: clamp(2px, 1vw, 16px) 0 !important;
}

.woocommerce div.product .product_title,
.single-product .summary h1 {
	margin: 0 0 16px !important;
	color: var(--kcm-ink) !important;
	font-size: clamp(2rem, 3.5vw, 3.8rem) !important;
	font-weight: 670 !important;
	line-height: 1.03 !important;
	letter-spacing: -.05em;
	text-transform: none !important;
}

.single-product .woocommerce-product-details__short-description {
	max-width: 680px;
	color: var(--kcm-muted);
	font-size: 14px;
	line-height: 1.7;
}

.single-product .summary > .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--kcm-ink) !important;
	font-size: 1.25rem !important;
	font-weight: 730;
}

.single-product .summary form.cart {
	margin: 26px 0 0 !important;
}

.single-product .summary form.cart .actions {
	max-width: 680px;
	background: var(--kcm-surface) !important;
	box-shadow: var(--kcm-shadow-xs);
}

.single-product .product_meta {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--kcm-border);
	color: var(--kcm-muted);
	font-size: 11px;
}

.single-product .back,
.single-product .entry-summary .back {
	margin: 0 !important;
	text-align: right !important;
}

.single-product .back a {
	min-height: 38px;
	padding: 8px 13px !important;
	border: 1px solid var(--kcm-border-strong) !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: var(--kcm-ink) !important;
	font-size: 10px !important;
	box-shadow: none !important;
}

.single-product .back a:hover {
	border-color: var(--kcm-ink) !important;
	background: var(--kcm-ink) !important;
	color: #fff !important;
}

.woocommerce-tabs {
	width: 100%;
	margin-top: clamp(38px, 5vw, 72px);
}

.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 24px;
	margin: 0 0 24px !important;
	padding: 0 !important;
	border-bottom: 1px solid var(--kcm-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none !important;
}

.woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 13px 0 !important;
	border-bottom: 2px solid transparent;
	color: var(--kcm-muted) !important;
	font-size: 11px;
	font-weight: 720 !important;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
	border-bottom-color: var(--kcm-accent);
	color: var(--kcm-ink) !important;
}

.woocommerce-tabs .panel {
	padding: clamp(20px, 2vw, 30px) !important;
	background: var(--kcm-surface) !important;
	border: 1px solid var(--kcm-border);
	border-radius: var(--kcm-radius-md);
}

.product-type-yith_bundle table.yith-wcpb-product-bundled-items {
	width: 100%;
	margin-top: 26px;
	background: var(--kcm-surface);
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-md);
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Notices, tables, checkout and account
   -------------------------------------------------------------------------- */

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	margin: 0 0 22px !important;
	padding: 16px 18px 16px 50px !important;
	border: 1px solid var(--kcm-border) !important;
	border-top: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-sm) !important;
	background: var(--kcm-surface) !important;
	color: var(--kcm-ink) !important;
	box-shadow: var(--kcm-shadow-xs) !important;
}

.woocommerce-message { border-left: 4px solid var(--kcm-success) !important; }
.woocommerce-info { border-left: 4px solid var(--kcm-accent) !important; }
.woocommerce-error { border-left: 4px solid var(--kcm-danger) !important; }

.woocommerce table.shop_table {
	width: 100%;
	background: var(--kcm-surface);
	border: 1px solid var(--kcm-border) !important;
	border-collapse: separate !important;
	border-spacing: 0;
	border-radius: var(--kcm-radius-md) !important;
	box-shadow: var(--kcm-shadow-xs);
	overflow: hidden;
}

.woocommerce table.shop_table th {
	padding: 14px !important;
	background: var(--kcm-ink) !important;
	color: #fff !important;
	font-size: 10px;
	font-weight: 720;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.woocommerce table.shop_table td {
	padding: 14px !important;
	background: var(--kcm-surface) !important;
	border-color: var(--kcm-border) !important;
}

.woocommerce table.shop_table tr:nth-child(even) td {
	background: var(--kcm-surface-soft) !important;
}

.woocommerce-cart article,
.woocommerce-checkout article,
.woocommerce-account article {
	min-height: 55vh;
}

.woocommerce-cart article h2,
.woocommerce-checkout article h2,
.woocommerce-account article h2,
.woocommerce-cart article h3,
.woocommerce-checkout article h3,
.woocommerce-account article h3 {
	margin: 0 0 22px;
	padding: 0 0 14px;
	background: transparent !important;
	border-bottom: 1px solid var(--kcm-border);
	color: var(--kcm-ink) !important;
	text-transform: none !important;
}

.woocommerce .cart-collaterals {
	width: min(100%, 520px) !important;
	margin-top: 28px;
	float: right !important;
}

.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password,
.woocommerce-MyAccount-content {
	padding: clamp(18px, 2.5vw, 34px) !important;
	background: var(--kcm-surface);
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-md) !important;
	box-shadow: var(--kcm-shadow-xs);
}

.woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 8px;
	background: var(--kcm-ink);
	border-radius: var(--kcm-radius-md);
	list-style: none;
}

.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	color: rgba(255, 255, 255, .72);
	font-size: 12px;
	text-decoration: none;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
	background: rgba(255, 255, 255, .09);
	color: #fff;
}

/* --------------------------------------------------------------------------
   Search results
   -------------------------------------------------------------------------- */

.kcm-fast-results,
.dgwt-wcas-suggestions-wrapp {
	max-height: 480px !important;
	background: var(--kcm-surface) !important;
	border: 1px solid var(--kcm-border) !important;
	border-radius: var(--kcm-radius-md) !important;
	box-shadow: var(--kcm-shadow-lg) !important;
	overflow: hidden auto !important;
}

.kcm-fast-item {
	padding: 12px !important;
	background: var(--kcm-surface) !important;
	border-bottom: 1px solid var(--kcm-border) !important;
}

.kcm-fast-item:hover {
	background: var(--kcm-surface-soft) !important;
}

.kcm-fast-image img {
	width: 54px !important;
	height: 54px !important;
	background: var(--kcm-surface-soft);
	border-radius: 8px;
	object-fit: contain !important;
}

.kcm-fast-title {
	color: var(--kcm-ink);
	font-size: 12px;
	font-weight: 680 !important;
}

.kcm-fast-sku,
.kcm-fast-price,
.kcm-fast-empty {
	color: var(--kcm-muted);
	font-size: 11px !important;
}

.kcm-fast-add-cart,
.kcm-fast-view-product {
	border: 1px solid var(--kcm-border-strong) !important;
	background: var(--kcm-surface) !important;
	color: var(--kcm-ink) !important;
}

.kcm-fast-add-cart:hover,
.kcm-fast-view-product:hover {
	border-color: var(--kcm-accent) !important;
	background: var(--kcm-accent) !important;
	color: #fff !important;
}

.kcm-fast-see-all {
	background: var(--kcm-surface-soft) !important;
	border-top: 1px solid var(--kcm-border) !important;
	color: var(--kcm-ink) !important;
}

/* --------------------------------------------------------------------------
   Editorial, forms and footer
   -------------------------------------------------------------------------- */

.wpb_wrapper h2 {
	margin: 0 !important;
	font-size: clamp(1.45rem, 2.3vw, 2.35rem) !important;
	font-weight: 670 !important;
	text-transform: none !important;
}

.wpb_wrapper .vc_separator {
	width: 42px;
	height: 2px;
	margin-top: 12px;
	background: var(--kcm-accent);
}

.attachment-ajzaa_blog-thumb {
	border-radius: var(--kcm-radius-md);
}

div.wpcf7-response-output {
	margin: 18px 0 0;
	padding: 13px 15px;
	background: var(--kcm-surface);
	border: 1px solid var(--kcm-border);
	border-left: 4px solid var(--kcm-accent);
	border-radius: var(--kcm-radius-sm);
}

.wd-footer {
	padding: 0 !important;
	background: var(--kcm-ink-soft) !important;
	color: rgba(255, 255, 255, .68);
}

.wd-footer > .row,
.wd-footer .row {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: clamp(36px, 4.5vw, 70px) var(--kcm-gutter) !important;
	border: 0 !important;
	border-radius: 0 !important;
}

.wd-footer > .row + .row {
	border-top: 1px solid rgba(255, 255, 255, .09) !important;
}

.wd-footer h1,
.wd-footer h2,
.wd-footer h3,
.wd-footer h4,
.wd-footer h5,
.wd-footer h6 {
	color: #fff !important;
}

.wd-footer a {
	color: rgba(255, 255, 255, .68) !important;
}

.wd-footer a:hover {
	color: #fff !important;
}

.suppliers_carousel {
	margin: 0 !important;
	border: 0 !important;
}

.owl-carousel .owl-stage .owl-item li a {
	filter: grayscale(1);
	opacity: .58;
	transition: filter var(--kcm-transition), opacity var(--kcm-transition);
}

.owl-carousel .owl-stage .owl-item li a:hover {
	filter: grayscale(0);
	opacity: 1;
}

footer.wd-copyright,
.wd-copyright {
	padding: 18px var(--kcm-gutter) !important;
	background: var(--kcm-ink) !important;
	border-top: 1px solid rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .55);
}

.wd-copyright .row {
	display: flex;
	width: 100%;
	max-width: none !important;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 0 !important;
	padding: 0 !important;
}

.wd-copyright .columns {
	width: auto !important;
	padding: 0 !important;
	float: none !important;
}

.wd-copyright p {
	margin: 0;
	font-size: 11px;
}

.wd-copyright a {
	color: rgba(255, 255, 255, .62) !important;
	font-size: 11px;
}

/* --------------------------------------------------------------------------
   Intermediate desktop
   -------------------------------------------------------------------------- */

@media only screen and (max-width: 1280px) and (min-width: 901px) {
	:root {
		--kcm-gutter: clamp(20px, 2.4vw, 34px);
	}

	.top-bar .bg-header {
		padding-right: 8px !important;
	}

	.top-bar .name .wd-logo h1 a img {
		max-width: 145px !important;
	}

	.menu-menu-top-container > ul > li > a,
	.menu-menu-top-container > ul > li.has-dropdown > a {
		padding-right: 7px !important;
		padding-left: 7px !important;
		font-size: 9.5px !important;
	}

	.menu-top-bar-container > ul > li > a {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.home .body.field > .vc_row:first-child,
	.home .body.field > .wpb_row:first-child {
		grid-template-columns: 230px minmax(0, 1fr);
	}

	.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row,
	.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	}
}

/* --------------------------------------------------------------------------
   Tablet and mobile navigation
   -------------------------------------------------------------------------- */

@media only screen and (max-width: 900px) {
	:root {
		--kcm-gutter: clamp(18px, 4.5vw, 32px);
	}

	html {
		scroll-padding-top: 76px;
	}

	.admin-bar .wd-header {
		top: 32px;
	}

	.wd-header .top-bar {
		display: block;
		min-height: 0;
	}

	.top-bar .bg-header {
		display: block;
		width: 100% !important;
		padding: 0 var(--kcm-gutter) !important;
	}

	.top-bar .title-area {
		display: flex;
		width: 100% !important;
		height: 72px;
		align-items: center;
		justify-content: space-between;
	}

	.top-bar .name {
		min-height: 72px !important;
		height: 72px !important;
		flex: 1 1 auto;
		padding: 0 !important;
		text-align: left !important;
	}

	.top-bar .name h1 a {
		height: 72px !important;
	}

	.top-bar .name .wd-logo h1 a img {
		max-width: min(168px, 52vw) !important;
		max-height: 48px !important;
	}

	.top-bar .toggle-topbar {
		display: flex !important;
		width: 44px;
		height: 44px;
		align-items: center;
		justify-content: center;
		margin: 0 !important;
		padding: 0 !important;
		position: relative !important;
		top: auto !important;
		right: auto !important;
		background: var(--kcm-surface-soft) !important;
		border: 1px solid var(--kcm-border);
		border-radius: 50%;
		transform: none !important;
	}

	.top-bar .toggle-topbar a {
		display: block !important;
		width: 44px;
		height: 44px;
		min-height: 44px;
		position: relative;
	}

	.top-bar .toggle-topbar a span {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		clip: rect(0 0 0 0);
		overflow: hidden;
	}

	.top-bar .toggle-topbar.menu-icon a::before,
	.top-bar .toggle-topbar.menu-icon a::after {
		position: absolute;
		left: 12px;
		width: 18px !important;
		height: 2px !important;
		content: "" !important;
		background: var(--kcm-ink) !important;
		border: 0 !important;
		box-shadow: 0 6px 0 var(--kcm-ink) !important;
	}

	.top-bar .toggle-topbar.menu-icon a::before {
		top: 15px;
	}

	.top-bar .toggle-topbar.menu-icon a::after {
		top: 27px;
		box-shadow: none !important;
	}

	.top-bar .top-bar-section {
		display: none !important;
		width: 100%;
		min-height: 0;
		padding: 8px var(--kcm-gutter) 18px !important;
		background: var(--kcm-ink) !important;
	}

	.top-bar.expanded .top-bar-section {
		display: block !important;
	}

	.top-bar-section .primary-area,
	.top-bar-section .secondary-area,
	.menu-menu-top-container,
	.menu-top-bar-container,
	.menu-menu-top-container > ul,
	.menu-top-bar-container > ul,
	.menu-menu-top-container > ul > li,
	.menu-top-bar-container > ul > li {
		display: block !important;
		width: 100% !important;
		height: auto;
	}

	.menu-menu-top-container > ul > li > a,
	.menu-menu-top-container > ul > li.has-dropdown > a,
	.menu-top-bar-container > ul > li > a {
		min-height: 46px;
		height: auto;
		justify-content: space-between;
		padding: 0 2px !important;
		border: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, .11) !important;
		border-radius: 0 !important;
		background: transparent !important;
		color: rgba(255, 255, 255, .85) !important;
		font-size: 11px !important;
		text-align: left !important;
	}

	.menu-menu-top-container > ul > li > a::before {
		display: none;
	}

	.top-bar-section ul .has-dropdown ul,
	.top-bar-section .menu-menu-top-container ul .has-dropdown ul {
		position: relative !important;
		left: auto !important;
		display: none !important;
		width: 100% !important;
		height: auto !important;
		margin: 0 !important;
		padding: 4px 0 4px 14px !important;
		clip: auto !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
	}

	.top-bar-section li.moved > .dropdown,
	.top-bar-section li.moved > ul {
		display: block !important;
	}

	.top-bar-section ul .has-dropdown ul li a,
	.top-bar-section ul .has-dropdown:hover ul li a {
		padding: 8px 4px !important;
		border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
		border-radius: 0 !important;
		color: rgba(255, 255, 255, .65) !important;
	}

	.top-bar-section .secondary-area {
		display: grid !important;
		grid-template-areas:
			"user-nav user-nav"
			"cart search";
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-top: 12px;
	}

	.menu-top-bar-container > ul > li > a {
		padding: 0 2px !important;
	}

	.top-bar-section .cart,
	.top-bar-section .search-action {
		width: 100%;
	}

	.top-bar-section .cart { justify-content: flex-end; }
	.top-bar-section .search-action { justify-content: flex-start; }

	.top-bar-section .cart .show-cart-btn,
	.top-bar-section .search-action #search-trigger {
		width: 42px !important;
		height: 42px !important;
		background: rgba(255, 255, 255, .08) !important;
		border-color: rgba(255, 255, 255, .16) !important;
		color: #fff !important;
	}

	.search-action,
	.search-action a,
	.search-action a i {
		color: #fff !important;
	}

	.hidden-search {
		padding-right: var(--kcm-gutter) !important;
		padding-left: var(--kcm-gutter) !important;
	}

	.home .body.field > .vc_row:first-child,
	.home .body.field > .wpb_row:first-child {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.home .body.field > .vc_row:first-child > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper,
	.home .body.field > .wpb_row:first-child > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.home .body.field > .vc_row:first-child > .wpb_column:first-child .wpb_text_column {
		grid-column: 1 / -1;
	}

	.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row,
	.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.archive.woocommerce .boxed_layout > .row,
	.page-template-page-woocommerce .boxed_layout > .row {
		grid-template-columns: 1fr;
	}

	.archive.woocommerce .boxed_layout > .row > .large-3,
	.page-template-page-woocommerce .boxed_layout > .row > .large-3,
	.single-product .large-3 {
		position: static;
		margin-bottom: 22px !important;
	}

	.single-product .wd-header-single-product > .row {
		grid-template-columns: 1fr;
	}

	.single-product .summary {
		margin-top: 0 !important;
	}

	.woocommerce .cart-collaterals {
		width: 100% !important;
		float: none !important;
	}
}

@media only screen and (max-width: 782px) {
	.admin-bar .wd-header {
		top: 46px;
	}
}

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */

@media only screen and (max-width: 640px) {
	body {
		font-size: 14px;
	}

	:root {
		--kcm-gutter: 16px;
		--kcm-radius-md: 14px;
		--kcm-radius-lg: 16px;
	}

	#content article,
	#l-main {
		padding-top: 28px !important;
		padding-bottom: 52px !important;
	}

	.wd-title-bar {
		padding-top: 36px !important;
		padding-bottom: 36px !important;
	}

	.wd-title-bar .wd-title-section h2 {
		align-items: flex-start;
		font-size: 1.75rem !important;
	}

	.home #content article,
	.home #l-main {
		padding-top: 14px !important;
	}

	.home .body.field > .vc_row:first-child > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper,
	.home .body.field > .wpb_row:first-child > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper {
		display: flex;
		padding: 10px;
	}

	.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row,
	.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row {
		grid-template-columns: 1fr;
	}

	.home .promo .wpb_wrapper {
		min-height: 200px;
	}

	.home .body.field > .vc_row:first-child > .wpb_column:last-child .vc_row .wpb_single_image,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .vc_row .wpb_single_image,
	.home .body.field > .vc_row:first-child > .wpb_column:last-child .wpb_row .wpb_single_image,
	.home .body.field > .wpb_row:first-child > .wpb_column:last-child .wpb_row .wpb_single_image {
		min-height: 132px;
	}

	.archive.woocommerce .boxed_layout > .row,
	.page-template-page-woocommerce .boxed_layout > .row {
		padding-top: 22px !important;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce ul.products li.product-type-yith_bundle .item,
	.woocommerce ul.products li.product-type-variable .item,
	.woocommerce ul.products li.product-type-simple .item,
	.woocommerce ul.products li.product-type-grouped .item {
		grid-template-columns: 98px minmax(0, 1fr);
		gap: 13px;
	}

	.woocommerce ul.products li.product-type-yith_bundle .thumbnail,
	.woocommerce ul.products li.product-type-variable .thumbnail,
	.woocommerce ul.products li.product-type-simple .thumbnail,
	.woocommerce ul.products li.product-type-grouped .thumbnail {
		width: 98px !important;
		min-height: 98px !important;
	}

	.woocommerce ul.products li.product .content .primary-info {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.woocommerce ul.products li.product .content .primary-info .sku {
		margin-bottom: 6px;
		text-align: left;
	}

	.woocommerce .product form .actions {
		grid-template-columns: minmax(0, 1fr) 58px 48px;
	}

	.woocommerce .product form .actions > div,
	.woocommerce .product form .actions div.price,
	.woocommerce .product form .actions div.quantity,
	.woocommerce .product form .actions div.add-to-cart,
	.woocommerce .product form .actions div.variations-table {
		padding: 6px !important;
	}

	.single-product .wd-header-single-product {
		padding-top: 20px;
	}

	.single-product .wd-header-single-product > .row:first-child {
		align-items: flex-start;
	}

	.woocommerce div.product .product_title,
	.single-product .summary h1 {
		font-size: 2.2rem !important;
	}

	.woocommerce-tabs ul.tabs {
		display: block;
		border: 0;
	}

	.woocommerce-tabs ul.tabs li,
	.woocommerce-tabs ul.tabs li a {
		display: block !important;
		width: 100%;
	}

	.woocommerce-tabs ul.tabs li a {
		border-bottom: 1px solid var(--kcm-border);
	}

	.woocommerce table.shop_table_responsive thead {
		display: none !important;
	}

	.woocommerce-cart table.shop_table_responsive tr,
	.woocommerce-cart table.shop_table_responsive tr th,
	.woocommerce-cart table.shop_table_responsive tr td {
		display: block !important;
		width: 100% !important;
	}

	.woocommerce-cart table.shop_table_responsive tr {
		padding: 12px;
		border-bottom: 1px solid var(--kcm-border);
	}

	.woocommerce-cart table.shop_table_responsive tr td {
		padding: 8px 0 !important;
	}

	.woocommerce-cart table.shop_table_responsive tr td::before {
		display: inline-block !important;
		margin-right: 8px;
		color: var(--kcm-muted);
		font-weight: 680;
	}

	.woocommerce form.checkout,
	.woocommerce form.login,
	.woocommerce form.register,
	.woocommerce form.lost_reset_password,
	.woocommerce-MyAccount-content {
		padding: 16px !important;
	}

	.wd-copyright .row {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.kcm-fast-image img {
		width: 46px !important;
		height: 46px !important;
	}

	.kcm-fast-view-product {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
