/*
Theme Name: GeneratePress Child
Theme URI: https://new.kfhair.com/
Description: Child theme for GeneratePress with project-specific design tokens and styles.
Author: Codex
Template: generatepress
Version: 1.0.0
Text Domain: generatepress-child
*/

:root {
	--font-body: "Mona Sans", sans-serif;
	--font-heading: "Mona Sans", sans-serif;
	--text-xs: 0.75rem;
	--text-xs--line-height: 1.3333333333;
	--text-sm: 0.875rem;
	--text-sm--line-height: 1.4285714286;
	--text-base: 1rem;
	--text-base--line-height: 1.5;
	--text-lg: 1.125rem;
	--text-lg--line-height: 1.5555555556;
	--text-xl: 1.25rem;
	--text-xl--line-height: 1.4;
	--text-2xl: 1.5rem;
	--text-2xl--line-height: 1.3333333333;
	--text-3xl: 1.875rem;
	--text-3xl--line-height: 1.2;
	--color-primary: #e41671;
	--color-primary-dark: #b80f58;
	--color-primary-soft: #fde8f1;
	--color-primary-ring: rgba(228, 22, 113, 0.18);
	--color-background: #ffffff;
	--color-surface: #ffffff;
	--color-surface-alt: #fff7fa;
	--color-heading: #1f1720;
	--color-text: #43313d;
	--color-text-muted: #7b6672;
	--color-border: #ead8e2;
	--color-border-strong: #d9bccb;
	--color-success: #0f8a5f;
	--color-warning: #b86a17;
	--radius-sm: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--shadow-sm: 0 10px 30px rgba(31, 23, 32, 0.06);
	--shadow-md: 0 16px 48px rgba(31, 23, 32, 0.1);
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: var(--text-base--line-height);
	color: var(--color-text);
	background: var(--color-background);
	letter-spacing: 0;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

@supports (overflow: clip) {

	html,
	body {
		overflow-x: clip;
	}
}

.site,
#page,
.site-content,
.content-area,
.inside-article,
.separate-containers .inside-article,
.one-container .site-content {
	background: #fff;
}

.page-id-5 .container.grid-container,
.page-id-5 .site-content.grid-container,
.page-id-5 .site-content,
.page-id-5 .content-area,
.page-id-5 .site-main,
.page-id-5 .inside-article {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.page-id-5 .content-area,
.page-id-5 .site-main {
	float: none;
	left: auto;
	right: auto;
}

.page-id-5 .entry-content {
	margin: 0;
}

.kf-home-page {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
	background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.entry-title {
	font-family: var(--font-heading);
	color: var(--color-heading);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
}

h1,
.site-title {
	font-size: var(--text-3xl);
	line-height: var(--text-3xl--line-height);
}

h2,
.entry-title {
	font-size: var(--text-2xl);
	line-height: var(--text-2xl--line-height);
}

h3 {
	font-size: var(--text-xl);
	line-height: var(--text-xl--line-height);
}

h4 {
	font-size: var(--text-lg);
	line-height: var(--text-lg--line-height);
}

h5 {
	font-size: var(--text-base);
	line-height: var(--text-base--line-height);
}

h6 {
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

p,
li,
dd,
dt,
blockquote,
figcaption {
	font-size: var(--text-base);
	line-height: var(--text-base--line-height);
}

small,
.text-xs {
	font-size: var(--text-xs);
	line-height: var(--text-xs--line-height);
}

.text-sm {
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.text-base {
	font-size: var(--text-base);
	line-height: var(--text-base--line-height);
}

.text-lg {
	font-size: var(--text-lg);
	line-height: var(--text-lg--line-height);
}

.text-xl {
	font-size: var(--text-xl);
	line-height: var(--text-xl--line-height);
}

.text-2xl {
	font-size: var(--text-2xl);
	line-height: var(--text-2xl--line-height);
}

.text-3xl {
	font-size: var(--text-3xl);
	line-height: var(--text-3xl--line-height);
}

a {
	color: var(--color-primary);
	text-decoration-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
	text-underline-offset: 0.18em;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus {
	color: var(--color-primary-dark);
	text-decoration-color: var(--color-primary-dark);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-button__link {
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 8px;
	box-shadow: none;
	color: #fff;
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--text-sm--line-height);
	padding: 0 22px;
	min-height: 44px;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	background: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.kf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 0 22px;
	border: 1px solid var(--color-primary);
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
	background-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 100%);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	box-shadow: none;
	color: var(--color-primary);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--text-sm--line-height);
	text-decoration: none;
	transition: background-size 0.32s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kf-button:hover,
.kf-button:focus {
	background-size: 100% 100%;
	border-color: var(--color-primary);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.kf-button::after {
	display: inline-block;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	background: currentColor;
	content: "";
	-webkit-mask: url("/wp-content/uploads/2026/06/arrow_right.svg") center / contain no-repeat;
	mask: url("/wp-content/uploads/2026/06/arrow_right.svg") center / contain no-repeat;
	transition: transform 0.2s ease;
}

.kf-button:hover::after,
.kf-button:focus::after {
	transform: translateX(3px);
}

.kf-scroll-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 990;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	background: var(--color-primary);
	box-shadow: 0 14px 34px rgba(31, 23, 32, 0.18);
	color: #fff;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		background-color 0.2s ease;
}

.kf-scroll-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.kf-scroll-top:hover,
.kf-scroll-top:focus {
	background: var(--color-primary-dark);
	color: #fff;
	transform: translateY(-2px);
}

.kf-scroll-top svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	padding: 0.8em 0.95em;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px var(--color-primary-ring);
	outline: 0;
}

blockquote,
pre,
code,
table,
.widget,
.inside-article,
.sidebar .widget,
.wp-block-group.is-style-default {
	border-color: var(--color-border);
}

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

.kf-site-header {
	position: fixed;
	top: 48px;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid rgba(31, 23, 32, 0.08);
	transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.admin-bar .kf-site-header {
	top: 80px;
}

body:not(.home) #page {
	padding-top: 140px;
}

.home .kf-site-header {
	top: 48px;
	background: rgba(5, 1, 10, 0.28);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.home .kf-site-header.is-past-hero,
.home .kf-site-header.menu-open {
	background: #fff;
	border-bottom: 1px solid rgba(31, 23, 32, 0.08);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.admin-bar.home .kf-site-header {
	top: 80px;
}

.kf-header-shell {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 28px;
	background: #fff;
}

.home .kf-header-shell {
	max-width: 1440px;
	padding: 0 10px;
	background: transparent;
}

.kf-header-bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	min-height: 92px;
}

.home .kf-header-bar {
	min-height: 70px;
}

.kf-brand {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
	white-space: nowrap;
}

.kf-brand img {
	display: block;
	width: auto;
	height: 64px;
	max-width: 260px;
	object-fit: contain;
}

.home .kf-brand img {
	height: 64px;
}

body.kf-menu-open {
	overflow: hidden;
}

.kf-primary-nav {
	display: flex;
	justify-content: center;
}

.kf-menu-list,
.kf-submenu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kf-menu-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
}

.kf-menu-item {
	position: relative;
}

.kf-menu-link-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
}

.kf-menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 92px;
	color: var(--color-heading);
	font-size: var(--text-sm);
	font-weight: 500;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: uppercase;
}

.home .kf-menu-item-top>.kf-menu-link-wrap .kf-menu-link {
	color: #fff;
}

.home .kf-site-header.is-past-hero .kf-menu-item-top>.kf-menu-link-wrap .kf-menu-link,
.home .kf-site-header.menu-open .kf-menu-item-top>.kf-menu-link-wrap .kf-menu-link {
	color: var(--color-heading);
}

.kf-menu-item-top.is-current>.kf-menu-link-wrap .kf-menu-link,
.kf-menu-item-top:hover>.kf-menu-link-wrap .kf-menu-link {
	color: var(--color-primary);
}

.kf-menu-item-top.is-current>.kf-menu-link-wrap .kf-menu-link::after,
.kf-menu-item-top:hover>.kf-menu-link-wrap .kf-menu-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	height: 2px;
	background: var(--color-primary);
	border-radius: 999px;
}

.kf-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-heading);
}

.home .kf-submenu-toggle {
	color: #fff;
}

.home .kf-site-header.is-past-hero .kf-submenu-toggle,
.home .kf-site-header.menu-open .kf-submenu-toggle {
	color: var(--color-heading);
}

.home .kf-submenu-list .kf-menu-link,
.home .kf-submenu-list .kf-submenu-toggle {
	color: var(--color-heading);
}

.kf-submenu-toggle svg,
.kf-tool-link svg,
.kf-search-toggle svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.kf-header-tools {
	display: flex;
	align-items: center;
	gap: 12px;
}

.kf-tool-link,
.kf-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--color-heading);
	padding: 0;
}

.home .kf-tool-link,
.home .kf-search-toggle {
	color: #fff;
}

.home .kf-site-header.is-past-hero .kf-tool-link,
.home .kf-site-header.is-past-hero .kf-search-toggle,
.home .kf-site-header.menu-open .kf-tool-link,
.home .kf-site-header.menu-open .kf-search-toggle {
	color: var(--color-heading);
}

.kf-tool-link:hover,
.kf-search-toggle:hover,
.kf-tool-link:focus,
.kf-search-toggle:focus {
	background: var(--color-surface-alt);
	color: var(--color-primary);
	transform: none;
}

.home .kf-tool-link:hover,
.home .kf-search-toggle:hover,
.home .kf-tool-link:focus,
.home .kf-search-toggle:focus {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.home .kf-site-header.is-past-hero .kf-tool-link:hover,
.home .kf-site-header.is-past-hero .kf-search-toggle:hover,
.home .kf-site-header.is-past-hero .kf-tool-link:focus,
.home .kf-site-header.is-past-hero .kf-search-toggle:focus,
.home .kf-site-header.menu-open .kf-tool-link:hover,
.home .kf-site-header.menu-open .kf-search-toggle:hover,
.home .kf-site-header.menu-open .kf-tool-link:focus,
.home .kf-site-header.menu-open .kf-search-toggle:focus {
	background: var(--color-surface-alt);
	color: var(--color-primary);
}

.kf-cart-link {
	position: relative;
}

.kf-cart-count {
	position: absolute;
	top: 1px;
	right: -1px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.kf-submenu-panel {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	min-width: 340px;
	padding: 14px 0;
	background: #fff;
	border: 1px solid rgba(31, 23, 32, 0.08);
	border-radius: 0 0 18px 18px;
	box-shadow: 0 28px 70px rgba(20, 16, 18, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.kf-menu-item:hover>.kf-submenu-panel,
.kf-menu-item:focus-within>.kf-submenu-panel,
.kf-menu-item.is-open>.kf-submenu-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.kf-submenu-list {
	padding: 0 14px;
}

.kf-submenu-list .kf-menu-item {
	display: block;
	border-bottom: 1px solid rgba(31, 23, 32, 0.06);
}

.kf-submenu-list .kf-menu-item:last-child {
	border-bottom: 0;
}

.kf-submenu-list .kf-menu-link {
	min-height: 0;
	padding: 12px 0;
	font-size: var(--text-sm);
	text-transform: none;
}

.kf-submenu-list .kf-submenu-toggle {
	width: 20px;
	height: 20px;
}

.kf-submenu-list .kf-submenu-panel {
	position: absolute;
	top: 0;
	left: calc(100% + 8px);
	min-width: 280px;
	padding: 10px 12px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(20, 16, 18, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: none;
}

.kf-submenu-list .kf-menu-item:hover>.kf-submenu-panel,
.kf-submenu-list .kf-menu-item:focus-within>.kf-submenu-panel,
.kf-submenu-list .kf-menu-item.is-open>.kf-submenu-panel {
	opacity: 1;
	visibility: visible;
}

.kf-search-panel {
	padding: 0 0 22px;
}

.kf-search-panel .search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	max-width: 290px;
	margin-left: auto;
}

.kf-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 999px;
}

.kf-menu-toggle:hover,
.kf-menu-toggle:focus,
.kf-menu-toggle:active {
	background: transparent;
	border: 0;
	box-shadow: none;
	transform: none;
}

.kf-menu-toggle:focus-visible {
	outline: 2px solid rgba(228, 22, 113, 0.65);
	outline-offset: 2px;
}

.kf-menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--color-heading);
	border-radius: 999px;
}

.home .kf-menu-toggle span {
	background: #fff;
}

.home .kf-site-header.is-past-hero .kf-menu-toggle span,
.home .kf-site-header.menu-open .kf-menu-toggle span {
	background: var(--color-heading);
}

.kf-menu-close {
	display: none;
}

.kf-menu-backdrop {
	display: none;
}

.kf-promo-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	min-height: 48px;
	background: #0b0311;
	border-bottom: 2px solid var(--color-primary);
	color: #fff;
}

.admin-bar .kf-promo-bar {
	top: 32px;
}

.kf-promo-track {
	position: relative;
	min-height: 22px;
	text-align: center;
}

.kf-promo-item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: #fff;
	font-size: var(--text-xs);
	font-weight: 400;
	line-height: var(--text-sm--line-height);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.kf-promo-item.is-active {
	opacity: 1;
	transform: translateY(0);
}

.kf-hero-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 auto;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.kf-hero-arrow:hover,
.kf-hero-arrow:focus {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.36);
	color: #fff;
	transform: none;
}

.kf-hero-arrow svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.kf-home-hero {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	min-height: 100vh;
	overflow: hidden;
	background: #050106;
	color: #fff;
}

.kf-hero-slides,
.kf-hero-slide {
	position: absolute;
	inset: 0;
}

.kf-hero-slide {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	background-color: #090412;
	padding: 190px 13vw 120px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease;
}

.kf-hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.kf-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.65;
	transform: scale(1.02);
	transition: transform 6s ease;
}

.kf-hero-slide.is-active .kf-hero-image {
	transform: scale(1);
}

.kf-hero-content {
	position: relative;
	z-index: 1;
	width: min(700px, 100%);
}

.kf-hero-eyebrow {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--text-sm);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kf-hero-title {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(3.3rem, 5vw, 5.5rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: 0;
}

.kf-hero-description {
	max-width: 560px;
	margin: 0 0 34px;
	color: rgba(255, 255, 255, 0.86);
	font-size: var(--text-lg);
	line-height: var(--text-lg--line-height);
}

.kf-hero-button {
	border-color: rgba(255, 255, 255, 0.88);
	background-color: rgba(255, 255, 255, 0.94);
	color: var(--color-primary);
}

.kf-hero-button:hover,
.kf-hero-button:focus {
	border-color: #fff;
	color: #fff;
}

.kf-hero-controls {
	position: absolute;
	right: 5vw;
	bottom: 118px;
	z-index: 2;
	display: flex;
	gap: 14px;
}

.kf-hero-arrow {
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.18);
}

.kf-hero-dots {
	position: absolute;
	left: 13vw;
	bottom: 118px;
	z-index: 2;
	display: flex;
	gap: 10px;
}

.kf-hero-dot {
	display: block;
	flex: 0 0 34px;
	width: 34px;
	height: 3px;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	appearance: none;
	background: rgba(255, 255, 255, 0.28);
	box-shadow: none;
	color: transparent;
	cursor: pointer;
	line-height: 0;
}

.kf-hero-dot.is-active,
.kf-hero-dot:hover,
.kf-hero-dot:focus {
	background: #fff;
	border-color: transparent;
	color: transparent;
	transform: none;
}

.kf-benefit-strip {
	position: relative;
	overflow: hidden;
	background: var(--color-primary);
	color: #fff;
}

.kf-benefit-track {
	display: flex;
	width: max-content;
	max-width: none;
}

.kf-benefit-group {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	flex: 0 0 auto;
	width: max-content;
	min-height: 60px;
	padding: 0 10px;
	gap: 30px;
}

.kf-benefit-item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	color: #fff;
	font-size: var(--text-sm);
	font-weight: 400;
	line-height: var(--text-sm--line-height);
	letter-spacing: 0;
	text-transform: uppercase;
}

.kf-benefit-image {
	display: block;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(31, 23, 32, 0.18);
	object-fit: cover;
	transform: rotate(-8deg);
}

.kf-benefit-image:nth-of-type(even) {
	transform: rotate(8deg);
}

.kf-home-section {
	margin-top: 100px;
}

.kf-section-shell {
	width: min(1440px, calc(100% - 40px));
	margin: 0 auto;
}

.kf-section-head {
	display: flex;
	align-items: self-end;
	justify-content: space-between;
	gap: 40px;
	margin: 0 0 34px;
}

.kf-section-head-copy {
	min-width: 0;
	max-width: 720px;
}

.kf-section-head-action {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
}

.kf-section-eyebrow {
	position: relative;
	display: inline-flex;
	margin: 0 0 10px;
	color: var(--color-primary);
	font-size: var(--text-xs);
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: var(--text-xs--line-height);
	text-transform: uppercase;
}

.kf-section-title {
	margin: 0;
	color: #e41671;
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 700;
	line-height: var(--text-3xl--line-height);
	letter-spacing: 0;
}

.kf-section-description {
	max-width: 500px;
	margin: 12px 0 0;
	color: #6f5d68;
	font-size: var(--text-base);
	line-height: var(--text-base--line-height);
}

.kf-section-link {
	box-shadow: 0 12px 28px rgba(123, 17, 56, 0.16);
	white-space: nowrap;
}

.kf-section-link:hover,
.kf-section-link:focus {
	box-shadow: 0 14px 30px rgba(123, 17, 56, 0.18);
}

.kf-category-slider {
	position: relative;
	--kf-category-gap: 28px;
}

.kf-category-viewport {
	overflow: hidden;
}

.kf-category-track {
	display: flex;
	gap: var(--kf-category-gap);
	transition: transform 0.45s ease;
	will-change: transform;
}

.kf-category-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	flex: 0 0 calc((100% - (var(--kf-category-gap) * 3)) / 4);
	min-height: 420px;
	overflow: hidden;
	border-radius: 8px;
	background: #090412;
	color: #fff;
	text-decoration: none;
}

.kf-category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 4, 18, 0.04) 0%, rgba(9, 4, 18, 0.28) 46%, rgba(9, 4, 18, 0.78) 100%);
}

.kf-category-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, opacity 0.45s ease;
}

.kf-category-card:hover .kf-category-image,
.kf-category-card:focus .kf-category-image {
	opacity: 0.88;
	transform: scale(1.04);
}

.kf-category-nav {
	position: absolute;
	top: 40%;
	right: -26px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 6px 2px;
	border-radius: 10px;
	background: #f5e8e6;
	box-shadow: 0 18px 40px rgba(9, 4, 18, 0.16);
	transform: translateY(-50%);
}

.kf-category-nav.is-hidden {
	display: none;
}

.kf-category-nav-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #090412;
}

.kf-category-nav-button:hover,
.kf-category-nav-button:focus {
	background: rgba(255, 255, 255, 0.62);
	color: #090412;
	transform: none;
}

.kf-category-nav-button:disabled {
	opacity: 0.34;
	cursor: default;
}

.kf-category-nav-button svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.kf-category-content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 3px;
	padding: 0 64px 24px 24px;
}

.kf-category-name {
	color: #fff;
	font-size: var(--text-xl);
	font-weight: 600;
	line-height: var(--text-xl--line-height);
}

.kf-category-count {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--text-xs);
	font-weight: 600;
	line-height: var(--text-xs--line-height);
}

.kf-category-arrow {
	position: absolute;
	right: 20px;
	bottom: 22px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #fff;
	color: #090412;
	box-shadow: 0 10px 24px rgba(9, 4, 18, 0.22);
}

.kf-category-arrow svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.kf-story-section {
	color: var(--color-text);
}

.kf-story-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
	align-items: center;
	gap: clamp(52px, 7vw, 96px);
}

.kf-story-media {
	position: relative;
	width: min(100%, 720px);
	aspect-ratio: 720 / 760;
	min-height: 0;
	justify-self: start;
}

.kf-story-image {
	position: absolute;
	display: block;
	overflow: hidden;
	max-width: none;
	border-radius: 8px;
	background: var(--color-surface-alt);
	box-shadow: 0 18px 46px rgba(31, 23, 32, 0.12);
	object-fit: cover;
}

.kf-story-image.is-primary {
	top: 0;
	left: 0;
	width: 64%;
	height: 96%;
	z-index: 1;
}

.kf-story-image.is-secondary {
	right: 0;
	top: 12%;
	width: 52%;
	height: 74%;
	z-index: 2;
}

.kf-story-image.is-accent {
	left: 19%;
	bottom: 0%;
	width: 41%;
	height: 23%;
	z-index: 3;
}

.kf-story-content {
	max-width: 540px;
}

.kf-offers-section {
	padding: 64px 0 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 18%, rgba(228, 22, 113, 0.08), transparent 28%),
		linear-gradient(180deg, #fff7fa 0%, #fff 100%);
}

.kf-offers-layout {
	display: grid;
	grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
	align-items: stretch;
	gap: 36px;
	min-height: 0;
}

.kf-offers-panel {
	--kf-offers-panel-bg-image: url("/wp-content/uploads/2026/06/bg.webp");
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 510px;
	padding: 40px 32px 32px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(146, 15, 66, 0.88), rgba(75, 8, 38, 0.76)),
		var(--kf-offers-panel-bg-image);
	background-position: center;
	background-size: cover;
	box-shadow: 0 18px 42px rgba(31, 23, 32, 0.14);
	color: #fff;
}

.kf-offers-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.18), transparent 30%);
	pointer-events: none;
}

.kf-offers-panel>* {
	position: relative;
	z-index: 1;
}

.kf-offers-note {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.92);
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: var(--text-sm--line-height);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kf-offers-kicker {
	margin: 0 0 6px;
	color: #fff;
	font-size: var(--text-2xl);
	font-weight: 400;
	line-height: var(--text-2xl--line-height);
}

.kf-offers-percent {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 0.78;
	white-space: nowrap;
}

.kf-offers-percent>span:first-child {
	font-size: 8.4rem;
	letter-spacing: 0;
}

.kf-offers-percent-meta {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
	line-height: 0.86;
	transform: translateY(30px);
}

.kf-offers-percent-meta sup {
	margin: 0;
	font-size: 2.7rem;
	line-height: 0.8;
}

.kf-offers-percent-meta span {
	color: #fff;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 0.9;
	text-transform: uppercase;
}

.kf-offers-small {
	margin: 20px 0 20px;
	color: rgba(255, 255, 255, 0.88);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.kf-offers-countdown-label {
	margin: auto 0 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: var(--text-xs);
	font-weight: 500;
	line-height: var(--text-xs--line-height);
}

.kf-offers-countdown {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.kf-offers-countdown span {
	display: grid;
	place-items: center;
	min-height: 72px;
	padding: 9px 4px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: var(--text-xs);
	font-weight: 500;
	line-height: var(--text-xs--line-height);
	text-transform: uppercase;
}

.kf-offers-countdown strong {
	display: block;
	color: #fff;
	font-size: var(--text-xl);
	font-weight: 500;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.kf-offers-button {
	margin-top: 30px;
}

.kf-offers-content {
	min-width: 0;
	overflow: hidden;
}

.kf-offers-head {
	display: flex;
	align-items: self-end;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 28px;
}

.kf-offers-nav {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding-top: 4px;
}

.kf-offers-nav.is-hidden {
	display: none;
}

.kf-offers-nav-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 28px rgba(31, 23, 32, 0.08);
	color: #090412;
}

.kf-offers-nav-button:hover,
.kf-offers-nav-button:focus {
	background: rgba(255, 255, 255, 0.72);
	color: var(--color-primary);
	transform: none;
}

.kf-offers-nav-button:disabled {
	opacity: 0.32;
	cursor: default;
}

.kf-offers-nav-button svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.kf-offers-slider {
	overflow: hidden;
}

.kf-product-grid-slider {
	display: flex;
	flex-wrap: nowrap;
	grid-template-columns: none;
	gap: 20px;
	transition: transform 0.45s ease;
	will-change: transform;
}

.kf-offers-slide {
	flex: 0 0 calc((100% - 40px) / 3);
	min-width: 0;
}

@media (max-width: 1440px) and (min-width: 768px) {
	.kf-offers-slide {
		flex-basis: calc((100% - 40px) / 3);
	}
}

.kf-product-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.kf-product-grid:not(.kf-product-grid-slider) {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px 20px;
}

.kf-popular-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 34px;
}

.kf-popular-tabs {
	display: flex;
	align-items: center;
	gap: 28px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.kf-popular-tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--color-text);
	font-size: var(--text-base);
	font-weight: 500;
	line-height: var(--text-base--line-height);
	white-space: nowrap;
}

.kf-popular-tab::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--color-primary);
	opacity: 0;
	transform: scaleX(0.5);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.kf-popular-tab:hover,
.kf-popular-tab:focus,
.kf-popular-tab.is-active {
	background: transparent;
	color: var(--color-primary);
	transform: none;
}

.kf-popular-tab.is-active::after {
	opacity: 1;
	transform: scaleX(1);
}

.kf-popular-slider {
	position: relative;
	overflow: visible;
}

.kf-popular-panel {
	overflow: hidden;
}

.kf-popular-panel[hidden] {
	display: none;
}

.kf-popular-slide {
	flex: 0 0 calc((100% - 60px) / 4);
	min-width: 0;
}

.kf-popular-nav {
	top: 34%;
	right: -26px;
}

.kf-popular-nav.is-hidden {
	display: none;
}

.kf-factory-section {
	overflow: hidden;
	padding: clamp(48px, 5vw, 76px) 0 0;
	background:
		radial-gradient(circle at 12% 10%, rgba(228, 22, 113, 0.08), transparent 32%),
		linear-gradient(135deg, #fff7fa 0%, #fff 48%, #fde8f1 100%);
}

.kf-factory-section .kf-section-shell {
	width: min(1440px, calc(100% - 40px));
	max-width: 1440px;
	padding: 0;
	padding-bottom: 30px;
}

.kf-factory-panel {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.7fr);
	gap: clamp(40px, 5vw, 76px);
	overflow: hidden;
}

.kf-factory-content {
	min-width: 0;
	align-self: center;
}

.kf-factory-section .kf-section-title {
	max-width: 420px;
}

.kf-factory-section .kf-section-description {
	max-width: 440px;
	margin: 16px 0 0;
	color: var(--color-text);
	font-size: var(--text-sm);
	line-height: var(--text-base--line-height);
}

.kf-factory-rule {
	display: block;
	width: 120px;
	height: 2px;
	margin: 20px 0 20px;
	background: linear-gradient(90deg, var(--color-primary) 0 72%, rgba(228, 22, 113, 0.22) 72% 100%);
}

.kf-factory-features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 34px;
}

.kf-factory-feature {
	min-width: 0;
}

.kf-factory-feature-icon,
.kf-factory-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: var(--color-primary);
}

.kf-factory-feature-icon::before,
.kf-factory-stat-icon::before {
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	background: #fff;
	-webkit-mask: var(--kf-factory-icon) center / contain no-repeat;
	mask: var(--kf-factory-icon) center / contain no-repeat;
}

.kf-factory-feature h3 {
	margin: 16px 0 8px;
	color: var(--color-heading);
	font-size: var(--text-base);
	font-weight: 600;
	line-height: var(--text-base--line-height);
}

.kf-factory-feature p {
	margin: 0;
	color: var(--color-text);
	font-size: var(--text-xs);
	line-height: var(--text-sm--line-height);
}

.kf-factory-media {
	min-width: 0;
	align-self: center;
}

.kf-factory-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	width: min(900px, 100%);
	margin: 0 auto 28px;
	overflow: hidden;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--color-primary-dark), #7e0b3c);
	box-shadow: 0 16px 34px rgba(111, 18, 48, 0.18);
}

.kf-factory-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 20px 18px;
	color: #fff;
}

.kf-factory-stat+.kf-factory-stat {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.kf-factory-stat-icon {
	width: 42px;
	height: 42px;
	background: transparent;
}

.kf-factory-stat-icon::before {
	width: 32px;
	height: 32px;
}

.kf-factory-stat-copy {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.kf-factory-stat-copy strong {
	color: #fff;
	font-size: var(--text-xl);
	font-weight: 700;
	line-height: var(--text-xl--line-height);
	white-space: nowrap;
}

.kf-factory-stat-copy span {
	color: rgba(255, 255, 255, 0.86);
	font-size: var(--text-xs);
	line-height: var(--text-xs--line-height);
}

.kf-factory-marquee {
	display: grid;
	gap: 18px;
	overflow: hidden;
}

.kf-factory-marquee-row {
	overflow: hidden;
}

.kf-factory-marquee-track {
	display: flex;
	width: max-content;
	gap: 18px;
	will-change: transform;
}

.kf-factory-marquee-row.is-forward .kf-factory-marquee-track {
	animation: kf-factory-marquee-left 34s linear infinite;
}

.kf-factory-marquee-row.is-reverse .kf-factory-marquee-track {
	animation: kf-factory-marquee-right 34s linear infinite;
}

.kf-factory-image {
	display: block;
	flex: 0 0 clamp(190px, 16vw, 280px);
	width: clamp(190px, 16vw, 280px);
	aspect-ratio: 1.55 / 1;
	overflow: hidden;
	border-radius: 8px;
	background: var(--color-surface-alt);
	object-fit: cover;
}

@keyframes kf-factory-marquee-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 9px));
	}
}

@keyframes kf-factory-marquee-right {
	from {
		transform: translateX(calc(-50% - 9px));
	}

	to {
		transform: translateX(0);
	}
}

.kf-product-card {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.kf-product-card-media {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
	background: #f4f0ef;
	height: 100%;
	aspect-ratio: auto;
}

.kf-product-gallery {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
}

.kf-product-gallery.is-dragging {
	cursor: grabbing;
}

.kf-product-gallery-track {
	display: flex;
	height: 100%;
	transition: transform 0.45s ease;
	will-change: transform;
}

.kf-product-gallery-slide {
	display: block;
	flex: 0 0 100%;
	height: 100%;
}

.kf-product-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
	border: 1px solid #00000000;
	border-radius: 10px;
}

.kf-product-card-media:hover .kf-product-image,
.kf-product-card-media:focus-within .kf-product-image {
	transform: scale(1.03);
}

.kf-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.kf-product-badge-modal {
	top: 22px;
	left: 22px;
	display: none;
}

.kf-product-badge-modal:not(:empty) {
	display: inline-flex;
}

.kf-product-gallery-dots {
	position: absolute;
	left: 50%;
	bottom: 16px;
	z-index: 2;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.kf-product-gallery-dot {
	display: inline-flex;
	flex: 0 0 24px;
	width: 24px;
	min-width: 0;
	height: 3px;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.48);
	box-shadow: none;
	appearance: none;
}

.kf-product-gallery-dot.is-active,
.kf-product-gallery-dot:hover,
.kf-product-gallery-dot:focus {
	background: #fff;
	transform: none;
}

.kf-product-quick-view {
	position: absolute;
	left: 50%;
	bottom: 40px;
	z-index: 3;
	min-height: 40px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: #090412;
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--text-sm--line-height);
	opacity: 0;
	transform: translate(-50%, 12px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.kf-product-card:hover .kf-product-quick-view,
.kf-product-card:focus-within .kf-product-quick-view {
	opacity: 1;
	transform: translate(-50%, 0);
}

.kf-product-quick-view:hover,
.kf-product-quick-view:focus {
	background: #fff;
	color: #090412;
	transform: translate(-50%, 0);
}

.kf-product-quick-view.is-loading {
	pointer-events: none;
	opacity: 0.72;
}

.kf-product-card-body {
	position: relative;
	z-index: 2;
	flex: 1 0 auto;
	padding-top: 12px;
	background: #fff;
}

.kf-product-card-label {
	margin: 0 0 6px;
	color: #8d86a7;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
	text-transform: uppercase;
}

.kf-product-card-title {
	margin: 0;
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: 1.45;
}

.kf-product-card-title a {
	display: -webkit-box;
	overflow: hidden;
	color: #090412;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.kf-product-card-title a:hover,
.kf-product-card-title a:focus {
	color: #090412;
	text-decoration: none;
}

.kf-product-card-price {
	margin-top: 6px;
	color: var(--color-primary);
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: var(--text-sm--line-height);
}

.kf-product-card-price .price {
	color: inherit;
}

.kf-product-card-price ins {
	color: inherit;
	text-decoration: none;
}

.kf-product-card-price del {
	color: #9991b0;
}

.kf-product-card-price .woocommerce-Price-amount {
	color: inherit;
}

.kf-quick-view[hidden] {
	display: none;
}

.kf-quick-view {
	position: fixed;
	inset: 0;
	z-index: 1600;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 2.4vw, 34px);
}

.kf-quick-view-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 4, 18, 0.68);
	backdrop-filter: blur(7px);
}

html.kf-quick-view-open,
body.kf-quick-view-open {
	overflow: hidden;
	overscroll-behavior: none;
}

body.kf-quick-view-open {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
}

.kf-quick-view-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 55fr) minmax(340px, 45fr);
	gap: clamp(16px, 2vw, 28px);
	width: min(1100px, calc(100vw - 48px));
	max-height: min(80dvh, 680px);
	padding: clamp(14px, 1.7vw, 24px);
	overflow: hidden;
	overscroll-behavior: contain;
	border: 1px solid rgba(255, 255, 255, 0.66);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 34px 110px rgba(9, 4, 18, 0.42);
}

.kf-quick-view-close {
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(31, 23, 32, 0.12);
	border-radius: 999px;
	background: #fff;
	color: #090412;
	box-shadow: 0 12px 30px rgba(9, 4, 18, 0.06);
}

.kf-quick-view-close:hover,
.kf-quick-view-close:focus {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	transform: none;
}

.kf-quick-view-close svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.kf-quick-view-media {
	height: clamp(360px, calc(80dvh - 48px), 632px);
	min-height: 0;
	overflow: hidden;
	border-radius: 12px;
	background: #fff7fb;
}

.kf-product-gallery-modal {
	height: 100%;
	aspect-ratio: auto;
}

.kf-product-gallery-modal .kf-product-gallery-track,
.kf-product-gallery-modal .kf-product-gallery-slide {
	height: 100%;
}

.kf-product-gallery-modal .kf-product-image {
	border-radius: 12px;
	border: 0;
	object-fit: cover;
	background: #fff;
}

.kf-product-gallery-modal .kf-product-gallery-dots {
	bottom: 22px;
}

.kf-product-gallery-modal .kf-product-gallery-dot {
	flex-basis: 26px;
	width: 26px;
	background: rgba(228, 22, 113, 0.26);
}

.kf-product-gallery-modal .kf-product-gallery-dot.is-active,
.kf-product-gallery-modal .kf-product-gallery-dot:hover,
.kf-product-gallery-modal .kf-product-gallery-dot:focus {
	background: var(--color-primary);
}

.kf-quick-view-body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-height: calc(min(80dvh, 680px) - clamp(28px, 3.4vw, 48px));
	padding: clamp(28px, 3vw, 42px) 10px clamp(18px, 2vw, 26px) 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	border-left: 0;
	background: #fff;
}

.kf-quick-view-label {
	margin: 0;
	color: var(--color-primary);
	font-size: var(--text-xs);
	font-weight: 500;
	line-height: var(--text-xs--line-height);
	text-transform: uppercase;
}

.kf-quick-view-title {
	margin: 16px 0 0;
	color: #090412;
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 500;
	line-height: var(--text-2xl--line-height);
}

.kf-quick-view-price {
	margin-top: 10px;
	color: var(--color-primary);
	font-size: var(--text-2xl);
	font-weight: 700;
	line-height: var(--text-2xl--line-height);
}

.kf-quick-view-price .price,
.kf-quick-view-price ins,
.kf-quick-view-price .woocommerce-Price-amount {
	color: inherit;
}

.kf-quick-view-price ins {
	text-decoration: none;
}

.kf-quick-view-price del {
	color: #9991b0;
	font-size: var(--text-base);
}

.kf-quick-view-attributes {
	display: grid;
	gap: 12px;
	margin-top: 12px;
}

.kf-quick-view-attribute {
	display: grid;
	gap: 8px;
}

.kf-quick-view-attribute-values {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.kf-quick-view-attribute-label {
	color: #8d86a7;
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--text-sm--line-height);
	text-transform: uppercase;
}

.kf-quick-view-attribute-value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid var(--color-primary);
	border-radius: 10px;
	background: #fff;
	color: var(--color-primary);
	font-size: var(--text-xs);
	font-weight: 400;
	line-height: var(--text-xs--line-height);
	cursor: pointer;
	transform: none;
}

.kf-quick-view-attribute-value:hover,
.kf-quick-view-attribute-value:focus,
.kf-quick-view-attribute-value.is-active {
	background: var(--color-primary);
	color: #fff;
	transform: none;
}

.kf-quick-view-purchase {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(9, 4, 18, 0.1);
}

.kf-quick-view.has-payment-methods .kf-quick-view-purchase {
	grid-template-columns: minmax(150px, 0.82fr) minmax(0, 1.55fr);
	align-items: end;
}

.kf-quick-view-purchase[hidden] {
	display: none;
}

.kf-quick-view-quantity {
	display: grid;
	min-width: 0;
}

.kf-quick-view-quantity[hidden] {
	display: none;
}

.kf-quick-view-quantity-label {
	position: static;
	display: block;
	width: auto;
	height: auto;
	margin-bottom: 8px;
	overflow: visible;
	clip: auto;
	white-space: normal;
	color: #8d86a7;
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--text-sm--line-height);
	text-transform: uppercase;
}

.kf-quick-view-quantity-control {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	width: 100%;
	height: 42px;
	min-height: 42px;
	max-height: 42px;
	border: 1px solid rgba(9, 4, 18, 0.12);
	border-radius: 8px;
	background: #fff;
}

.kf-quick-view-qty-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-primary);
	font-size: var(--text-xl);
	font-weight: 400;
	line-height: var(--text-xl--line-height);
}

.kf-quick-view-qty-button:hover,
.kf-quick-view-qty-button:focus,
.kf-quick-view-qty-button:active {
	background: transparent;
	color: var(--color-primary-dark);
	transform: none;
}

.kf-quick-view-qty-input {
	width: 64px;
	height: 42px;
	padding: 0;
	border-width: 0px !important;
	background: transparent;
	color: #090412;
	font-size: var(--text-base);
	font-weight: 400;
	line-height: var(--text-base--line-height);
	text-align: center;
}

.kf-quick-view-qty-input:focus {
	background: transparent;
	box-shadow: none;
}

.kf-quick-view-qty-input::-webkit-outer-spin-button,
.kf-quick-view-qty-input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.kf-quick-view-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 12px;
	margin-top: 0;
}

.kf-quick-view-actions .kf-button::after {
	display: none;
}

.kf-quick-view-action {
	height: 42px;
	min-height: 42px;
	max-height: 42px;
	padding-top: 0;
	padding-bottom: 0;
}

.kf-quick-view-action.is-whatsapp {
	width: 100%;
	margin-top: 16px;
}

.kf-quick-view-details {
	display: inline-block;
	margin-top: 22px;
	color: #8d86a7;
	font-size: var(--text-base);
	font-weight: 500;
	line-height: var(--text-base--line-height);
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.kf-quick-view-details:hover,
.kf-quick-view-details:focus {
	color: #090412;
}

.kf-blog-section {
	position: relative;
	background: transparent;
}

.kf-blog-feature {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(360px, 44vw, 560px);
	margin-bottom: 80px;
	overflow: hidden;
	border-radius: 8px;
	background-image:
		linear-gradient(90deg, rgba(9, 4, 18, 0.52), rgba(9, 4, 18, 0.58)),
		var(--kf-blog-feature-bg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.kf-blog-feature-content {
	position: relative;
	z-index: 1;
	width: min(760px, calc(100% - 32px));
	margin: 0 auto;
}

.kf-blog-feature-eyebrow {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--text-xs);
	font-weight: 700;
	line-height: var(--text-xs--line-height);
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.kf-blog-feature-title {
	margin: 0;
	color: #fff;
	font-family: var(--font-heading);
	font-size: clamp(2.4rem, 4vw, 4rem);
	font-weight: 500;
	line-height: 1.08;
}

.kf-blog-feature-text {
	width: min(720px, 100%);
	margin: 18px auto 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--text-lg);
	line-height: var(--text-lg--line-height);
}

.kf-blog-feature-button {
	margin-top: 34px;
	border-color: rgba(255, 255, 255, 0.92);
	background-color: rgba(255, 255, 255, 0.94);
}

.kf-blog-feature-button:hover,
.kf-blog-feature-button:focus {
	border-color: var(--color-primary);
}

.kf-blog-head {
	width: 100%;
	margin-bottom: 42px;
	text-align: left;
}

.kf-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.kf-blog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(31, 23, 32, 0.08);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.92);
}

.kf-blog-card-media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--color-primary-soft);
	text-decoration: none;
}

.kf-blog-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.kf-blog-card:hover .kf-blog-card-media img,
.kf-blog-card:focus-within .kf-blog-card-media img {
	transform: scale(1.04);
}

.kf-blog-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: 22px 24px 24px;
	justify-content: space-evenly;
}

.kf-blog-card-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 500;
	line-height: var(--text-xl--line-height);
}

.kf-blog-card-title a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--color-primary);
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.kf-blog-card-title a:hover,
.kf-blog-card-title a:focus {
	color: var(--color-primary-dark);
	text-decoration: none;
}

.kf-blog-card-excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 14px 0 0;
	color: var(--color-text);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.kf-blog-card-link {
	margin-top: 28px;
}

.kf-prefooter-contact {
	margin-top: 110px;
	padding: 0 0 8px;
	background: transparent;
}

.kf-prefooter-shell {
	width: min(1440px, calc(100% - 40px));
	margin: 0 auto;
}

.kf-prefooter-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 44px;
	align-items: start;
}

.kf-contact-form,
.kf-contact-info,
.kf-contact-map {
	border: 1px solid rgba(31, 23, 32, 0.08);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(31, 23, 32, 0.06);
}

.kf-contact-form {
	height: stretch;
	align-self: start;
	padding: 24px 24px 22px;
}

.kf-contact-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 22px;
}

.kf-contact-field {
	display: grid;
	gap: 8px;
	min-width: 0;
	color: var(--color-heading);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: var(--text-sm--line-height);
}

.kf-contact-field.is-wide {
	grid-column: 1 / -1;
}

.kf-contact-control {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--color-border);
	border-radius: 7px;
	background: var(--color-background);
	color: var(--color-heading);
}

.kf-contact-control svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.kf-contact-img-icon {
	display: block;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.kf-contact-control input,
.kf-contact-control select,
.kf-contact-control textarea {
	width: 100%;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
	outline: 0;
	box-shadow: none;
}

.kf-contact-form input,
.kf-contact-form select,
.kf-contact-form textarea {
	background: transparent !important;
}

.kf-contact-form input:-webkit-autofill,
.kf-contact-form input:-webkit-autofill:hover,
.kf-contact-form input:-webkit-autofill:focus,
.kf-contact-form textarea:-webkit-autofill,
.kf-contact-form textarea:-webkit-autofill:hover,
.kf-contact-form textarea:-webkit-autofill:focus,
.kf-contact-form select:-webkit-autofill,
.kf-contact-form select:-webkit-autofill:hover,
.kf-contact-form select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--color-text);
	box-shadow: 0 0 0 1000px transparent inset !important;
	transition: background-color 9999s ease-out;
}

.kf-contact-form input:focus,
.kf-contact-form input:focus-visible,
.kf-contact-form select:focus,
.kf-contact-form select:focus-visible,
.kf-contact-form textarea:focus,
.kf-contact-form textarea:focus-visible,
.kf-contact-form button:focus,
.kf-contact-form button:focus-visible,
.kf-contact-control:focus-within {
	border-color: var(--color-border);
	outline: 0;
	box-shadow: none;
}

.kf-contact-control select {
	min-height: 46px;
}

.kf-contact-phone-control {
	position: relative;
	gap: 9px;
}

.kf-country-dropdown {
	position: relative;
	flex: 0 0 70px;
	max-width: 70px;
	z-index: 5;
}

.kf-country-dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	min-height: 34px;
	padding: 0 8px 0 0;
	border: 0;
	border-right: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-heading);
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 500;
	line-height: var(--text-xs--line-height);
	text-align: left;
	cursor: pointer;
}

.kf-country-dropdown-toggle:hover,
.kf-country-dropdown-toggle:focus {
	background: transparent !important;
	color: var(--color-heading);
}

.kf-country-dropdown-toggle span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.kf-country-dropdown-toggle svg {
	width: 14px;
	height: 14px;
	transition: transform 0.18s ease;
}

.kf-country-dropdown.is-open .kf-country-dropdown-toggle svg {
	transform: rotate(180deg);
}

.kf-country-dropdown-panel {
	position: absolute;
	top: calc(100% + 12px);
	left: -46px;
	width: min(330px, calc(100vw - 42px));
	padding: 10px;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	background: var(--color-background);
	box-shadow: var(--shadow-md);
}

.kf-country-dropdown-search {
	width: 100%;
	height: 38px;
	padding: 0 12px !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 7px;
	background: transparent !important;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.kf-country-dropdown-list {
	display: grid;
	gap: 2px;
	max-height: 230px;
	margin-top: 8px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.kf-country-dropdown-option {
	display: block;
	width: 100%;
	padding: 9px 10px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 400;
	line-height: var(--text-sm--line-height);
	text-align: left;
	cursor: pointer;
}

.kf-country-dropdown-option.is-hidden {
	display: none;
}

.kf-country-dropdown-option:hover,
.kf-country-dropdown-option:focus,
.kf-country-dropdown-option.is-selected {
	background: var(--color-primary-soft);
	color: var(--color-primary-dark);
}

.kf-contact-phone-control input {
	flex: 1 1 auto;
}

.kf-contact-control.is-message {
	align-items: flex-start;
	padding-top: 14px;
}

.kf-contact-control textarea {
	min-height: 100px;
	resize: vertical;
}

.kf-contact-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 22px;
}

.kf-contact-submit,
.kf-contact-whatsapp {
	display: grid;
	grid-template-columns: 24px minmax(0, max-content);
	justify-content: center;
	align-items: center;
	gap: 2px 12px;
	min-height: 62px;
	padding: 10px 18px;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--text-sm--line-height);
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
}

.kf-contact-submit svg,
.kf-contact-whatsapp svg {
	grid-row: span 2;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.kf-contact-submit .kf-contact-img-icon,
.kf-contact-whatsapp .kf-contact-img-icon {
	grid-row: span 2;
	width: 24px;
	height: 24px;
}

.kf-contact-submit .kf-contact-img-icon {
	filter: brightness(0) invert(1);
}

.kf-contact-whatsapp:hover .kf-contact-img-icon,
.kf-contact-whatsapp:focus .kf-contact-img-icon {
	filter: brightness(0) invert(1);
}

.kf-contact-submit small,
.kf-contact-whatsapp small {
	grid-column: 2;
	font-size: var(--text-xs);
	font-weight: 400;
	line-height: var(--text-xs--line-height);
	text-transform: none;
}

.kf-contact-submit {
	border: 1px solid var(--color-heading);
	background: var(--color-heading);
	color: #fff;
}

.kf-contact-whatsapp {
	border: 1px solid var(--color-heading);
	background: var(--color-background);
	color: var(--color-heading);
}

.kf-contact-secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 16px 0 0;
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.kf-contact-secure svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--color-primary);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.kf-contact-info {
	padding: 22px 24px;
}

.kf-contact-side {
	display: grid;
	grid-template-rows: auto auto;
	gap: 0;
	min-height: 0;
}

.kf-contact-map {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-top: 20px;
	height: 210px;
	min-height: 210px;
	pointer-events: auto;
	touch-action: auto;
	overscroll-behavior: contain;
}

.kf-contact-map::before,
.kf-contact-map::after {
	display: none !important;
	content: none !important;
	pointer-events: none !important;
}

.kf-contact-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	border: 0;
	pointer-events: auto;
	touch-action: auto;
	user-select: auto;
	overscroll-behavior: contain;
}

.kf-contact-info-row {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) 18px;
	gap: 16px;
	align-items: center;
	min-height: 60px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(31, 23, 32, 0.1);
	color: var(--color-heading);
	text-decoration: none;
}

.kf-contact-info-row:first-child {
	padding-top: 0;
}

.kf-contact-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-primary);
	border-radius: 999px;
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 10px 24px rgba(31, 23, 32, 0.05);
}

.kf-contact-info-icon svg,
.kf-contact-info-row>svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.kf-contact-info-icon .kf-contact-img-icon {
	width: 23px;
	height: 23px;
	filter: brightness(0) invert(1);
}

.kf-contact-info-row small {
	display: block;
	color: var(--color-primary);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--text-sm--line-height);
	text-transform: uppercase;
}

.kf-contact-info-row strong {
	display: block;
	margin-top: 3px;
	color: var(--color-heading);
	font-size: var(--text-sm);
	font-weight: 400;
	line-height: var(--text-sm--line-height);
}

.kf-contact-info-row>svg {
	justify-self: end;
	width: 20px;
	height: 20px;
}

.kf-contact-submit:hover,
.kf-contact-submit:focus,
.kf-contact-whatsapp:hover,
.kf-contact-whatsapp:focus {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: #fff;
}

@media (min-width: 768px) and (max-width: 1180px) {
	.kf-prefooter-contact {
		padding: 58px 0;
	}

	.kf-prefooter-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.kf-contact-side {
		grid-template-rows: auto auto;
	}

	.kf-contact-map {
		height: 280px;
	}
}

@media (max-width: 767px) {
	.kf-prefooter-contact {
		margin-top: 72px;
		padding: 0px;
	}

	.kf-prefooter-shell {
		width: min(100%, calc(100% - 32px));
	}

	.kf-prefooter-head {
		margin-bottom: 22px;
	}

	.kf-prefooter-layout,
	.kf-contact-fields,
	.kf-contact-actions {
		grid-template-columns: 1fr;
	}

	.kf-prefooter-layout {
		gap: 18px;
	}

	.kf-contact-side {
		grid-template-rows: auto auto;
		gap: 0;
	}

	.kf-contact-map,
	.kf-contact-map iframe {
		min-height: 240px;
	}

	.kf-contact-map {
		height: 240px;
	}

	.kf-contact-form,
	.kf-contact-info {
		padding: 16px;
		border-radius: 10px;
	}

	.kf-contact-fields {
		gap: 14px;
	}

	.kf-contact-control {
		min-height: 44px;
		padding: 0 12px;
	}

	.kf-contact-phone-control {
		gap: 8px;
	}

	.kf-country-dropdown {
		flex-basis: 68px;
		max-width: 68px;
	}

	.kf-country-dropdown-panel {
		left: -40px;
		width: min(300px, calc(100vw - 32px));
	}

	.kf-country-dropdown-toggle {
		padding-right: 8px;
		font-size: 0.6875rem;
	}

	.kf-contact-control textarea {
		min-height: 76px;
	}

	.kf-contact-actions {
		gap: 12px;
		margin-top: 16px;
	}

	.kf-contact-submit,
	.kf-contact-whatsapp {
		min-height: 52px;
		padding: 8px 14px;
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-contact-submit small,
	.kf-contact-whatsapp small,
	.kf-contact-secure {
		font-size: var(--text-xs);
		line-height: var(--text-xs--line-height);
	}

	.kf-contact-secure {
		align-items: flex-start;
		text-align: center;
	}

	.kf-contact-info-row {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 12px;
		padding: 14px 0;
	}

	.kf-contact-info-row>svg {
		display: none;
	}

	.kf-contact-info-icon {
		width: 44px;
		height: 44px;
	}

	.kf-contact-info-icon svg,
	.kf-contact-info-icon .kf-contact-img-icon {
		width: 22px;
		height: 22px;
	}

	.kf-contact-info-row small {
		font-size: var(--text-xs);
		line-height: var(--text-xs--line-height);
	}

	.kf-contact-info-row strong {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
		overflow-wrap: anywhere;
	}
}

.kf-site-footer {
	margin-top: 96px;
	background: #fff;
	color: var(--color-text);
}

.kf-footer-shell {
	width: min(1440px, calc(100% - 40px));
	margin: 0 auto;
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.kf-footer-main {
	position: relative;
	overflow: hidden;
	padding: 72px 0 50px;
	border-top: 1px solid rgba(228, 22, 113, 0.08);
}

.kf-footer-main .kf-footer-shell {
	display: grid;
	grid-template-columns: minmax(330px, 1fr) minmax(0, 1.65fr);
	gap: clamp(20px, 4vw, 20px);
}

.kf-footer-brand {
	min-width: 0;
}

.kf-footer-logo {
	display: inline-flex;
	align-items: center;
	width: 168px;
	max-width: 100%;
	margin-bottom: 26px;
	text-decoration: none;
}

.kf-footer-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 58px;
	object-fit: contain;
}

.kf-footer-brand p {
	max-width: 420px;
	margin: 0;
	color: var(--color-text);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.kf-footer-contact {
	display: grid;
	gap: 7px;
	max-width: 430px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.kf-footer-contact li {
	display: flex;
	gap: 6px;
	align-items: flex-start;
	margin: 0;
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.kf-footer-contact strong {
	flex: 0 0 auto;
	color: var(--color-heading);
	font-weight: 700;
}

.kf-footer-contact a {
	color: var(--color-text-muted);
	text-decoration: none;
}

.kf-footer-contact a:hover,
.kf-footer-contact a:focus {
	color: var(--color-primary);
}

.kf-footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.kf-footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(228, 22, 113, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	color: var(--color-primary);
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kf-footer-socials a:hover,
.kf-footer-socials a:focus {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	transform: translateY(-2px);
}

.kf-footer-socials svg,
.kf-footer-benefit svg,
.kf-footer-bottom svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.kf-footer-socials img,
.kf-footer-benefit-icon img,
.kf-footer-whatsapp img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.kf-footer-socials img {
	transition: filter 0.2s ease;
}

.kf-footer-socials a:hover img,
.kf-footer-socials a:focus img {
	filter: brightness(0) invert(1);
}

.kf-footer-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2.4vw, 34px);
	min-width: 0;
}

.kf-footer-column h2 {
	position: relative;
	margin: 0 0 24px;
	padding-bottom: 14px;
	color: var(--color-heading);
	font-size: var(--text-base);
	font-weight: 800;
	line-height: var(--text-base--line-height);
}

.kf-footer-column h2::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	border-radius: 999px;
	background: var(--color-primary);
	content: "";
}

.kf-footer-column ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kf-footer-column li {
	margin: 0;
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
}

.kf-footer-column a {
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color 0.2s ease;
}

.kf-footer-column a:hover,
.kf-footer-column a:focus {
	color: var(--color-primary);
}

.kf-footer-benefits {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 10px;
	padding-top: 30px;
	border-top: 1px solid rgba(228, 22, 113, 0.16);
}

.kf-footer-benefit {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-width: 0;
	min-height: 82px;
	padding: 14px 16px;
	border: 1px solid rgba(228, 22, 113, 0.2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.58);
}

.kf-footer-benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: var(--color-primary);
	color: #fff;
}

.kf-footer-benefit-icon img {
	width: 28px;
	height: 28px;
	filter: brightness(0) invert(1);
}

.kf-footer-benefit strong,
.kf-footer-help strong {
	display: block;
	color: var(--color-heading);
	font-size: var(--text-sm);
	font-weight: 700;
	line-height: var(--text-sm--line-height);
}

.kf-footer-benefit small,
.kf-footer-help small {
	display: block;
	margin-top: 2px;
	color: var(--color-text);
	font-size: var(--text-xs);
	line-height: var(--text-xs--line-height);
}

.kf-footer-bottom {
	position: relative;
	overflow: hidden;
	padding: 46px 0 42px;
	background:
		radial-gradient(circle at 25% 28%, rgba(255, 255, 255, 0.08), transparent 18%),
		linear-gradient(135deg, #8a063e 0%, #b80f58 48%, #7b0738 100%);
	color: rgba(255, 255, 255, 0.84);
}

.kf-footer-bottom::before,
.kf-footer-bottom::after {
	position: absolute;
	bottom: -56px;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 42% 58% 48% 52%;
	opacity: 0.8;
	content: "";
	pointer-events: none;
}

.kf-footer-bottom::before {
	left: -54px;
}

.kf-footer-bottom::after {
	right: -54px;
	transform: rotate(24deg);
}

.kf-footer-bottom .kf-footer-shell {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: center;
	justify-items: center;
	position: relative;
	z-index: 1;
}

.kf-footer-help {
	display: flex;
	gap: 26px;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.kf-footer-bottom strong,
.kf-footer-bottom small {
	color: inherit;
}

.kf-footer-lock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.kf-footer-help-divider {
	width: 1px;
	height: 56px;
	background: rgba(255, 255, 255, 0.46);
}

.kf-footer-whatsapp {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	min-width: 300px;
	min-height: 50px;
	padding: 0 34px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: var(--text-lg--line-height);
	text-decoration: none;
}

.kf-footer-whatsapp img {
	flex: 0 0 auto;
}

.kf-footer-whatsapp:hover,
.kf-footer-whatsapp:focus {
	background: #fff;
	color: var(--color-primary-dark);
}

.kf-footer-copyright {
	width: min(920px, 100%);
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	color: rgba(255, 255, 255, 0.88);
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
	text-align: center;
	font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1180px) {
	.kf-footer-main .kf-footer-shell {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.kf-footer-brand p {
		max-width: 620px;
	}

	.kf-footer-links {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 18px;
	}

	.kf-footer-column h2 {
		font-size: var(--text-base);
		line-height: var(--text-base--line-height);
	}

	.kf-footer-column li {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-footer-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.kf-footer-bottom .kf-footer-shell {
		grid-template-columns: 1fr;
	}

	.kf-footer-help {
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.kf-site-footer {
		margin-top: 72px;
	}

	.kf-footer-shell {
		width: min(100%, calc(100% - 32px));
	}

	.kf-footer-main {
		padding: 42px 0 30px;
	}

	.kf-footer-main .kf-footer-shell {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.kf-footer-logo {
		width: 158px;
		margin-bottom: 18px;
	}

	.kf-footer-logo img {
		height: 48px;
	}

	.kf-footer-brand p {
		max-width: none;
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-footer-contact {
		max-width: none;
		margin-top: 14px;
	}

	.kf-footer-contact li {
		display: block;
		font-size: var(--text-xs);
		line-height: var(--text-xs--line-height);
	}

	.kf-footer-contact strong {
		margin-right: 4px;
	}

	.kf-footer-socials {
		margin-top: 20px;
	}

	.kf-footer-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 14px;
	}

	.kf-footer-column h2 {
		margin-bottom: 14px;
		padding-bottom: 12px;
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-footer-column h2::after {
		width: 24px;
	}

	.kf-footer-column ul {
		gap: 8px;
	}

	.kf-footer-column li {
		font-size: var(--text-xs);
		line-height: var(--text-xs--line-height);
	}

	.kf-footer-benefits {
		grid-template-columns: 1fr;
		gap: 8px;
		padding-top: 20px;
	}

	.kf-footer-benefit {
		grid-template-columns: 48px minmax(0, 1fr);
		min-height: 0;
		padding: 12px;
	}

	.kf-footer-benefit-icon {
		width: 48px;
		height: 48px;
	}

	.kf-footer-benefit strong,
	.kf-footer-help strong {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-footer-benefit small,
	.kf-footer-help small {
		font-size: var(--text-xs);
		line-height: var(--text-xs--line-height);
	}

	.kf-footer-bottom {
		padding: 34px 0 30px;
	}

	.kf-footer-bottom .kf-footer-shell {
		gap: 24px;
	}

	.kf-footer-help {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 10px 14px;
		align-items: center;
		justify-content: stretch;
		width: 100%;
	}

	.kf-footer-help>span:nth-child(2) {
		min-width: 0;
	}

	.kf-footer-lock {
		width: 48px;
		height: 48px;
	}

	.kf-footer-help-divider {
		display: none;
	}

	.kf-footer-whatsapp {
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
		min-height: 48px;
		margin-top: 8px;
		padding: 0 18px;
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-footer-copyright {
		padding-top: 20px;
		text-align: center;
	}
}

.editor-styles-wrapper {
	background: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-body);
}

.editor-styles-wrapper .block-editor-block-list__block,
.editor-styles-wrapper p,
.editor-styles-wrapper li {
	font-size: var(--text-base);
	line-height: var(--text-base--line-height);
}

.editor-styles-wrapper h1 {
	font-size: var(--text-3xl);
	line-height: var(--text-3xl--line-height);
}

.editor-styles-wrapper h2 {
	font-size: var(--text-2xl);
	line-height: var(--text-2xl--line-height);
}

.editor-styles-wrapper h3 {
	font-size: var(--text-xl);
	line-height: var(--text-xl--line-height);
}

.editor-styles-wrapper h4 {
	font-size: var(--text-lg);
	line-height: var(--text-lg--line-height);
}

.editor-styles-wrapper h5 {
	font-size: var(--text-base);
	line-height: var(--text-base--line-height);
}

.editor-styles-wrapper h6 {
	font-size: var(--text-sm);
	line-height: var(--text-sm--line-height);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1180px) {
	.kf-header-bar {
		grid-template-columns: auto 1fr auto;
		gap: 20px;
	}

	.kf-menu-toggle {
		display: inline-flex;
	}

	.kf-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 0 20px 20px;
		background: #fff;
		border-bottom: 1px solid rgba(31, 23, 32, 0.08);
	}

	.kf-brand {
		grid-column: 2;
		justify-self: center;
	}

	.kf-menu-toggle {
		grid-column: 1;
		justify-self: start;
	}

	.kf-header-tools {
		grid-column: 3;
		justify-self: end;
	}

	.kf-header-tools .kf-search-toggle,
	.kf-header-tools .kf-tool-link:not(.kf-cart-link) {
		display: none;
	}

	.kf-header-tools .kf-cart-link {
		display: inline-flex;
	}

	.home .kf-primary-nav {
		background: #fff;
		border-bottom-color: rgba(31, 23, 32, 0.08);
	}

	.kf-primary-nav.is-open {
		display: block;
	}



	.kf-menu-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 16px 0 0;
	}

	.home .kf-primary-nav .kf-menu-link,
	.home .kf-primary-nav .kf-submenu-toggle,
	.home .kf-primary-nav .kf-submenu-list .kf-menu-link,
	.home .kf-primary-nav .kf-submenu-list .kf-submenu-toggle {
		color: var(--color-heading);
	}

	.home .kf-primary-nav .kf-menu-item-top.is-current>.kf-menu-link-wrap .kf-menu-link,
	.home .kf-primary-nav .kf-menu-item-top:hover>.kf-menu-link-wrap .kf-menu-link,
	.home .kf-primary-nav .kf-menu-item.is-open>.kf-menu-link-wrap .kf-menu-link {
		color: var(--color-primary);
	}

	.kf-menu-link {
		min-height: 0;
		padding: 14px 0;
	}

	.kf-menu-item-top.is-current>.kf-menu-link-wrap .kf-menu-link::after,
	.kf-menu-item-top:hover>.kf-menu-link-wrap .kf-menu-link::after {
		display: none;
	}

	.kf-submenu-panel {
		position: static;
		width: 100%;
		min-width: 0;
		padding: 8px 0 0;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
	}

	.home .kf-submenu-panel {
		background: #fff;
	}

	.kf-menu-item.is-open>.kf-submenu-panel {
		display: block;
	}

	.kf-submenu-list .kf-submenu-panel {
		position: static;
		min-width: 0;
		padding: 8px 0 0 12px;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
	}

	.home .kf-submenu-list .kf-menu-item {
		border-bottom-color: rgba(31, 23, 32, 0.06);
	}

	.kf-home-hero {
		min-height: 760px;
	}

	.kf-hero-slide {
		padding: 170px 8vw 110px;
	}

	.kf-hero-title {
		font-size: 4rem;
	}

	.kf-hero-controls {
		right: 8vw;
		bottom: 72px;
	}

	.kf-hero-dots {
		left: 8vw;
		bottom: 48px;
	}

	.kf-category-card {
		min-height: 380px;
	}

	.kf-story-layout {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
		gap: 42px;
	}

	.kf-story-media {
		width: min(100%, 620px);
	}

	.kf-offers-layout {
		grid-template-columns: 270px minmax(0, 1fr);
		gap: 24px;
	}

	.kf-offers-panel {
		min-height: 520px;
		padding: 30px 22px 24px;
	}

	.kf-offers-percent>span:first-child {
		font-size: 4.6rem;
	}

	.kf-offers-percent-meta sup {
		font-size: 2rem;
	}

	.kf-offers-percent-meta span {
		font-size: 1.45rem;
	}

	.kf-offers-countdown {
		gap: 8px;
	}

	.kf-offers-countdown span {
		min-height: 68px;
	}

	.kf-offers-content {
		padding: 0;
	}

	.kf-offers-slide {
		flex-basis: calc((100% - 40px) / 3);
	}

	.kf-product-grid:not(.kf-product-grid-slider) {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 28px 18px;
	}

	.kf-section-head {
		gap: 18px;
	}

	.kf-section-description {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-popular-head {
		align-items: flex-start;
		gap: 22px;
	}

	.kf-popular-tabs {
		gap: 20px;
	}

	.kf-popular-track {
		gap: 18px;
	}

	.kf-popular-slide {
		flex-basis: calc((100% - 54px) / 4);
	}

	.kf-factory-panel {
		grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.25fr);
		gap: 34px;
		padding: 42px 32px;
	}

	.kf-factory-features {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.kf-factory-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kf-factory-stat:nth-child(odd) {
		border-left: 0;
	}

	.kf-factory-stat:nth-child(n+3) {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.kf-factory-image {
		flex-basis: 220px;
		width: 220px;
	}

	.kf-blog-section {
		padding: 64px 0 0;
	}

	.kf-blog-grid {
		gap: 22px;
	}

	.kf-blog-card-body {
		padding: 20px;
	}

	.kf-blog-card-title {
		font-size: var(--text-lg);
		line-height: var(--text-lg--line-height);
	}

	.kf-quick-view-dialog {
		grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
		width: min(100%, calc(100vw - 32px));
		max-height: min(80dvh, 620px);
		padding: 16px;
	}

	.kf-quick-view-media {
		height: clamp(320px, calc(80dvh - 32px), 588px);
	}

	.kf-quick-view-body {
		max-height: calc(min(80dvh, 620px) - 32px);
		padding: 30px 6px 20px 0;
	}
}

@media (max-width: 767px) {
	.kf-promo-bar {
		grid-template-columns: 1fr;
		min-height: 44px;
	}

	.kf-scroll-top {
		right: 16px;
		bottom: 18px;
		width: 42px;
		height: 42px;
	}

	.kf-promo-item {
		padding: 0 4px;
		font-size: 10px;
	}

	.kf-site-header,
	.home .kf-site-header {
		top: 44px;
	}

	.admin-bar .kf-site-header {
		top: 90px;
	}

	.admin-bar .kf-promo-bar {
		top: 46px;
	}

	body:not(.home) #page {
		padding-top: 96px;
	}

	.kf-header-shell {
		padding: 0 18px;
	}

	.kf-header-bar {
		position: relative;
		display: block;
		min-height: 52px;
	}

	.home .kf-site-header.menu-open {
		background: #fff;
		backdrop-filter: none;
	}

	.kf-brand {
		position: absolute;
		top: 50%;
		left: 50%;
		justify-content: center;
		width: 154px;
		height: 42px;
		transform: translate(-50%, -50%);
	}

	.kf-menu-toggle {
		position: absolute;
		top: 50%;
		left: 0;
		display: inline-flex;
		width: 40px;
		height: 40px;
		padding: 0;
		transform: translateY(-50%);
	}

	.kf-menu-toggle:hover,
	.kf-menu-toggle:focus,
	.kf-menu-toggle:active {
		transform: translateY(-50%);
	}

	.kf-header-tools {
		position: absolute;
		top: 50%;
		right: 0;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 40px;
		height: 40px;
		transform: translateY(-50%);
	}

	.kf-header-tools .kf-search-toggle,
	.kf-header-tools .kf-tool-link:not(.kf-cart-link) {
		display: none;
	}

	.kf-brand {
		max-width: 154px;
	}

	.kf-brand img {
		height: 40px;
		max-width: 154px;
		transform: none;
	}

	.home .kf-brand img {
		height: 40px;
	}

	.kf-primary-nav {
		position: fixed;
		top: 96px;
		bottom: 0;
		left: 0;
		right: auto;
		z-index: 999;
		display: block;
		width: 66.666vw;
		max-width: 360px;
		max-height: none;
		padding: 14px 18px 28px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: #fff;
		border-right: 1px solid rgba(31, 23, 32, 0.08);
		border-bottom: 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate3d(-102%, 0, 0);
		transition:
			transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.14s linear,
			visibility 0s linear 0.2s;
		will-change: transform;
		contain: layout paint;
		backface-visibility: hidden;
		-webkit-overflow-scrolling: touch;
	}

	.admin-bar .kf-primary-nav {
		top: 142px;
	}

	.kf-menu-backdrop {
		position: fixed;
		top: 96px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 998;
		display: block;
		background: rgba(9, 4, 18, 0.24);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.14s linear, visibility 0s linear 0.14s;
	}

	.kf-menu-backdrop[hidden] {
		display: none;
	}

	.kf-menu-backdrop.is-open {
		opacity: 1;
		visibility: visible;
		transition: opacity 0.14s linear, visibility 0s;
	}

	.admin-bar .kf-menu-backdrop {
		top: 142px;
	}

	.kf-primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate3d(0, 0, 0);
		transition:
			transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.12s linear,
			visibility 0s;
	}

	.home .kf-primary-nav {
		background: #fff;
	}

	.kf-menu-list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding-top: 10px;
	}

	.kf-menu-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		margin: 0 0 6px auto;
		padding: 0;
		border: 1px solid rgba(31, 23, 32, 0.1);
		border-radius: 999px;
		background: #fff;
		color: var(--color-heading);
	}

	.kf-menu-close:hover,
	.kf-menu-close:focus {
		background: var(--color-primary-soft);
		border-color: var(--color-primary);
		color: var(--color-primary);
		transform: none;
	}

	.kf-menu-close svg {
		width: 20px;
		height: 20px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 2;
	}

	.kf-menu-link-wrap {
		justify-content: space-between;
	}

	.kf-menu-link {
		min-height: 0;
		width: 100%;
		padding: 13px 2px;
		font-size: var(--text-sm);
		font-weight: 700;
		line-height: var(--text-sm--line-height);
	}

	.kf-submenu-panel {
		position: static;
		width: 100%;
		min-width: 0;
		padding: 0 0 8px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
	}

	.home .kf-submenu-panel {
		background: #fff;
	}

	.kf-submenu-list {
		padding: 0 0 0 10px;
	}

	.kf-submenu-list .kf-menu-link {
		padding: 10px 0;
		font-size: var(--text-sm);
		font-weight: 500;
		color: var(--color-text-muted);
	}

	.home .kf-primary-nav .kf-submenu-list .kf-menu-link {
		color: var(--color-text-muted);
	}

	.kf-header-tools {
		gap: 0;
	}

	.kf-tool-link,
	.kf-search-toggle {
		width: 44px;
		height: 44px;
	}

	.kf-cart-link svg,
	.kf-menu-toggle span {
		flex: 0 0 auto;
	}

	.kf-cart-count {
		top: 3px;
		right: 0;
	}

	.kf-home-hero {
		min-height: 680px;
	}

	.kf-hero-slide {
		padding: 132px 18px 104px;
	}

	.kf-hero-title {
		font-size: 2.6rem;
		line-height: 0.98;
	}

	.kf-hero-description {
		font-size: var(--text-base);
		line-height: var(--text-base--line-height);
	}

	.kf-hero-controls {
		right: 18px;
		bottom: 48px;
	}

	.kf-hero-arrow {
		width: 44px;
		height: 44px;
	}

	.kf-hero-dots {
		left: 18px;
		bottom: 30px;
	}

	.kf-benefit-group {
		min-height: 60px;
		padding: 0 10px;
		gap: 30px;
	}

	.kf-benefit-item {
		font-size: var(--text-sm);
		font-weight: 400;
		line-height: var(--text-sm--line-height);
	}

	.kf-benefit-image {
		width: 34px;
		height: 34px;
		border-radius: 7px;
	}

	.kf-home-section {
		margin-top: 80px;
	}

	.kf-section-shell {
		width: min(1440px, calc(100% - 32px));
	}

	.kf-section-head {
		display: grid;
		gap: 14px;
		margin-bottom: 24px;
	}

	.kf-section-head-action {
		justify-content: flex-start;
	}

	.kf-section-eyebrow {
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: var(--text-xs);
		line-height: var(--text-xs--line-height);
		letter-spacing: 0.18em;
	}

	.kf-section-title {
		font-size: var(--text-2xl);
		line-height: var(--text-2xl--line-height);
	}

	.kf-section-description {
		margin-top: 10px;
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-story-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.kf-story-media {
		width: 100%;
		aspect-ratio: 720 / 760;
		min-height: 0;
		order: 1;
	}

	.kf-story-content {
		order: 2;
		max-width: none;
	}

	.kf-story-image.is-primary {
		left: 0;
		width: 66%;
		height: 88%;
	}

	.kf-story-image.is-secondary {
		right: 0;
		top: 16%;
		bottom: auto;
		width: 60%;
		height: 66%;
	}

	.kf-story-image.is-accent {
		left: 10%;
		bottom: 4%;
		width: 54%;
		height: 24%;
	}

	.kf-story-button {
		min-height: 46px;
		margin-top: 16px;
		padding: 0 20px;
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-offers-layout {
		grid-template-columns: 1fr;
		gap: 20px;
		min-height: 0;
	}

	.kf-offers-panel {
		min-height: 430px;
		padding: 28px 22px 24px;
		align-items: stretch;
		order: 2;
		text-align: left;
	}

	.kf-offers-content {
		order: 1;
	}

	.kf-offers-percent>span:first-child {
		font-size: 5.5rem;
	}

	.kf-offers-percent-meta sup {
		font-size: 2.6rem;
	}

	.kf-offers-percent-meta span {
		font-size: 1.8rem;
	}

	.kf-offers-countdown {
		width: min(100%, 360px);
		gap: 8px;
	}

	.kf-offers-countdown span {
		min-height: 62px;
		padding: 8px 4px;
		font-size: 10px;
	}

	.kf-offers-countdown strong {
		font-size: var(--text-xl);
		line-height: 1;
	}

	.kf-offers-head {
		align-items: flex-start;
		margin: 0 0 22px;
	}

	.kf-offers-nav {
		gap: 8px;
	}

	.kf-offers-nav-button {
		width: 40px;
		height: 40px;
	}

	.kf-product-grid-slider {
		gap: 16px;
	}

	.kf-offers-slide {
		flex-basis: calc((100% - 16px) / 2);
	}

	.kf-category-slider {
		--kf-category-gap: 16px;
	}

	.kf-category-card {
		flex-basis: calc((100% - var(--kf-category-gap)) / 2);
		min-height: 300px;
	}

	.kf-category-nav {
		right: -18px;
		padding: 7px;
		border-radius: 10px;
	}

	.kf-category-content {
		padding: 0 58px 20px 20px;
	}

	.kf-category-name {
		font-size: var(--text-lg);
		line-height: var(--text-lg--line-height);
	}

	.kf-category-arrow {
		right: 18px;
		bottom: 18px;
		width: 38px;
		height: 38px;
	}

	.kf-category-nav-button {
		width: 34px;
		height: 34px;
		border-radius: 8px;
	}

	.kf-product-section-head {
		align-items: center;
		margin-bottom: 22px;
	}

	.kf-product-grid:not(.kf-product-grid-slider) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}

	.kf-popular-head {
		display: grid;
		gap: 18px;
		margin-bottom: 24px;
	}

	.kf-popular-tabs {
		gap: 18px;
		padding-bottom: 4px;
	}

	.kf-popular-tab {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-popular-slide {
		flex-basis: calc((100% - 16px) / 2);
	}

	.kf-popular-nav {
		right: -18px;
	}

	.kf-factory-panel {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 0px;
	}

	.kf-factory-section .kf-section-description {
		margin-top: 18px;
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-factory-rule {
		margin: 26px 0 30px;
	}

	.kf-factory-feature {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 0 14px;
		align-items: start;
	}

	.kf-factory-feature-icon {
		grid-row: span 2;
		width: 46px;
		height: 46px;
	}

	.kf-factory-feature-icon::before {
		width: 23px;
		height: 23px;
	}

	.kf-factory-feature h3 {
		margin: 0 0 4px;
	}

	.kf-factory-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 22px;
	}

	.kf-factory-stat {
		gap: 8px;
		padding: 14px 12px;
	}

	.kf-factory-stat-icon {
		width: 32px;
		height: 32px;
	}

	.kf-factory-stat-icon::before {
		width: 26px;
		height: 26px;
	}

	.kf-factory-stat-copy strong {
		font-size: var(--text-base);
		line-height: var(--text-base--line-height);
	}

	.kf-factory-stat-copy span {
		font-size: 10px;
	}

	.kf-factory-marquee {
		gap: 14px;
	}

	.kf-factory-marquee-track {
		gap: 14px;
	}

	.kf-factory-image {
		flex-basis: 180px;
		width: 180px;
	}

	.kf-blog-section {
		padding: 0px;
	}

	.kf-blog-feature {
		min-height: 360px;
		margin-bottom: 48px;
		background-attachment: scroll;
	}

	.kf-blog-feature-title {
		font-size: var(--text-3xl);
		line-height: var(--text-3xl--line-height);
	}

	.kf-blog-feature-text {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-blog-feature-button {
		margin-top: 24px;
	}

	.kf-blog-head {
		margin-bottom: 28px;
	}

	.kf-blog-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.kf-blog-card-body {
		padding: 18px;
	}

	.kf-blog-card-title {
		font-size: var(--text-lg);
		line-height: var(--text-lg--line-height);
	}

	.kf-blog-card-excerpt {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}

	.kf-blog-card-link {
		margin-top: 22px;
	}

	.kf-product-card-media {
		height: 300px;
		aspect-ratio: auto;
	}

	.kf-product-gallery-dots {
		bottom: 12px;
	}

	.kf-product-quick-view {
		width: max-content;
		bottom: 34px;
		min-height: 36px;
		padding: 0 14px;
		font-size: var(--text-xs);
		opacity: 1;
		transform: translate(-50%, 0);
	}

	.kf-product-card-title {
		font-size: var(--text-xs);
		line-height: 1.45;
	}

	.kf-product-card-price {
		font-size: var(--text-xs);
		line-height: var(--text-xs--line-height);
	}

	.kf-quick-view {
		align-items: flex-start;
		padding: 8px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.kf-quick-view-dialog {
		display: block;
		width: min(100%, 720px);
		max-height: calc(100dvh - 16px);
		margin: auto 0;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 10px;
		border-radius: 14px;
		-webkit-overflow-scrolling: touch;
	}

	.kf-quick-view-close {
		position: sticky;
		top: 8px;
		right: 8px;
		margin: 0 0 -36px auto;
	}

	.kf-quick-view-media {
		height: clamp(220px, 38dvh, 330px);
		min-height: 0;
		margin: 0;
		border-radius: 10px;
	}

	.kf-quick-view-body {
		min-height: 0;
		max-height: none;
		padding: 16px 10px 18px;
		overflow: visible;
		justify-content: flex-start;
	}

	.kf-quick-view-title {
		margin-top: 10px;
		font-size: var(--text-xl);
		line-height: var(--text-xl--line-height);
	}

	.kf-product-gallery-modal .kf-product-image {
		object-fit: contain;
	}

	.kf-quick-view-price {
		font-size: var(--text-xl);
		line-height: var(--text-xl--line-height);
	}

	.kf-quick-view-price del {
		font-size: var(--text-base);
	}

	.kf-quick-view-actions {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.kf-quick-view.has-payment-methods .kf-quick-view-purchase {
		grid-template-columns: 1fr;
	}

	.kf-quick-view-action {
		font-size: var(--text-sm);
		line-height: var(--text-sm--line-height);
	}
}