/* Memories E-Commerce additions */

/* --- Header layout (desktop + mobile) --- */
.kf-navbar__layout {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-areas: "logo menu right";
	align-items: center;
	gap: 16px 28px;
}

.kf-navbar__logo { grid-area: logo; min-width: 0; }
.kf-navbar__menu {
	grid-area: menu;
	min-width: 0;
	text-align: center;
}
.kf-navbar__right {
	grid-area: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	min-width: 0;
}

.kf-navbar__utilities {
	flex-wrap: nowrap;
}

.kf-navbar__toggle {
	display: none;
	flex-shrink: 0;
}

.kf-navbar__toggle .kf-menu-btn {
	float: none;
	margin-left: 0;
	width: 44px;
	height: 44px;
}

.kf-navbar__cart {
	flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
	.kf-navbar {
		padding: 14px 16px 16px;
	}

	.kf-navbar__layout {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"logo utilities"
			"toggle cart";
		gap: 12px 8px;
		align-items: center;
	}

	.kf-navbar__menu {
		display: none;
	}

	.kf-navbar__right {
		display: contents;
	}

	.kf-navbar__utilities {
		grid-area: utilities;
		justify-self: end;
		gap: 6px;
	}

	.kf-navbar__toggle {
		display: block;
		grid-area: toggle;
		justify-self: start;
	}

	.kf-navbar__toggle .kf-menu-btn {
		display: block;
	}

	.kf-navbar__cart {
		grid-area: cart;
		justify-self: end;
	}

	.kf-header + .wrapper,
	.wrapper {
		padding-top: 124px !important;
	}

	.kf-navbar-mobile {
		padding-top: 124px;
	}
}

@media screen and (max-width: 480px) {
	.kf-navbar {
		padding: 12px 14px 14px;
	}

	.kf-navbar__utilities {
		gap: 4px;
	}

	.kf-header + .wrapper,
	.wrapper {
		padding-top: 118px !important;
	}

	.kf-navbar-mobile {
		padding-top: 118px;
	}
}

.kf-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: nowrap; }

.kf-header-auth {
	display: flex;
	align-items: center;
	gap: 8px;
}

.kf-header-actions .kf-auth-btn,
.kf-header-actions .kf-auth-btn:hover,
.kf-header-actions .kf-auth-btn:focus,
.kf-header-actions .kf-auth-btn:active,
.kf-header-actions .kf-auth-btn:visited,
.kf-header-actions .kf-lang-switch,
.kf-header-actions .kf-lang-switch:hover,
.kf-header-actions .kf-lang-switch:focus,
.kf-header-actions .kf-lang-switch:active,
.kf-header-actions .kf-lang-switch:visited,
.kf-header-actions .kf-cart-btn,
.kf-header-actions .kf-cart-btn:hover,
.kf-header-actions .kf-cart-btn:focus,
.kf-header-actions .kf-cart-btn:active,
.kf-header-actions .kf-compare-link,
.kf-header-actions .kf-compare-link:hover,
.kf-header-actions .kf-compare-link:focus,
.kf-header-actions .kf-compare-link:active,
.kf-user-dropdown__menu a,
.kf-user-dropdown__menu a:hover,
.kf-user-dropdown__menu a:focus,
.kf-user-dropdown__menu a:active,
.kf-user-dropdown__menu a:visited {
	text-decoration: none;
}

.kf-auth-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 40px;
	padding: 8px 14px;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	transition:
		color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-auth-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
	transform: translateX(-130%);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.kf-auth-btn i {
	font-size: 18px;
	line-height: 1;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
}

.kf-auth-btn:hover {
	color: #fff;
	border-color: rgba(185, 146, 114, 0.65);
	background: linear-gradient(135deg, rgba(185, 146, 114, 0.28) 0%, rgba(185, 146, 114, 0.1) 100%);
	box-shadow:
		0 10px 26px rgba(185, 146, 114, 0.28),
		0 0 0 1px rgba(185, 146, 114, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.kf-auth-btn:hover::before {
	transform: translateX(130%);
}

.kf-auth-btn:hover i {
	transform: scale(1.12);
	color: #f3e2d0;
}

.kf-auth-btn:active {
	transform: translateY(0);
	box-shadow: 0 4px 14px rgba(185, 146, 114, 0.2);
}

.kf-auth-btn--outline {
	background: transparent;
	box-shadow: none;
}

.kf-auth-btn--outline:hover {
	color: #0e1317;
	border-color: transparent;
	background: linear-gradient(135deg, #c4a882 0%, var(--color-primary, #b99272) 52%, #a8845f 100%);
	box-shadow:
		0 12px 28px rgba(185, 146, 114, 0.38),
		0 0 0 1px rgba(255, 255, 255, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.kf-auth-btn--outline:hover i {
	color: #0e1317;
}

.kf-user-wrap {
	position: relative;
}

.kf-user-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	max-width: 180px;
	min-height: 40px;
	padding: 8px 14px;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: none;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	cursor: pointer;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	transition:
		color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-user-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
	transform: translateX(-130%);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.kf-user-btn i.las {
	font-size: 18px;
	line-height: 1;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
}

.kf-user-btn__name {
	max-width: 110px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.kf-user-btn__caret {
	font-size: 14px !important;
	opacity: 0.75;
	transition: transform 0.2s ease;
}

.kf-user-wrap.is-open .kf-user-btn__caret,
.kf-user-wrap:hover .kf-user-btn__caret,
.kf-user-wrap:focus-within .kf-user-btn__caret {
	transform: rotate(180deg);
}

.kf-user-btn:hover,
.kf-user-wrap.is-open .kf-user-btn,
.kf-user-wrap:focus-within .kf-user-btn {
	color: #fff;
	border-color: rgba(185, 146, 114, 0.65);
	background: linear-gradient(135deg, rgba(185, 146, 114, 0.28) 0%, rgba(185, 146, 114, 0.1) 100%);
	box-shadow:
		0 10px 26px rgba(185, 146, 114, 0.28),
		0 0 0 1px rgba(185, 146, 114, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.kf-user-btn:hover::before,
.kf-user-wrap.is-open .kf-user-btn::before,
.kf-user-wrap:focus-within .kf-user-btn::before {
	transform: translateX(130%);
}

.kf-user-btn:hover i.las,
.kf-user-wrap.is-open .kf-user-btn i.las,
.kf-user-wrap:focus-within .kf-user-btn i.las {
	transform: scale(1.08);
	color: #f3e2d0;
}

.kf-user-btn:active {
	transform: translateY(0);
}

.kf-user-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 120;
	min-width: 240px;
	padding: 0;
	background: #0e1317;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.kf-user-wrap:hover .kf-user-dropdown,
.kf-user-wrap:focus-within .kf-user-dropdown,
.kf-user-wrap.is-open .kf-user-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.kf-user-dropdown__head {
	padding: 14px 16px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kf-user-dropdown__head strong {
	display: block;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	font-weight: 500;
}

.kf-user-dropdown__head span {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
	word-break: break-word;
}

.kf-user-dropdown__menu {
	display: flex;
	flex-direction: column;
	padding: 8px;
}

.kf-user-dropdown__menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid transparent;
	transition:
		color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-user-dropdown__menu a i {
	font-size: 18px;
	color: var(--color-primary, #b99272);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.kf-user-dropdown__menu a:hover {
	color: #fff;
	background: linear-gradient(90deg, rgba(185, 146, 114, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
	border-color: rgba(185, 146, 114, 0.22);
	box-shadow: inset 3px 0 0 var(--color-primary, #b99272);
	transform: translateX(3px);
}

.kf-user-dropdown__menu a:hover i {
	transform: scale(1.1);
	color: #dcc4a8;
}

.kf-user-dropdown__logout {
	padding: 0 8px 8px;
}

.kf-user-dropdown__logout button {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 10px 12px;
	color: #ffb4b4;
	font-size: 14px;
	text-align: left;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	cursor: pointer;
	transition:
		background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-user-dropdown__logout button i {
	font-size: 18px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-user-dropdown__logout button:hover {
	color: #ffe0e0;
	background: linear-gradient(135deg, rgba(220, 80, 80, 0.18) 0%, rgba(220, 80, 80, 0.08) 100%);
	border-color: rgba(220, 80, 80, 0.45);
	box-shadow: 0 8px 20px rgba(220, 80, 80, 0.18);
	transform: translateY(-1px);
}

.kf-user-dropdown__logout button:hover i {
	transform: translateX(2px);
}

.kf-user-dropdown__logout button:active {
	transform: translateY(0);
}

.kf-mobile-logout-form {
	margin: 0;
	padding: 0;
}

.kf-navbar-mobile .kf-main-menu ul li .kf-mobile-logout-form button {
	display: block;
	width: 100%;
	padding: 0;
	color: #fff;
	font-size: 14px;
	line-height: 50px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
	font-weight: 500;
	font-family: inherit;
}

.kf-navbar-mobile .kf-main-menu ul li .kf-mobile-logout-form button:hover {
	color: #b99272;
}

@media (max-width: 991px) {
	.kf-auth-btn__label,
	.kf-user-btn__name {
		display: none;
	}

	.kf-auth-btn,
	.kf-user-btn {
		width: 40px;
		min-width: 40px;
		padding: 8px;
	}

	.kf-user-btn__caret {
		display: none;
	}
}

@media (min-width: 992px) {
	.kf-user-wrap.is-open .kf-user-dropdown,
	.kf-user-wrap:hover .kf-user-dropdown {
		pointer-events: auto;
	}
}

.kf-topline-inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 28px;
	width: 100%;
}

.kf-topline-inner__start,
.kf-topline-inner__end {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 28px;
	min-width: 0;
}

.kf-topline-inner__start {
	flex: 1 1 auto;
	justify-content: flex-start;
}

.kf-topline-inner__end {
	flex: 1 1 auto;
	justify-content: flex-end;
	text-align: right;
}

.kf-topline-inner__item {
	flex: 0 1 auto;
	min-width: 0;
}

/* Sosyal ikonlar topbar genişliğinde tam ortada */
.kf-topline-inner--has-social {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	column-gap: 16px;
}

.kf-topline-inner--has-social .kf-topline-inner__start {
	grid-column: 1;
	justify-self: start;
}

.kf-topline-inner--has-social .kf-topline-inner__center {
	grid-column: 2;
	justify-self: center;
}

.kf-topline-inner--has-social .kf-topline-inner__end {
	grid-column: 3;
	justify-self: end;
}

.kf-topline-inner--compact {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.kf-topline-inner--compact .kf-topline-inner__start,
.kf-topline-inner--compact .kf-topline-inner__end {
	flex: none;
	width: 100%;
	justify-content: flex-start;
	text-align: left;
}

@media (min-width: 992px) {
	.kf-topline-inner:not(.kf-topline-inner--compact):not(.kf-topline-inner--has-social) {
		flex-wrap: nowrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kf-auth-btn,
	.kf-auth-btn::before,
	.kf-auth-btn i,
	.kf-user-btn,
	.kf-user-btn::before,
	.kf-user-btn i.las,
	.kf-lang-switch,
	.kf-lang-switch::before,
	.kf-cart-btn,
	.kf-user-dropdown__menu a,
	.kf-user-dropdown__logout button {
		transition: none !important;
		transform: none !important;
	}

	.kf-auth-btn:hover,
	.kf-auth-btn--outline:hover,
	.kf-user-btn:hover,
	.kf-lang-switch:hover,
	.kf-cart-btn:hover,
	.kf-user-dropdown__menu a:hover,
	.kf-user-dropdown__logout button:hover {
		transform: none !important;
	}
}

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

.kf-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #fff;
	font-size: 24px;
	border: 1px solid transparent;
	border-radius: 6px;
	text-decoration: none;
	transition:
		color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-cart-btn:hover {
	color: #f3e2d0;
	border-color: rgba(185, 146, 114, 0.45);
	background: linear-gradient(135deg, rgba(185, 146, 114, 0.22) 0%, rgba(185, 146, 114, 0.08) 100%);
	box-shadow: 0 8px 22px rgba(185, 146, 114, 0.24);
	transform: translateY(-2px);
}

.kf-cart-btn:active {
	transform: translateY(0);
}

.kf-cart-count {
	position: absolute;
	top: 4px;
	right: 0;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	background: var(--color-primary, #b99272);
	color: #fff;
	font-size: 10px;
	font-weight: 300;
	line-height: 17px;
	text-align: center;
	border-radius: 999px;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.02em;
}

.kf-compare-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #fff;
	font-size: 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	text-decoration: none;
	transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.kf-compare-link:hover {
	color: #f3e2d0;
	border-color: rgba(185, 146, 114, 0.45);
	background: linear-gradient(135deg, rgba(185, 146, 114, 0.22) 0%, rgba(185, 146, 114, 0.08) 100%);
	transform: translateY(-2px);
}

.kf-compare-count {
	position: absolute;
	top: 4px;
	right: 0;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	background: var(--color-primary, #b99272);
	color: #fff;
	font-size: 10px;
	line-height: 17px;
	text-align: center;
	border-radius: 999px;
}

.kf-cart-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	width: 340px;
	padding-top: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	pointer-events: none;
	z-index: 200;
}

.kf-cart-wrap:hover .kf-cart-dropdown,
.kf-cart-wrap:focus-within .kf-cart-dropdown,
.kf-cart-wrap.is-open .kf-cart-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.kf-cart-dropdown__inner {
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.35);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.kf-cart-dropdown__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid #e8dfd3;
	font-size: 14px;
	color: #1a1f24;
}

.kf-cart-dropdown__head strong {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 500;
}

.kf-cart-dropdown__head span {
	font-size: 12px;
	color: #64748b;
}

.kf-cart-dropdown__empty {
	margin: 0;
	padding: 24px 16px 12px;
	text-align: center;
	color: #64748b;
	font-size: 14px;
}

.kf-cart-dropdown__link {
	display: block;
	margin: 0 16px 16px;
	text-align: center;
	padding: 10px 14px;
	border-radius: 10px;
	background: var(--color-primary, #b99272);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
}

.kf-cart-dropdown__list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 280px;
	overflow-y: auto;
}

.kf-cart-dropdown__item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: start;
	padding: 12px 16px;
	border-bottom: 1px solid #eee5d9;
}

.kf-cart-dropdown__thumb {
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e8dfd3;
}

.kf-cart-dropdown__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kf-cart-dropdown__info {
	min-width: 0;
}

.kf-cart-dropdown__name {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #1a1f24 !important;
	text-decoration: none !important;
	line-height: 1.35;
	margin-bottom: 2px;
}

.kf-cart-dropdown__name:hover {
	color: var(--color-primary, #b99272) !important;
}

.kf-cart-dropdown__options,
.kf-cart-dropdown__meta {
	display: block;
	font-size: 11px;
	color: #64748b;
	line-height: 1.35;
}

.kf-cart-dropdown__line-total {
	font-size: 13px;
	font-weight: 600;
	color: #1a1f24;
	white-space: nowrap;
}

.kf-cart-dropdown__footer {
	padding: 14px 16px 16px;
	background: rgba(255, 255, 255, 0.55);
}

.kf-cart-dropdown__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	font-size: 14px;
	color: #475569;
}

.kf-cart-dropdown__total strong {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	color: #1a1f24;
}

.kf-cart-dropdown__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.kf-cart-dropdown__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none !important;
	text-align: center;
	background: var(--color-primary, #b99272);
	color: #fff !important;
}

.kf-cart-dropdown__btn--ghost {
	background: #fff;
	color: #1a1f24 !important;
	border: 1px solid #d6cfc4;
}

.kf-cart-dropdown__btn:hover {
	opacity: 0.92;
}

@media screen and (max-width: 991px) {
	.kf-cart-dropdown {
		right: -8px;
		width: min(340px, calc(100vw - 24px));
	}
}
.kf-lang-switch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	letter-spacing: 1px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	text-decoration: none;
	transition:
		color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-lang-switch::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
	transform: translateX(-130%);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.kf-lang-switch:hover {
	color: #fff;
	border-color: rgba(185, 146, 114, 0.65);
	background: linear-gradient(135deg, rgba(185, 146, 114, 0.28) 0%, rgba(185, 146, 114, 0.1) 100%);
	box-shadow:
		0 10px 26px rgba(185, 146, 114, 0.28),
		0 0 0 1px rgba(185, 146, 114, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.kf-lang-switch:hover::before {
	transform: translateX(130%);
}

.kf-lang-switch:active {
	transform: translateY(0);
}

.kf-lang-switcher {
	position: relative;
	display: inline-flex;
}

.kf-lang-switcher__toggle {
	cursor: pointer;
	gap: 6px;
}

.kf-lang-switcher__chevron {
	font-size: 12px;
	opacity: 0.85;
	transition: transform 0.2s ease;
}

.kf-lang-switcher.is-open .kf-lang-switcher__chevron {
	transform: rotate(180deg);
}

.kf-lang-switcher__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 1200;
	min-width: 168px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(18, 22, 28, 0.96);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.kf-lang-switcher.is-open .kf-lang-switcher__menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.kf-lang-switcher__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px;
}

.kf-lang-switcher__item:hover,
.kf-lang-switcher__item.is-active {
	background: rgba(185, 146, 114, 0.22);
}

.kf-lang-switcher__abbr {
	font-size: 11px;
	opacity: 0.65;
	letter-spacing: 0.06em;
}

.kf-mobile-lang .kf-lang-switcher__menu {
	right: auto;
	left: 0;
}

/* Inner page header overrides */
.section.kf-started-inner {
  overflow: hidden;
  height: auto !important;
  min-height: 20px;
  padding: 20px 0 !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section.kf-started-inner .container {
  height: auto;
}
.section.kf-started-inner .kf-h-title {
  font-size: 34px;
  line-height: 1.15;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .section.kf-started-inner .kf-h-title {
    font-size: 26px;
  }
}

.kf-menu-item .kf-add-cart { margin-top: 10px; }

/* ── Product detail page ── */
.page-product .bg {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.page-product .wrapper {
	flex: 1 0 auto;
	overflow: hidden;
}
.page-product .kf-footer {
	flex-shrink: 0;
	position: relative;
	z-index: 5;
	clear: both;
	width: 100%;
}

.section.kf-product-page {
	padding: 40px 0 80px;
}

.kf-product-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}
.kf-product-breadcrumb a {
	color: #e8dcc8;
	text-decoration: none;
	transition: color 0.2s;
}
.kf-product-breadcrumb a:hover { color: #b99272; }
.kf-product-breadcrumb span:last-child {
	color: rgba(255, 255, 255, 0.7);
}

.kf-product-layout {
	align-items: flex-start;
}

/* Sol: görsel alanı */
.kf-product-media {
	position: sticky;
	top: 160px;
}
.kf-product-media__wrapper {
	display: flex;
	gap: 14px;
	align-items: stretch;
}
.kf-product-media__wrapper.has-thumbs .kf-product-media__main {
	flex: 1;
	min-width: 0;
}
.kf-product-media__thumbs--side {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
	width: 76px;
	max-height: 480px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #b99272 transparent;
}
.kf-product-media__thumbs--side::-webkit-scrollbar { width: 4px; }
.kf-product-media__thumbs--side::-webkit-scrollbar-thumb { background: #b99272; border-radius: 4px; }
.kf-product-media__main {
	position: relative;
	background: rgba(245, 237, 227, 0.06);
	border: 1px solid rgba(240, 230, 216, 0.18);
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.kf-product-media__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}
.kf-product-media__main:hover img {
	transform: scale(1.03);
}
.kf-product-media__nav {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px;
	pointer-events: none;
}
.kf-product-media__counter {
	pointer-events: none;
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(9, 12, 15, 0.75);
	color: #e8dcc8;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 999px;
	letter-spacing: 0.05em;
}
.kf-product-media__arrow {
	pointer-events: all;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(245, 237, 227, 0.92);
	color: #5c4f3f;
	font-size: 14px;
	line-height: 1;
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	overflow: visible;
	position: relative;
	flex-shrink: 0;
}
.kf-product-media__arrow:before {
	content: none;
	display: none;
}
.kf-product-media__arrow i {
	margin: 0;
	position: static;
	display: block;
	font-size: 14px;
	line-height: 1;
}
.kf-product-media__arrow:hover {
	background: #b99272;
	color: #fff;
}
.kf-product-media__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.kf-product-thumb {
	width: 72px;
	height: 72px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: rgba(245, 237, 227, 0.08);
	transition: border-color 0.2s;
}
.kf-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kf-product-thumb.is-active,
.kf-product-thumb:hover {
	border-color: #b99272;
	box-shadow: 0 0 0 1px #b99272;
}

@media screen and (max-width: 991px) {
	.kf-product-media__thumbs--side {
		width: 60px;
		max-height: 320px;
	}
	.kf-product-thumb {
		width: 60px;
		height: 60px;
	}
}

/* Sağ: satın alma kutusu */
.kf-product-buybox {
	background: #f8f3ed;
	border: 1px solid #e8dcc8;
	border-radius: 14px;
	padding: 28px 30px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.kf-product-buybox__sku-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.kf-product-buybox__sku {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 0;
}
.kf-product-buybox__sku span {
	color: #9a8772;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-family: 'Oswald', sans-serif;
}
.kf-product-buybox__sku strong {
	color: #5c4f3f;
	font-weight: 600;
}
.kf-product-buybox__title {
	font-family: 'Oswald', sans-serif;
	font-size: 32px;
	line-height: 1.2;
	color: #2c2418;
	margin: 0 0 10px;
	font-weight: 500;
}
.kf-product-buybox__rating {
	margin: 0 0 14px;
}
.kf-product-buybox__rating-link {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: #2c2418;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}
.kf-product-buybox__rating-link span {
	color: #2c2418;
}
.kf-product-buybox__rating-link:hover {
	color: #1a1f24;
}
.kf-product-buybox__rating-link:hover span {
	color: #1a1f24;
}
.kf-product-buybox__rating-link--muted {
	color: #3d3428;
}

.kf-product-buybox__rating-link--muted span {
	color: #3d3428;
}
.kf-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #d4a017;
	font-size: 14px;
	line-height: 1;
}
.kf-rating-stars--lg {
	font-size: 18px;
	gap: 3px;
}
.kf-rating-stars--sm {
	font-size: 12px;
}
.kf-rating-stars--empty {
	color: #c9bfb0;
}
.kf-rating-stars .far.fa-star {
	color: #ddd0bc;
}
.kf-product-buybox__subtitle {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #6b5d4d;
	margin: -6px 0 16px;
	line-height: 1.45;
}
.kf-product-buybox__excerpt {
	color: #6b5d4d;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 20px;
}
.kf-product-buybox__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 0;
}
.kf-product-price-line {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
}
.kf-product-buybox__divider {
	margin: 16px 0 18px;
	border: none;
	border-top: 1px solid #e0d5c5;
}
.kf-product-buybox__price + .kf-product-form {
	margin-top: 16px;
}
.kf-product-buybox__divider + .kf-product-form {
	margin-top: 0;
}
.kf-product-buybox__stock {
	margin-bottom: 0;
	flex-shrink: 0;
}
.kf-product-price {
	font-family: 'Merienda', cursive;
	font-size: 32px;
	color: #b99272;
}
.kf-product-price-old {
	font-size: 20px;
	color: #8d99a7;
	text-decoration: line-through;
}
.kf-product-buybox__price-note {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #a8a29e;
	opacity: 0.85;
	white-space: nowrap;
}
.kf-product-price.kf-price-flash,
.kf-options-modal__price.kf-price-flash {
	animation: kfPriceFlash 0.45s ease;
}
@keyframes kfPriceFlash {
	0%, 100% { color: inherit; transform: scale(1); }
	40% { color: #16a34a; transform: scale(1.04); }
}
.kf-stock-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.03em;
}
.kf-stock-badge--in {
	background: rgba(185, 146, 114, 0.18);
	color: #8a6848;
	border: 1px solid rgba(185, 146, 114, 0.45);
}
.kf-stock-badge--out {
	background: rgba(255, 68, 68, 0.12);
	color: #c44;
	border: 1px solid rgba(255, 68, 68, 0.35);
}

.kf-product-buybox .kf-product-field__label,
.kf-product-buybox .kf-qty-stepper__label,
.kf-product-buybox .kf-product-features__title {
	color: #7a6b58;
}
.kf-product-buybox .kf-qty-stepper__label {
	color: #000;
}
.kf-product-buybox .kf-product-features {
	border-top-color: #e0d5c5;
}
.kf-product-buybox .kf-product-features__list li {
	background: rgba(255, 255, 255, 0.55);
}
.kf-product-buybox .kf-product-features__key {
	color: #5c4f3f;
}
.kf-product-buybox .kf-product-features__val {
	color: #6b5d4d;
}
.kf-product-buybox .kf-product-actions {
	border-top-color: #e0d5c5;
}
.kf-product-buybox .kf-product-field__select,
.kf-product-buybox .kf-qty-stepper__control {
	background-color: #fff;
}

.kf-product-field { margin-bottom: 14px; }
.kf-product-field__label {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #e8dcc8;
	margin-bottom: 6px;
}
.kf-product-field__select {
	width: 100%;
	max-width: 280px;
	appearance: none;
	background: #f5ede3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a8772' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 12px center;
	border: 1px solid #e8dcc8;
	border-radius: 8px;
	padding: 8px 32px 8px 12px;
	color: #3d3428;
	font-size: 13px;
	cursor: pointer;
}

.kf-product-option-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 6px;
	align-items: flex-start;
}

.kf-product-option-choice {
	display: inline-flex;
	width: auto;
	max-width: 100%;
	cursor: pointer;
}

.kf-product-option-choice.is-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.kf-product-option-choice input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.kf-product-option-choice__inner {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	border: 1px solid #ddd4c6;
	border-radius: 999px;
	background: #fff;
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.kf-product-option-choice:hover:not(.is-disabled):not(.is-selected):not(:has(input:checked)) .kf-product-option-choice__inner {
	border-color: #c9a227;
	background: #fffdf8;
}

.kf-product-option-choice.is-selected .kf-product-option-choice__inner,
.kf-product-option-choice:has(input:checked) .kf-product-option-choice__inner {
	border-color: #16a34a;
	background: #16a34a;
	box-shadow: none;
}

.kf-product-option-choice.is-selected:hover .kf-product-option-choice__inner,
.kf-product-option-choice:has(input:checked):hover .kf-product-option-choice__inner {
	border-color: #16a34a;
	background: #16a34a;
}

.kf-product-option-choice.is-selected .kf-product-option-choice__label,
.kf-product-option-choice:has(input:checked) .kf-product-option-choice__label {
	color: #fff;
}

.kf-product-option-choice.is-selected .kf-product-option-choice__meta,
.kf-product-option-choice:has(input:checked) .kf-product-option-choice__meta {
	color: rgba(255, 255, 255, 0.82);
}

.kf-product-option-choice__indicator {
	display: none;
}

.kf-product-option-choice__text {
	flex: 0 1 auto;
	min-width: 0;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}

.kf-product-option-choice__label {
	display: inline;
	font-size: 12px;
	font-weight: 600;
	color: #3d3428;
	line-height: 1.25;
	white-space: nowrap;
}

.kf-product-option-choice__meta {
	display: inline;
	font-size: 10px;
	color: #8a7a68;
	margin-top: 0;
	white-space: nowrap;
}

.kf-product-option-choice__tick {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #16a34a;
	background: #dcfce7;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.18s ease, transform 0.18s ease;
	font-size: 10px;
}

.kf-product-option-choice.is-selected .kf-product-option-choice__tick,
.kf-product-option-choice:has(input:checked) .kf-product-option-choice__tick {
	opacity: 1;
	transform: scale(1);
	color: #16a34a;
	background: #fff;
}

.kf-product-option-item {
	position: relative;
	display: inline-flex;
	overflow: visible;
	vertical-align: top;
}

.kf-product-option-item .kf-product-option-btn__check {
	position: absolute;
	top: -9px;
	right: -9px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 11px;
	color: #fff;
	background: #16a34a;
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
	opacity: 0;
	transform: scale(0.75);
	transition: opacity 0.15s ease, transform 0.15s ease;
	pointer-events: none;
}

.kf-product-option-item:hover .kf-product-option-btn__check,
.kf-product-option-item:has(.kf-product-option-btn.is-selected) .kf-product-option-btn__check {
	opacity: 1;
	transform: scale(1);
}

.kf-product-option-item:has(.kf-product-option-btn.is-disabled),
.kf-product-option-item:has(.kf-product-option-btn:disabled) {
	opacity: 0.45;
}

.kf-product-option-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	border: 1px solid #ddd4c6;
	border-radius: 999px;
	background: #fff;
	color: #3d3428;
	padding: 5px 9px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
	height: auto;
	min-height: 0;
	overflow: visible;
	text-transform: none;
	letter-spacing: 0;
	text-align: center;
	vertical-align: top;
	box-shadow: none;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.kf-product-option-btn__text {
	white-space: nowrap;
	display: inline-block;
	position: static;
	z-index: auto;
}

.kf-product-option-btn--image {
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 8px;
	width: 88px;
	padding: 10px 8px 8px;
	border-radius: 10px;
	border-width: 2px;
}

.kf-product-option-btn--image .kf-product-option-btn__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 0;
	overflow: hidden;
	flex: 0 0 auto;
	border: none;
	background: #f5ede3;
}

.kf-product-option-btn--image .kf-product-option-btn__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.kf-product-option-btn--image .kf-product-option-btn__text {
	white-space: normal;
	text-align: center;
	font-size: 11px;
	line-height: 1.3;
	width: 100%;
	display: block;
	color: #3d3428;
}

.kf-product-option-btn--image .kf-product-option-btn__meta {
	display: block;
	font-size: 10px;
	font-weight: 500;
	color: #8a7a68;
	line-height: 1.2;
	text-align: center;
}

.kf-product-option-list--buttons {
	gap: 14px 12px;
	align-items: flex-start;
}

.kf-product-media.is-option-image .kf-product-thumb.is-active {
	opacity: 0.55;
}

.kf-product-option-btn:hover:not(.is-disabled):not(:disabled):not(.is-selected) {
	border-color: #c9a227;
	background: #fffdf8;
}

.kf-product-option-btn--image:hover:not(.is-disabled):not(:disabled):not(.is-selected) {
	box-shadow: 0 2px 8px rgba(201, 162, 39, 0.12);
}

.kf-product-option-btn.is-selected {
	border-color: #16a34a;
	background: #16a34a;
	color: #fff;
}

.kf-product-option-btn--image.is-selected {
	background: #fff;
	color: #3d3428;
	box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.12);
}

.kf-product-option-btn--image.is-selected .kf-product-option-btn__text {
	color: #3d3428;
}

.kf-product-option-btn--image.is-selected .kf-product-option-btn__meta {
	color: #6b7280;
}

.kf-product-option-btn.is-selected:hover:not(:disabled):not(.kf-product-option-btn--image) {
	background: #15803d;
	border-color: #15803d;
	color: #fff;
}

.kf-product-option-btn--image.is-selected:hover:not(:disabled) {
	background: #f0fdf4;
	border-color: #16a34a;
}

.kf-product-option-btn.is-disabled,
.kf-product-option-btn:disabled {
	opacity: 1;
	cursor: not-allowed;
}

.kf-product-features {
	margin: 22px 0;
	padding-top: 20px;
	border-top: 1px solid rgba(240, 230, 216, 0.15);
}
.kf-product-features__title {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #e8dcc8;
	margin: 0 0 12px;
}
.kf-product-features__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.kf-product-features__list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 14px;
	background: rgba(245, 237, 227, 0.06);
	border-radius: 8px;
	margin-bottom: 6px;
	font-size: 14px;
}
.kf-product-features__key {
	color: #e8dcc8;
	font-family: 'Oswald', sans-serif;
}
.kf-product-features__val {
	color: rgba(255, 255, 255, 0.75);
	text-align: right;
}

.kf-product-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 16px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(240, 230, 216, 0.15);
}
.kf-qty-stepper__label {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #e8dcc8;
	margin-bottom: 8px;
}
.kf-qty-stepper__control {
	display: inline-flex;
	align-items: center;
	background: #f5ede3;
	border: 1px solid #e8dcc8;
	border-radius: 10px;
	overflow: hidden;
}
.kf-qty-stepper__btn {
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: #5c4f3f;
	font-size: 20px;
	cursor: pointer;
	transition: background 0.2s;
}
.kf-qty-stepper__btn:hover {
	background: rgba(185, 146, 114, 0.2);
	color: #b99272;
}
.kf-qty-stepper__control input.kf-qty-stepper__input[type="number"] {
	width: 52px;
	height: 44px;
	min-height: 44px;
	max-height: 44px;
	padding: 0;
	border: none;
	border-left: 1px solid #e8dcc8;
	border-right: 1px solid #e8dcc8;
	border-radius: 0;
	background: transparent;
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 44px;
	color: #000;
	-moz-appearance: textfield;
	appearance: textfield;
	box-sizing: border-box;
}
.kf-product-buybox .kf-qty-stepper__control input.kf-qty-stepper__input[type="number"] {
	height: 44px;
	min-height: 44px;
	max-height: 44px;
	color: #000;
}
.kf-qty-stepper__input::-webkit-outer-spin-button,
.kf-qty-stepper__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.kf-product-add-btn {
	flex: 1 1 200px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 28px;
	border: none;
	border-radius: 10px;
	background: #b99272;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s, transform 0.15s;
}
.kf-product-add-btn:hover {
	background: #a07d5f;
	transform: translateY(-1px);
}
.kf-product-add-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.kf-product-description {
	margin-top: 56px;
	padding: 32px;
	background: rgba(245, 237, 227, 0.05);
	border: 1px solid rgba(240, 230, 216, 0.12);
	border-radius: 14px;
}
.kf-product-description__title {
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	color: #fff;
	margin: 0 0 16px;
}
.kf-product-description__body {
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
	font-size: 15px;
}
.kf-product-description__body p {
	margin: 0 0 1em;
}
.kf-product-description__body p:last-child {
	margin-bottom: 0;
}
.kf-product-description__body ul,
.kf-product-description__body ol {
	margin: 0 0 1em 1.25em;
	padding: 0;
}
.kf-product-description__body h2,
.kf-product-description__body h3,
.kf-product-description__body h4 {
	font-family: 'Oswald', sans-serif;
	color: #fff;
	margin: 1.25em 0 0.5em;
}
.kf-product-description__body a {
	color: var(--primary, #b99272);
	text-decoration: underline;
}
.kf-product-description__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1em;
}
.kf-product-description__body th,
.kf-product-description__body td {
	border: 1px solid rgba(240, 230, 216, 0.15);
	padding: 8px 12px;
}
.kf-product-reviews {
	margin-top: 48px;
	padding: 28px 30px;
	background: #f8f3ed;
	border: 1px solid #e8dcc8;
	border-radius: 14px;
}

.kf-product-reviews__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}

.kf-product-reviews__title {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	color: #2c2418;
	margin: 0;
	font-weight: 500;
}

.kf-product-reviews__summary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.kf-product-reviews__summary-text {
	font-size: 14px;
	color: #6b5d4d;
	font-weight: 600;
}

.kf-review-alert {
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 16px;
	font-size: 14px;
}

.kf-review-alert--success {
	background: #ecfdf3;
	border: 1px solid #86efac;
	color: #166534;
}

.kf-review-alert--error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.kf-review-form-wrap {
	background: #fff;
	border: 1px solid #e8dcc8;
	border-radius: 12px;
	padding: 18px 18px 16px;
	margin-bottom: 24px;
}

.kf-review-form__title {
	margin: 0 0 14px;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	color: #2c2418;
}

.kf-review-form .kf-field {
	margin-bottom: 14px;
}

.kf-review-form .kf-field > label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #5c4f3f;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.kf-review-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d6cfc4;
	border-radius: 10px;
	background: #fff;
	color: #2c2418;
	font-size: 14px;
	line-height: 1.5;
	resize: vertical;
	min-height: 96px;
}

.kf-review-form__submit {
	margin-top: 4px;
}

.kf-review-form__hint {
	margin: 10px 0 0;
	font-size: 12px;
	color: #9a8772;
}

.kf-rating-input {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.kf-rating-input__star {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 2px 1px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-transform: none;
	letter-spacing: normal;
	margin-bottom: 0;
	padding-bottom: 2px;
}

.kf-rating-input__icon {
	display: inline-block;
	font-size: 26px;
	line-height: 1;
	color: #ddd0bc;
	user-select: none;
}

.kf-rating-input__icon::before {
	content: "☆";
}

.kf-rating-input__star input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.kf-rating-input__star.is-active .kf-rating-input__icon,
.kf-rating-input__star.is-preview .kf-rating-input__icon {
	color: #d4a017;
}

.kf-rating-input__star.is-active .kf-rating-input__icon::before,
.kf-rating-input__star.is-preview .kf-rating-input__icon::before {
	content: "★";
}

.kf-review-login-prompt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	background: #fff;
	border: 1px dashed #d6cfc4;
	border-radius: 12px;
	margin-bottom: 24px;
}

.kf-review-login-prompt p {
	margin: 0;
	color: #6b5d4d;
}

.kf-btn--outline {
	background: transparent;
	border: 1px solid #b99272;
	color: #b99272;
}

.kf-review-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 20px;
	font-size: 14px;
}

.kf-review-notice--pending {
	background: #fffbeb;
	border: 1px solid #fde68a;
	color: #92400e;
}

.kf-review-notice--rejected {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.kf-review-notice--approved {
	background: #ecfdf3;
	border: 1px solid #86efac;
	color: #166534;
}

.kf-product-reviews__empty {
	margin: 0;
	color: var(--color-primary, #b99272);
	font-size: 14px;
	font-weight: 600;
}

.kf-product-reviews__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kf-product-review {
	background: #fff;
	border: 1px solid #ece3d6;
	border-radius: 12px;
	padding: 16px 18px;
}

.kf-product-review__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.kf-product-review__author {
	font-size: 15px;
	color: #2c2418;
}

.kf-product-review__date {
	margin-left: auto;
	font-size: 12px;
	color: #9a8772;
}

.kf-product-review__body {
	color: #5c4f3f;
	font-size: 14px;
	line-height: 1.65;
}

.kf-product-related {
	margin-top: 56px;
}
.kf-product-related__title {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	color: #fff;
	text-align: center;
	margin: 0 0 30px;
}

@media screen and (max-width: 991px) {
	.kf-product-media { position: static; margin-bottom: 24px; }
	.kf-product-buybox__title { font-size: 26px; }

	.page-product .kf-product-page {
		padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
	}

	.page-product .kf-product-actions {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 95;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px;
		margin: 0;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
		background: #fff;
		border-top: 1px solid #e8dcc8;
		box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.1);
	}

	.page-product .kf-product-actions .kf-qty-stepper {
		flex: 0 0 auto;
	}

	.page-product .kf-product-actions .kf-qty-stepper__label,
	.page-product .kf-product-actions .kf-muted {
		display: none;
	}

	.page-product .kf-product-actions .kf-qty-stepper__control {
		align-items: stretch;
	}

	.page-product .kf-product-actions .kf-qty-stepper__btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		padding: 0;
		line-height: 1;
		font-size: 20px;
		font-weight: 500;
	}

	.page-product .kf-product-actions .kf-qty-stepper__control input.kf-qty-stepper__input[type="number"] {
		width: 44px;
		height: 38px;
		min-height: 38px;
		max-height: 38px;
		padding: 0;
		line-height: 38px;
		font-size: 15px;
		text-align: center;
	}

	.page-product .kf-product-add-btn {
		flex: 1 1 auto;
		width: auto;
		min-width: 0;
		min-height: 44px;
		padding: 0 14px;
		font-size: 13px;
	}

	.page-product .kf-product-add-btn span {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.page-product .kf-favorite-btn--product-bar {
		position: static;
		flex-shrink: 0;
		width: 44px;
		height: 44px;
		display: inline-flex;
	}

	.page-product .kf-favorite-btn--product-bar i {
		font-size: 22px;
	}

	body.kf-modal-open .page-product .kf-product-actions {
		display: none;
	}
}

.kf-favorite-btn--product-bar {
	display: none;
}

.kf-cart-table { width: 100%; margin-bottom: 30px; }
.kf-cart-table th, .kf-cart-table td { padding: 15px; border-bottom: 1px solid #21282f; color: rgba(255,255,255,0.6); vertical-align: middle; }
.kf-cart-table th { color: #fff; font-family: 'Oswald', sans-serif; }
.kf-cart-table img { width: 80px; border-radius: 5px; }

.page-cart .kf-price-old {
	display: block;
	font-size: 12px;
	color: #94a3b8;
	text-decoration: line-through;
}

.page-cart .kf-price-current {
	display: block;
	font-weight: 600;
	color: #166534;
}

.page-cart .kf-cart-empty {
	padding: 48px 24px;
	text-align: center;
}

.page-cart .kf-cart-empty p {
	margin: 0 0 20px;
	color: #475569;
	font-size: 16px;
}

.page-cart .kf-cart-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	border-bottom: 1px solid #e8dfd3;
	background: rgba(255, 255, 255, 0.45);
}

.page-cart .kf-cart-panel__head .kf-checkout-sidebar__title {
	margin: 0;
}

.page-cart .kf-cart-panel__count {
	font-size: 13px;
	color: #64748b;
}

.page-cart .kf-cart-lines {
	display: flex;
	flex-direction: column;
}

.page-cart .kf-cart-line {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid #e8dfd3;
	align-items: center;
}

.page-cart .kf-cart-line:last-child {
	border-bottom: none;
}

.page-cart .kf-cart-line__thumb {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e8dfd3;
	background: #fff;
	flex-shrink: 0;
}

.page-cart .kf-cart-line__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-cart .kf-cart-line__name {
	margin: 0 0 2px;
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
}

.page-cart .kf-cart-line__name a {
	color: #1a1f24;
	text-decoration: none;
}

.page-cart .kf-cart-line__name a:hover {
	color: var(--color-primary, #b99272);
}

.page-cart .kf-cart-line__options {
	margin: 0 0 4px;
	font-size: 12px;
	color: #64748b;
	line-height: 1.35;
}

.page-cart .kf-cart-line__body .kf-checkout-item__campaigns {
	margin-top: 2px;
}

.page-cart .kf-cart-line__body .kf-checkout-item__campaign {
	font-size: 10px;
}

.page-cart .kf-cart-line__unit {
	margin-top: 2px;
	font-size: 12px;
	color: #475569;
	line-height: 1.3;
}

.page-cart .kf-cart-line__unit .kf-price-old,
.page-cart .kf-cart-line__unit .kf-price-current {
	display: inline;
}

.page-cart .kf-cart-line__unit .kf-price-old {
	margin-right: 6px;
}

.page-cart .kf-cart-line__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	min-width: 0;
}

.page-cart .kf-cart-line__actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.page-cart .kf-cart-line__qty-form {
	margin: 0;
}

.page-cart .kf-qty-stepper--cart .kf-qty-stepper__control {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border: 1px solid #d6cfc4;
	border-radius: 8px;
	height: 32px;
}

.page-cart .kf-qty-stepper--cart .kf-qty-stepper__btn {
	width: 28px;
	height: 30px;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 15px;
	line-height: 1;
	color: #334155;
	cursor: pointer;
}

.page-cart .kf-qty-stepper--cart .kf-qty-stepper__btn:hover {
	color: var(--color-primary, #b99272);
}

.page-cart .kf-qty-stepper--cart .kf-qty-stepper__input {
	width: 36px;
	height: 30px;
	padding: 0;
	border: none;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #1a1f24;
	background: transparent;
	-moz-appearance: textfield;
}

.page-cart .kf-qty-stepper--cart .kf-qty-stepper__input::-webkit-outer-spin-button,
.page-cart .kf-qty-stepper--cart .kf-qty-stepper__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.page-cart .kf-cart-line__qty-form.is-updating {
	opacity: 0.55;
	pointer-events: none;
}

.page-cart .kf-cart-line__total {
	text-align: right;
	font-size: 15px;
	font-weight: 700;
	color: #1a1f24;
	font-family: 'Oswald', sans-serif;
	line-height: 1.2;
}

.page-cart .kf-cart-line__total .kf-price-old,
.page-cart .kf-cart-line__total .kf-price-current {
	display: block;
}

.page-cart .kf-cart-line__total .kf-price-old {
	font-size: 11px;
	font-weight: 400;
}

.page-cart .kf-cart-line__remove-form {
	margin: 0;
}

.page-cart .kf-cart-line__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1px solid #e8dfd3;
	border-radius: 8px;
	background: #fff;
	color: #94a3b8;
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.page-cart .kf-cart-line__remove:hover {
	color: #dc2626;
	border-color: #fecaca;
	background: #fef2f2;
}

.page-cart .kf-cart-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary, #b99272);
}

.page-cart .kf-cart-back:hover {
	color: #1a1f24;
}

.page-cart .kf-checkout-items--cart {
	max-height: none;
}

.page-cart .kf-coupon-accordion {
	margin-bottom: 14px;
	border: 1px solid #e8dfd3;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.55);
	overflow: hidden;
}

.page-cart .kf-coupon-accordion__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	cursor: pointer;
	list-style: none;
	user-select: none;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
}

.page-cart .kf-coupon-accordion__head::-webkit-details-marker {
	display: none;
}

.page-cart .kf-coupon-accordion__head::after {
	content: '+';
	flex-shrink: 0;
	font-size: 18px;
	line-height: 1;
	color: #94a3b8;
}

.page-cart .kf-coupon-accordion[open] > .kf-coupon-accordion__head::after {
	content: '−';
}

.page-cart .kf-coupon-accordion[open] > .kf-coupon-accordion__head {
	border-bottom: 1px solid #e8dfd3;
	background: #fff;
}

.page-cart .kf-coupon-accordion__label {
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	color: #1a1f24;
}

.page-cart .kf-coupon-accordion__badge {
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--color-primary, #b99272);
	background: rgba(185, 146, 114, 0.12);
}

.page-cart .kf-coupon-accordion__body {
	padding: 14px;
}

.page-cart .kf-cart-coupon-form {
	display: flex;
	gap: 8px;
	margin-bottom: 0;
}

.page-cart .kf-cart-coupon-form__input {
	flex: 1;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid #d6cfc4;
	border-radius: 10px;
	background: #fff;
	color: #1a1f24;
	font-size: 14px;
}

.page-cart .kf-cart-coupon-form__input:focus {
	outline: none;
	border-color: var(--color-primary, #b99272);
	box-shadow: 0 0 0 3px rgba(185, 146, 114, 0.18);
}

.page-cart .kf-cart-coupon-form .kf-btn-link {
	color: var(--color-primary, #b99272);
	font-weight: 600;
	font-size: 13px;
	white-space: nowrap;
}

.page-cart .kf-cart-coupon-form__error {
	color: #dc2626;
	font-size: 13px;
	margin: -8px 0 12px;
}

.page-cart .kf-cart-coupon-form__remove {
	margin-top: 12px;
	margin-bottom: 0;
	font-size: 13px;
	color: #475569;
}

.page-cart .kf-cart-coupon-form__remove-btn {
	margin-left: 8px;
	color: #dc2626;
}

.page-cart .kf-cart-summary__checkout {
	margin-top: 14px;
}

@media screen and (max-width: 767px) {
	.page-cart .kf-cart-line {
		grid-template-columns: 56px minmax(0, 1fr);
		align-items: start;
	}

	.page-cart .kf-cart-line__thumb {
		width: 56px;
		height: 56px;
	}

	.page-cart .kf-cart-line__aside {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding-top: 8px;
		border-top: 1px dashed #e8dfd3;
	}
}

.kf-checkout-form .kf-field { margin-bottom: 20px; }
.kf-payment-option { display: block; padding: 15px 20px; margin-bottom: 10px; background: #090c0f; border: 1px solid #21282f; cursor: pointer; color: #fff; }
.kf-payment-option input { margin-right: 10px; }
.kf-payment-option.selected, .kf-payment-option:hover { border-color: var(--color-primary, #b99272); }
.kf-bank-info { background: #090c0f; padding: 20px; margin-top: 15px; border-left: 3px solid var(--color-primary, #b99272); display: none; }
.kf-order-success { text-align: center; padding: 60px 20px; }
.kf-order-success i { font-size: 64px; color: var(--color-primary, #b99272); margin-bottom: 20px; }
.alert-msg { padding: 15px 20px; margin-bottom: 20px; border-radius: 3px; }
.alert-msg.success { background: rgba(185,146,114,0.2); border: 1px solid var(--color-primary, #b99272); color: #fff; }
.alert-msg.error { background: rgba(255,0,0,0.1); border: 1px solid #ff4444; color: #ff8888; }

.page-checkout .kf-checkout-section {
	padding: 24px 0 48px;
}

.page-checkout .kf-checkout-layout {
	align-items: flex-start;
}

.page-checkout .kf-checkout-panel {
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.25);
	border-radius: 14px;
	padding: 0;
	margin-bottom: 0;
	overflow: hidden;
}

.page-checkout .kf-checkout-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.page-checkout .kf-checkout-step {
	border-bottom: 1px solid #e8dfd3;
}

.page-checkout .kf-checkout-step:last-child {
	border-bottom: none;
}

.page-checkout .kf-checkout-step__head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	cursor: pointer;
	list-style: none;
	user-select: none;
	background: rgba(255, 255, 255, 0.45);
}

.page-checkout .kf-checkout-step__head::-webkit-details-marker {
	display: none;
}

.page-checkout .kf-checkout-step[open] > .kf-checkout-step__head {
	background: #fff;
	border-bottom: 1px solid #e8dfd3;
}

.page-checkout .kf-checkout-step__num {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--color-primary, #b99272);
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.page-checkout .kf-checkout-step__label {
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	color: #1a1f24;
}

.page-checkout .kf-checkout-step__head::after {
	content: '+';
	margin-left: auto;
	font-size: 18px;
	color: #94a3b8;
	line-height: 1;
}

.page-checkout .kf-checkout-step[open] > .kf-checkout-step__head::after {
	content: '−';
}

.page-checkout .kf-checkout-step__body {
	padding: 10px 14px 12px;
}

.page-checkout .kf-checkout-panel .kf-field {
	margin-bottom: 8px;
}

.page-checkout .kf-checkout-panel .kf-field--compact {
	margin-bottom: 0;
}

.page-checkout .kf-checkout-panel .kf-field label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 3px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.page-checkout .kf-checkout-panel .kf-field input,
.page-checkout .kf-checkout-panel .kf-field textarea,
.page-checkout .kf-checkout-panel .kf-field select,
.page-checkout .kf-checkout-panel .kf-select {
	width: 100%;
	padding: 7px 10px;
	border: 1px solid #d6cfc4;
	border-radius: 8px;
	background: #fff;
	color: #1a1f24;
	font-size: 14px;
	line-height: 1.35;
	min-height: 36px;
}

.page-checkout .kf-checkout-panel .kf-field textarea,
.page-checkout .kf-checkout-panel .kf-input-compact {
	min-height: 36px;
	max-height: 88px;
	resize: vertical;
}

.page-checkout .kf-checkout-panel .kf-field input:focus,
.page-checkout .kf-checkout-panel .kf-field textarea:focus,
.page-checkout .kf-checkout-panel .kf-field select:focus {
	outline: none;
	border-color: var(--color-primary, #b99272);
	box-shadow: 0 0 0 3px rgba(185, 146, 114, 0.18);
}

.page-checkout .kf-checkout-panel .kf-field.is-error input,
.page-checkout .kf-checkout-panel .kf-field.is-error textarea,
.page-checkout .kf-checkout-panel .kf-field.is-error select {
	border-color: #dc2626;
}

.page-checkout .kf-field-error {
	font-size: 12px;
	color: #dc2626;
	margin-top: 5px;
}

.page-checkout .kf-checkout-same-billing {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 8px;
	cursor: pointer;
}

.page-checkout .kf-checkout-same-billing input {
	width: 16px;
	height: 16px;
	accent-color: var(--color-primary, #b99272);
}

.page-checkout .kf-checkout-billing-fields {
	margin-top: 0;
}

.page-checkout .kf-checkout-fields-row {
	margin-left: -5px;
	margin-right: -5px;
}

.page-checkout .kf-checkout-fields-row > [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}

.page-checkout .kf-checkout-fields-row .kf-field {
	margin-bottom: 8px;
}

.page-checkout .kf-checkout-sidebar {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.page-checkout .kf-checkout-summary,
.page-checkout .kf-checkout-payment {
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.25);
	border-radius: 14px;
	padding: 18px 18px 16px;
}

.page-checkout .kf-checkout-sidebar__title {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	color: #1a1f24;
	margin: 0 0 12px;
}

.page-checkout .kf-checkout-items {
	max-height: 180px;
	overflow-y: auto;
	margin-bottom: 12px;
	padding-right: 4px;
}

.page-checkout .kf-checkout-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #e8dfd3;
	font-size: 13px;
	color: #475569;
}

.page-checkout .kf-checkout-item:last-child {
	border-bottom: none;
}

.page-checkout .kf-checkout-item__main {
	flex: 1;
	min-width: 0;
}

.page-checkout .kf-checkout-item__campaigns {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 4px;
}

.page-checkout .kf-checkout-item__campaign {
	font-size: 11px;
	color: #b99272;
	line-height: 1.35;
}

.page-checkout .kf-checkout-item__name {
	line-height: 1.4;
}

.page-checkout .kf-checkout-item__price {
	flex-shrink: 0;
	font-weight: 600;
	color: #1a1f24;
}

.page-checkout .kf-checkout-totals .row-line {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	color: #475569;
	font-size: 14px;
}

.page-checkout .kf-checkout-totals .row-line--discount .row-line__label {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page-checkout .kf-checkout-totals .total-line {
	border-top: 1px solid #e2d8ca;
	margin-top: 8px;
	padding-top: 12px;
	font-size: 18px;
	font-weight: 700;
	color: #1a1f24;
	font-family: 'Oswald', sans-serif;
}

.page-checkout .kf-checkout-totals .text-discount {
	color: #166534;
}

.page-checkout .kf-payment-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.page-checkout .kf-payment-option {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 10px;
	margin: 0;
	background: #fff;
	border: 1px solid #d6cfc4;
	color: #1a1f24;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
}

.page-checkout .kf-payment-option input {
	margin: 0;
	flex-shrink: 0;
}

.page-checkout .kf-payment-option.selected,
.page-checkout .kf-payment-option:hover {
	border-color: var(--color-primary, #b99272);
	background: rgba(185, 146, 114, 0.08);
}

.page-checkout .kf-bank-info {
	background: #fff;
	border: 1px solid #e2d8ca;
	border-left: 3px solid var(--color-primary, #b99272);
	border-radius: 10px;
	color: #334155;
	padding: 12px 14px;
	margin-top: 10px;
	font-size: 13px;
}

.page-checkout .kf-bank-info p {
	margin: 0 0 4px;
}

.page-checkout .kf-checkout-submit {
	width: 100%;
	margin-top: 0;
}

.page-checkout .kf-checkout-agreements {
	margin-top: 14px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #e8dcc8;
	border-radius: 10px;
}

.page-checkout .kf-checkout-agreements.is-error {
	border-color: #e25555;
	background: #fff8f8;
}

.page-checkout .kf-checkout-agreement {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	line-height: 1.55;
	color: #4a4034;
}

.page-checkout .kf-checkout-agreement input {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	accent-color: var(--color-primary, #b99272);
}

.page-checkout .kf-checkout-agreement a {
	color: var(--color-primary, #b99272);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.page-checkout .kf-checkout-agreement a:hover {
	color: #96795a;
}

.page-checkout .kf-checkout-agreements .kf-field-error {
	margin-top: 8px;
}

.page-checkout .kf-checkout-mobile-bar {
	display: none;
}

.page-checkout .alert-msg.error {
	background: #fee2e2;
	border-color: #fca5a5;
	color: #991b1b;
}

@media screen and (max-width: 991px) {
	.page-checkout .kf-checkout-aside {
		order: -1;
		margin-bottom: 16px;
	}

	.page-checkout .kf-checkout-sidebar {
		position: static;
	}

	.page-checkout .kf-checkout-sidebar > .kf-checkout-submit {
		display: none;
	}

	.page-checkout .kf-checkout-items {
		max-height: 120px;
	}

	.page-checkout .kf-checkout-section {
		padding-bottom: 88px;
	}

	.page-checkout .kf-checkout-mobile-bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 120;
		padding: 12px 16px;
		background: #f8f3ed;
		border-top: 1px solid #e2d8ca;
		box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
	}

	.page-checkout .kf-checkout-mobile-bar__total {
		display: flex;
		flex-direction: column;
		gap: 2px;
		font-size: 12px;
		color: #64748b;
	}

	.page-checkout .kf-checkout-mobile-bar__total strong {
		font-family: 'Oswald', sans-serif;
		font-size: 20px;
		color: #1a1f24;
	}

	.page-checkout .kf-checkout-mobile-bar__btn {
		flex-shrink: 0;
		min-width: 148px;
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media screen and (max-width: 575px) {
	.page-checkout .kf-payment-options {
		grid-template-columns: 1fr;
	}

	.page-checkout .kf-checkout-step__body {
		padding: 10px 12px 12px;
	}

	.page-checkout .kf-checkout-step__head {
		padding: 10px 12px;
	}
}

/* ── Shop page layout & footer ── */
.section.kf-home-featured {
	padding-top: 70px;
	padding-bottom: 70px;
}

.section.kf-home-featured .kf-titles {
	margin-bottom: 36px;
}

.page-shop .bg {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.page-shop .wrapper {
	flex: 1 0 auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.page-shop .kf-footer {
	flex-shrink: 0;
	position: relative;
	z-index: 5;
	clear: both;
	width: 100%;
	margin-top: 0;
}

.page-shop-hero {
	position: relative;
	overflow: hidden;
}

.page-shop-hero--compact {
	padding-top: 12px !important;
	padding-bottom: 12px !important;
}

.page-shop-hero--compact .kf-h-title {
	font-size: 28px;
}

.page-shop-hero__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.35;
	z-index: 0;
}
.page-shop-hero .container {
	position: relative;
	z-index: 1;
}

.section.kf-shop-section {
	padding-top: 28px;
	padding-bottom: 80px;
	position: relative;
	z-index: 1;
}

.kf-shop-toolbar {
	margin-bottom: 24px;
}

.kf-shop-toolbar__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.kf-shop-toolbar__title {
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: #f8f3ed;
	letter-spacing: 0.02em;
}

.kf-shop-toolbar__count {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}

/* ── Shop controls ── */
.kf-shop-controls {
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.28);
	border-radius: 16px;
	padding: 18px 20px;
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
	--kf-shop-control-h: 44px;
}

.kf-shop-controls__row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0;
}

.kf-shop-search {
	display: flex;
	align-items: center;
	flex: 1 1 300px;
	max-width: 520px;
	height: var(--kf-shop-control-h);
	background: #fff;
	border: 1px solid #e2d8ca;
	border-radius: 12px;
	overflow: hidden;
	box-sizing: border-box;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.kf-shop-search__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 100%;
	color: #b99272;
	font-size: 15px;
	flex-shrink: 0;
	background: rgba(185, 146, 114, 0.08);
	border-right: 1px solid #ede5da;
}

.kf-shop-controls input[type="search"].kf-shop-search__input {
	position: static;
	display: block;
	flex: 1;
	width: auto;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0 14px;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #1a1f24;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	outline: none;
	box-shadow: none;
	transition: none;
}

.kf-shop-controls input[type="search"].kf-shop-search__input::-webkit-input-placeholder,
.kf-shop-controls input[type="search"].kf-shop-search__input::-moz-placeholder,
.kf-shop-controls input[type="search"].kf-shop-search__input:-ms-input-placeholder,
.kf-shop-controls input[type="search"].kf-shop-search__input::placeholder {
	color: #94a3b8;
	opacity: 1;
}

.kf-shop-controls button.kf-shop-search__btn {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	vertical-align: top;
	flex-shrink: 0;
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0 22px;
	border: none;
	border-radius: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	background: #b99272;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	box-shadow: none;
	transition: background 0.2s ease;
}

.kf-shop-controls button.kf-shop-search__btn:hover {
	background: #a07d5f;
	color: #fff;
	text-decoration: none;
}

.kf-shop-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 1 auto;
	min-height: var(--kf-shop-control-h);
}

.kf-shop-controls .kf-shop-sort__label {
	display: flex;
	align-items: center;
	height: var(--kf-shop-control-h);
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #64748b;
	white-space: nowrap;
	cursor: default;
}

.kf-shop-controls select.kf-shop-sort__select {
	position: static;
	display: block;
	width: auto;
	min-width: 190px;
	height: var(--kf-shop-control-h);
	margin: 0;
	padding: 0 38px 0 14px;
	border: 1px solid #e2d8ca;
	border-radius: 12px;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
	color: #1a1f24;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	line-height: var(--kf-shop-control-h);
	cursor: pointer;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.kf-shop-controls select.kf-shop-sort__select:hover,
.kf-shop-controls select.kf-shop-sort__select:focus {
	border-color: #b99272;
	outline: none;
	box-shadow: 0 0 0 3px rgba(185, 146, 114, 0.15);
}

.kf-shop-categories {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(185, 146, 114, 0.22);
}

.kf-shop-categories__label {
	flex-shrink: 0;
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.kf-shop-categories__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.kf-shop-controls a.kf-shop-cat-pill,
.kf-shop-controls a.kf-shop-cat-pill:link,
.kf-shop-controls a.kf-shop-cat-pill:visited {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: #fff;
	color: #334155;
	border: 1px solid #e2d8ca;
	border-radius: 999px;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.kf-shop-controls a.kf-shop-cat-pill:hover {
	color: #b99272;
	border-color: #b99272;
	background: #fff;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(185, 146, 114, 0.18);
}

.kf-shop-controls a.kf-shop-cat-pill.is-active,
.kf-shop-controls a.kf-shop-cat-pill.is-active:link,
.kf-shop-controls a.kf-shop-cat-pill.is-active:visited {
	background: #b99272;
	color: #fff;
	border-color: #b99272;
	box-shadow: 0 2px 10px rgba(185, 146, 114, 0.35);
}

/* ── Product grid ── */
.kf-product-grid {
	position: relative;
}

.kf-product-grid .kf-product-grid__swiper {
	overflow: hidden;
}

.kf-product-grid .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.kf-product-grid .kf-shop-card {
	height: 100%;
}

.kf-product-grid__nav,
.kf-product-grid__pagination {
	display: none;
}

@media screen and (min-width: 992px) {
	.kf-product-grid:not(.is-carousel-active) .kf-product-grid__swiper {
		overflow: visible;
	}

	.kf-product-grid:not(.is-carousel-active) .swiper-wrapper {
		display: flex;
		flex-wrap: wrap;
		margin: -10px;
		transform: none !important;
		width: auto !important;
	}

	.kf-product-grid:not(.is-carousel-active) .swiper-slide {
		width: 33.333333% !important;
		padding: 0 10px;
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 1200px) {
	.kf-product-grid:not(.is-carousel-active) .swiper-slide {
		width: 25% !important;
	}
}

@media screen and (max-width: 991px) {
	.kf-product-grid:not(.is-carousel-active) .kf-product-grid__swiper {
		overflow: visible;
	}

	.kf-product-grid:not(.is-carousel-active) .swiper-wrapper {
		display: flex;
		flex-wrap: wrap;
		margin: calc(var(--mobile-product-grid-gap, 10px) * -0.5);
		transform: none !important;
		width: auto !important;
	}

	.kf-product-grid:not(.is-carousel-active) .swiper-slide {
		width: calc(100% / var(--mobile-product-columns, 2)) !important;
		padding: 0 calc(var(--mobile-product-grid-gap, 10px) * 0.5);
		margin-bottom: var(--mobile-product-grid-gap, 10px);
		box-sizing: border-box;
	}

	.kf-product-grid.is-carousel-active {
		padding: 0 36px 30px;
	}

	body.mobile-carousel-no-nav .kf-product-grid.is-carousel-active {
		padding-left: 0;
		padding-right: 0;
	}

	body.mobile-carousel-no-nav .kf-product-grid.is-carousel-active .kf-product-grid__nav {
		display: none !important;
	}

	body.mobile-carousel-no-pagination .kf-product-grid.is-carousel-active .kf-product-grid__pagination {
		display: none !important;
	}

	body.mobile-carousel-no-pagination .kf-product-grid.is-carousel-active {
		padding-bottom: 0;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav,
	.kf-product-grid.is-carousel-active .kf-product-grid__pagination {
		display: flex;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav {
		top: 36%;
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		margin-top: -16px;
		padding: 0;
		border-radius: 50%;
		background: #fff;
		border: 1.5px solid #d4c4b0;
		box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
		transform: none;
		transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav--prev {
		left: 2px;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav--next {
		right: 2px;
		transform: none;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav:before,
	.kf-product-grid.is-carousel-active .kf-product-grid__nav:after {
		display: none !important;
		content: none !important;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav-icon {
		display: block;
		font-size: 16px;
		line-height: 1;
		color: #2c2418;
		pointer-events: none;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav:hover .kf-product-grid__nav-icon {
		color: #1a1f24;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav:active {
		transform: scale(0.94);
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav:hover {
		background: #f8f3ed;
		border-color: #b99272;
		box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__nav.swiper-button-disabled {
		opacity: 0.35;
		box-shadow: none;
	}

	.kf-product-grid.is-carousel-active .kf-product-grid__pagination {
		bottom: 0;
	}

	.kf-product-grid.is-carousel-active .swiper-pagination-bullet {
		width: 7px;
		height: 7px;
		background: rgba(0, 0, 0, 0.2);
		opacity: 1;
	}

	.kf-product-grid.is-carousel-active .swiper-pagination-bullet-active {
		background: var(--color-primary, #b99272);
	}

	.kf-product-related .kf-product-grid.is-carousel-active .kf-product-grid__nav {
		background: #fff;
		border: 1.5px solid rgba(255, 255, 255, 0.9);
		box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
	}

	.kf-product-related .kf-product-grid.is-carousel-active .kf-product-grid__nav-icon {
		color: #2c2418;
	}

	.kf-product-related .kf-product-grid.is-carousel-active .kf-product-grid__nav:hover {
		background: #f8f3ed;
		border-color: #b99272;
	}

	.kf-product-related .kf-product-grid.is-carousel-active .kf-product-grid__nav:hover .kf-product-grid__nav-icon {
		color: #1a1f24;
	}

	.kf-product-related .kf-product-grid.is-carousel-active .swiper-pagination-bullet {
		background: rgba(255, 255, 255, 0.35);
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__body {
		padding: 8px 8px 10px;
		min-height: 0;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__title {
		font-size: 12px;
		line-height: 1.3;
		margin-bottom: 4px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__desc {
		display: none;
	}

	.kf-product-grid.is-mobile-compact .kf-product-campaign-hints {
		margin: 0 0 4px;
		gap: 3px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-campaign-hint {
		font-size: 8px;
		padding: 1px 5px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__footer {
		gap: 6px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__price-current {
		font-size: 14px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__price-old {
		font-size: 11px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__actions {
		--kf-card-action-h: 34px;
		gap: 4px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card__qty {
		flex: 0 0 40px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card input[type="number"].kf-product-card__qty-input {
		font-size: 13px;
		border-radius: 8px;
		padding: 0 2px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card button.kf-product-card__btn {
		padding: 0 8px;
		border-radius: 8px;
		font-size: 11px;
		gap: 4px;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card button.kf-product-card__btn span {
		display: none;
	}

	.kf-product-grid.is-mobile-compact .kf-product-card button.kf-product-card__btn i {
		font-size: 17px;
		margin: 0;
	}

	.kf-product-grid.is-mobile-compact .kf-favorite-btn {
		width: 28px;
		height: 28px;
		bottom: 6px;
		right: 6px;
	}

	.kf-product-grid.is-mobile-compact .kf-favorite-btn i {
		font-size: 14px;
	}

	.kf-product-grid.is-mobile-compact .kf-shop-card:hover {
		transform: none;
	}
}

.kf-shop-grid__row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.kf-shop-grid__col {
	display: flex;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
}

.kf-shop-card {
	width: 100%;
	height: 100%;
	background: #f8f3ed;
	border: 1px solid #e8dfd3;
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.kf-shop-card:hover {
	border-color: rgba(185, 146, 114, 0.55);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
	transform: translateY(-2px);
}

.kf-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.kf-product-card__image-wrap {
	position: relative;
}

.kf-product-card__image {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #fff;
	border-bottom: 1px solid #eee5d9;
}

.kf-favorite-btn {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #8a7568;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
	cursor: pointer;
	transition:
		transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
		color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-favorite-btn i {
	font-size: 20px;
	line-height: 1;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.kf-favorite-btn:hover {
	transform: scale(1.08);
	background: #fff;
	color: #e25555;
	box-shadow: 0 8px 20px rgba(226, 85, 85, 0.22);
}

.kf-favorite-btn:hover i {
	transform: scale(1.08);
}

.kf-favorite-btn.is-active,
.kf-favorite-btn.is-active:hover {
	background: linear-gradient(135deg, #ff6b6b 0%, #e25555 100%);
	color: #fff;
	box-shadow: 0 8px 22px rgba(226, 85, 85, 0.38);
}

.kf-product-badges {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-width: calc(100% - 20px);
	pointer-events: none;
}

.kf-product-badges--top-left { top: 10px; left: 10px; justify-content: flex-start; }
.kf-product-badges--top-right { top: 10px; right: 10px; justify-content: flex-end; }
.kf-product-badges--bottom-left { bottom: 10px; left: 10px; justify-content: flex-start; align-items: flex-end; }
.kf-product-badges--bottom-right { bottom: 10px; right: 10px; justify-content: flex-end; align-items: flex-end; }

.kf-product-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.2;
}

.kf-compare-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #8a7568;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.kf-compare-btn.is-active {
	background: #b99272;
	color: #fff;
}

.kf-product-card__oos {
	margin: 0;
	font-size: 13px;
	color: #a08070;
}

.kf-compare-table-wrap {
	overflow-x: auto;
}

.kf-favorite-btn.is-active i {
	transform: scale(1.05);
}

.kf-favorite-btn.is-loading {
	pointer-events: none;
	opacity: 0.72;
}

.kf-favorite-btn:focus-visible {
	outline: 2px solid rgba(185, 146, 114, 0.85);
	outline-offset: 2px;
}

.kf-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease;
}

.kf-shop-card:hover .kf-product-card__image img {
	transform: scale(1.04);
}

.kf-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 14px 14px 16px;
	min-height: 168px;
}

.kf-product-card__title {
	margin: 0 0 6px;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
}

.kf-product-campaign-hints {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: -2px 0 8px;
}

.kf-product-campaign-hints--buybox {
	margin: 0 0 14px;
}

.kf-product-campaign-hint {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 600;
	color: #b99272;
	background: rgba(185, 146, 114, 0.12);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.kf-product-card__title a {
	color: #1a1f24;
	text-decoration: none;
	transition: color 0.2s;
}

.kf-product-card__title a:hover {
	color: #b99272;
}

.kf-product-card__desc {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.45;
	color: #64748b;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.9em;
}

.kf-product-card__footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.kf-product-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
}

.kf-product-card__price-current {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #b99272;
}

.kf-product-card__price-old {
	font-size: 13px;
	color: #94a3b8;
	text-decoration: line-through;
}

.kf-product-card__cart {
	margin: 0;
}

.kf-product-card__actions {
	display: flex;
	align-items: stretch;
	gap: 8px;
	--kf-card-action-h: 44px;
}

.kf-product-card__qty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 56px;
}

.kf-product-card__qty-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.kf-product-card input[type="number"].kf-product-card__qty-input {
	position: static;
	display: block;
	width: 100%;
	height: var(--kf-card-action-h);
	min-height: var(--kf-card-action-h);
	max-height: var(--kf-card-action-h);
	margin: 0;
	padding: 0 4px;
	border: 1px solid #e2d8ca;
	border-radius: 10px;
	background: #fff;
	color: #1a1f24;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	text-align: center;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	-moz-appearance: textfield;
	appearance: textfield;
}

.kf-product-card input[type="number"].kf-product-card__qty-input:focus {
	border-color: #b99272;
	outline: none;
	box-shadow: 0 0 0 3px rgba(185, 146, 114, 0.15);
}

.kf-product-card input[type="number"].kf-product-card__qty-input:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	background: #f1ebe3;
}

.kf-product-card input[type="number"].kf-product-card__qty-input::-webkit-outer-spin-button,
.kf-product-card input[type="number"].kf-product-card__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.kf-product-card button.kf-product-card__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1;
	min-width: 0;
	height: var(--kf-card-action-h);
	min-height: var(--kf-card-action-h);
	margin: 0;
	padding: 0 16px;
	overflow: hidden;
	vertical-align: top;
	border: none;
	border-radius: 10px;
	background: #b99272;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	box-shadow: none;
	transition: background 0.2s ease, transform 0.15s ease;
}

.kf-product-card button.kf-product-card__btn::before {
	content: none;
	display: none;
}

.kf-product-card button.kf-product-card__btn i {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	margin-left: 0;
}

.kf-product-card button.kf-product-card__btn span {
	position: relative;
	z-index: 1;
	display: inline;
}

.kf-product-card button.kf-product-card__btn:hover {
	background: #a07d5f;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.kf-product-card button.kf-product-card__btn:hover::before {
	content: none;
	display: none;
}

.kf-product-card button.kf-product-card__btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}

.kf-shop-empty {
	text-align: center;
	padding: 60px 20px;
	color: rgba(255, 255, 255, 0.55);
	background: rgba(248, 243, 237, 0.08);
	border: 1px dashed rgba(255, 255, 255, 0.15);
	border-radius: 14px;
}

.kf-shop-empty i {
	font-size: 42px;
	color: #b99272;
	margin-bottom: 14px;
	display: block;
}

.kf-shop-empty p {
	margin: 0;
	font-size: 15px;
}

.kf-shop-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 32px;
}

.kf-shop-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	background: #f8f3ed;
	border: 1px solid #e2d8ca;
	border-radius: 8px;
	color: #475569;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.2s;
}

.kf-shop-page-link:hover,
.kf-shop-page-link.is-active {
	background: #b99272;
	border-color: #b99272;
	color: #fff;
}

.page-product .kf-shop-card {
	background: #f8f3ed;
}

@media screen and (max-width: 991px) {
	.kf-shop-toolbar__title {
		font-size: 22px;
	}
}

body.mobile-hide-product-desc .kf-product-card__desc {
	display: none;
}

@media screen and (max-width: 991px) {
	body.mobile-sticky-bar-off.page-product .kf-product-page {
		padding-bottom: 0;
	}

	body.mobile-sticky-bar-off.page-product .kf-product-actions {
		position: static;
		box-shadow: none;
		border-top: none;
		padding: 0;
		margin-top: 16px;
	}
}

@media screen and (max-width: 767px) {
	body.mobile-shop-filters-compact .section.kf-shop-section {
		padding-top: 20px;
	}

	body.mobile-shop-filters-compact .kf-shop-toolbar__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	body.mobile-shop-filters-compact .kf-shop-controls {
		padding: 12px;
		--kf-shop-control-h: 36px;
	}

	body.mobile-shop-filters-compact .kf-shop-controls__row {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	body.mobile-shop-filters-compact .kf-shop-search {
		max-width: none;
		width: 100%;
		height: var(--kf-shop-control-h);
		min-height: var(--kf-shop-control-h);
		max-height: var(--kf-shop-control-h);
		border-radius: 10px;
	}

	body.mobile-shop-filters-compact .kf-shop-search__icon {
		width: 36px;
		font-size: 13px;
	}

	body.mobile-shop-filters-compact .kf-shop-controls input[type="search"].kf-shop-search__input {
		height: var(--kf-shop-control-h);
		min-height: var(--kf-shop-control-h);
		max-height: var(--kf-shop-control-h);
		padding: 0 10px;
		font-size: 13px;
		line-height: var(--kf-shop-control-h);
		-webkit-appearance: none;
		appearance: none;
	}

	body.mobile-shop-filters-compact .kf-shop-controls button.kf-shop-search__btn {
		height: var(--kf-shop-control-h);
		min-height: var(--kf-shop-control-h);
		max-height: var(--kf-shop-control-h);
		padding: 0 12px;
		font-size: 11px;
		white-space: nowrap;
	}

	body.mobile-shop-filters-compact .kf-shop-sort {
		width: 100%;
		justify-content: space-between;
		min-height: var(--kf-shop-control-h);
	}

	body.mobile-shop-filters-compact .kf-shop-controls .kf-shop-sort__label {
		height: var(--kf-shop-control-h);
		font-size: 12px;
	}

	body.mobile-shop-filters-compact .kf-shop-controls select.kf-shop-sort__select {
		flex: 1;
		min-width: 0;
		width: auto;
		height: var(--kf-shop-control-h);
		min-height: var(--kf-shop-control-h);
		line-height: var(--kf-shop-control-h);
		font-size: 13px;
		padding: 0 28px 0 10px;
	}

	body:not(.mobile-shop-pills-wrap) .kf-shop-categories__list {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 2px;
	}

	body:not(.mobile-shop-pills-wrap) .kf-shop-categories__list::-webkit-scrollbar {
		display: none;
	}

	body:not(.mobile-shop-pills-wrap) .kf-shop-categories__list .kf-shop-cat-pill {
		flex-shrink: 0;
	}

	.section.kf-shop-section {
		padding-top: 20px;
	}

	.kf-shop-toolbar__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	body.mobile-shop-filters-compact .kf-shop-controls__row,
	.kf-shop-controls__row {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	body.mobile-shop-filters-compact .kf-shop-search,
	.kf-shop-search {
		max-width: none;
		width: 100%;
	}

	body.mobile-shop-filters-compact .kf-shop-sort,
	.kf-shop-sort {
		width: 100%;
		justify-content: space-between;
	}

	.kf-shop-categories {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.kf-shop-categories__list {
		width: 100%;
	}

	.kf-product-card__body {
		min-height: 150px;
	}

	.kf-cart-modal__dialog {
		padding: 22px 18px 18px;
	}

	.kf-cart-modal__product {
		flex-direction: column;
	}

	.kf-cart-modal__image-wrap {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.kf-cart-modal__actions {
		flex-direction: column;
	}

	.kf-cart-modal__btn {
		width: 100%;
	}
}

/* ── Cart added modal ── */
body.kf-modal-open {
	overflow: hidden;
}

.kf-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.kf-cart-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.kf-cart-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(14, 19, 23, 0.72);
	backdrop-filter: blur(4px);
}

.kf-cart-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: calc(100vh - 40px);
	overflow: auto;
	padding: 28px 28px 22px;
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.35);
	border-radius: 18px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
	transform: translateY(16px) scale(0.98);
	transition: transform 0.28s ease;
	outline: none;
}

.kf-cart-modal.is-open .kf-cart-modal__dialog {
	transform: translateY(0) scale(1);
}

.kf-cart-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	background: rgba(185, 146, 114, 0.12);
	color: #64748b;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.kf-cart-modal__close::before {
	content: none;
	display: none;
}

.kf-cart-modal__close:hover {
	background: rgba(185, 146, 114, 0.22);
	color: #1a1f24;
}

.kf-cart-modal__head {
	text-align: center;
	padding: 0 28px 18px;
}

.kf-cart-modal__success-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(185, 146, 114, 0.16);
	color: #b99272;
	font-size: 28px;
}

.kf-cart-modal__title {
	margin: 0 0 6px;
	font-family: 'Oswald', sans-serif;
	font-size: 26px;
	font-weight: 500;
	color: #1a1f24;
	letter-spacing: 0.02em;
}

.kf-cart-modal__subtitle {
	margin: 0;
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
}

.kf-cart-modal__product {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: #fff;
	border: 1px solid #e2d8ca;
	border-radius: 14px;
}

.kf-cart-modal__image-wrap {
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	border-radius: 12px;
	overflow: hidden;
	background: #f1ebe3;
}

.kf-cart-modal__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kf-cart-modal__info {
	flex: 1;
	min-width: 0;
}

.kf-cart-modal__name {
	display: block;
	margin-bottom: 6px;
	font-family: 'Oswald', sans-serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.35;
	color: #1a1f24;
	text-decoration: none;
}

.kf-cart-modal__name:hover {
	color: #b99272;
	text-decoration: none;
}

.kf-cart-modal__options {
	margin: 0 0 10px;
	font-size: 13px;
	color: #64748b;
	line-height: 1.4;
}

.kf-cart-modal__meta {
	margin: 0;
	display: grid;
	gap: 6px;
}

.kf-cart-modal__meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
}

.kf-cart-modal__meta-row dt {
	margin: 0;
	font-weight: 500;
	color: #94a3b8;
}

.kf-cart-modal__meta-row dd {
	margin: 0;
	font-weight: 600;
	color: #334155;
}

.kf-cart-modal__meta-row--total dd {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	color: #b99272;
}

.kf-cart-modal__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	padding: 14px 16px;
	background: rgba(185, 146, 114, 0.1);
	border: 1px solid rgba(185, 146, 114, 0.22);
	border-radius: 12px;
}

.kf-cart-modal__summary-count {
	font-size: 13px;
	color: #64748b;
}

.kf-cart-modal__summary-total-wrap {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.kf-cart-modal__summary-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #94a3b8;
}

.kf-cart-modal__summary-total {
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: #1a1f24;
}

.kf-cart-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.kf-cart-modal button.kf-cart-modal__btn,
.kf-cart-modal a.kf-cart-modal__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
	overflow: hidden;
}

.kf-cart-modal button.kf-cart-modal__btn::before,
.kf-cart-modal a.kf-cart-modal__btn::before {
	content: none;
	display: none;
}

.kf-cart-modal__btn--ghost {
	border: 1px solid #e2d8ca;
	background: #fff;
	color: #475569;
}

.kf-cart-modal__btn--ghost:hover {
	border-color: #b99272;
	color: #b99272;
	background: #fff;
	text-decoration: none;
}

.kf-cart-modal a.kf-cart-modal__btn.kf-cart-modal__btn--outline,
.kf-cart-modal a.kf-cart-modal__btn.kf-cart-modal__btn--outline:link,
.kf-cart-modal a.kf-cart-modal__btn.kf-cart-modal__btn--outline:visited {
	border: 1px solid #b99272;
	background: #fff;
	color: #1a1f24;
}

.kf-cart-modal a.kf-cart-modal__btn.kf-cart-modal__btn--outline:hover {
	background: rgba(185, 146, 114, 0.12);
	border-color: #a07d5f;
	color: #1a1f24;
	text-decoration: none;
}

.kf-cart-modal__btn--primary {
	border: none;
	background: #b99272;
	color: #fff;
}

.kf-cart-modal__btn--primary:hover {
	background: #a07d5f;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

/* ── CMS pages, blog, FAQ ── */
.kf-cms-page {
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.28);
	border-radius: 16px;
	padding: 28px 32px;
	color: #1a1f24;
	line-height: 1.75;
	font-size: 15px;
}

.kf-cms-page p {
	margin: 0 0 1em;
	color: #334155;
}

.kf-cms-page h2,
.kf-cms-page h3 {
	color: #1a1f24;
	font-family: 'Oswald', sans-serif;
	margin: 1.4em 0 0.6em;
}

.kf-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 18px;
	margin-bottom: 12px;
}

.kf-footer-bar {
	margin-top: 50px;
	padding: 24px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.kf-footer-bar .copyright-text {
	margin: 0;
	padding: 16px 0 0;
	line-height: 1.5;
}

.kf-footer {
	padding-bottom: 0 !important;
}

.kf-footer > .container {
	padding-bottom: 0;
}

.kf-footer-links a {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	text-decoration: none;
}

.kf-footer-links a:hover {
	color: #b99272;
}

.kf-footer-columns {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 32px 40px;
	margin-bottom: 20px;
}

.kf-footer-start {
	flex: 0 0 auto;
}

.kf-footer-middle {
	flex: 1 1 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 32px 40px;
	min-width: 0;
}

.kf-footer-end {
	flex: 0 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 32px 40px;
	margin-left: auto;
}

.kf-footer-col {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.kf-footer-col--contact {
	min-width: 200px;
	max-width: 320px;
}

.kf-footer-columns .kf-logo {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.kf-footer-columns {
		flex-wrap: nowrap;
	}

	.kf-footer-middle {
		flex-wrap: nowrap;
	}
}

@media (max-width: 991px) {
	.kf-footer-columns {
		flex-direction: column;
	}

	.kf-footer-end {
		margin-left: 0;
	}
}

.kf-f-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kf-f-nav ul li {
	margin-bottom: 8px;
}

.kf-f-nav ul li:last-child {
	margin-bottom: 0;
}

.kf-f-nav ul li a {
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.kf-f-nav ul li a:hover {
	color: #b99272;
}

.kf-blog-card {
	height: 100%;
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.28);
	border-radius: 14px;
	overflow: hidden;
}

.kf-blog-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.kf-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kf-blog-card__body {
	padding: 18px;
}

.kf-blog-card__date {
	font-size: 12px;
	color: #94a3b8;
}

.kf-blog-card__title {
	margin: 8px 0 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
}

.kf-blog-card__title a {
	color: #1a1f24;
	text-decoration: none;
}

.kf-blog-card__title a:hover {
	color: #b99272;
}

.kf-blog-card__excerpt {
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 12px;
}

.kf-blog-post__meta {
	color: #94a3b8;
	font-size: 13px;
	margin-bottom: 16px;
}

.kf-blog-post__image {
	margin-bottom: 20px;
	border-radius: 14px;
	overflow: hidden;
}

.kf-blog-post__image img {
	width: 100%;
	display: block;
}

.kf-blog-post__excerpt {
	font-size: 17px;
	color: #475569;
	margin-bottom: 20px;
	line-height: 1.6;
}

.kf-faq-list {
	display: grid;
	gap: 10px;
	max-width: 860px;
}

.kf-faq-item {
	background: #f8f3ed;
	border: 1px solid rgba(185, 146, 114, 0.28);
	border-radius: 12px;
	overflow: hidden;
}

.kf-faq-item__question {
	padding: 16px 18px;
	cursor: pointer;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #1a1f24;
	list-style: none;
}

.kf-faq-item__question::-webkit-details-marker {
	display: none;
}

.kf-faq-item__answer {
	padding: 0 18px 16px;
	color: #475569;
	font-size: 14px;
	line-height: 1.7;
}

/* Product options quick-pick modal */
.kf-options-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.kf-options-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.kf-options-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(2px);
}

.kf-options-modal__dialog {
	position: relative;
	width: min(520px, 100%);
	max-height: min(90vh, 720px);
	overflow: auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
	padding: 20px;
	outline: none;
}

.kf-options-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 50%;
	background: #f1f5f9;
	color: #334155;
	cursor: pointer;
	z-index: 2;
}

.kf-options-modal__product {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 16px;
	padding-right: 36px;
}

.kf-options-modal__image {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #e8dcc8;
	flex-shrink: 0;
}

.kf-options-modal__title {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #1a1f24;
	margin: 0 0 4px;
	line-height: 1.3;
}

.kf-options-modal__link {
	font-size: 12px;
	color: #b59272;
	text-decoration: none;
}

.kf-options-modal__link:hover {
	text-decoration: underline;
}

.kf-options-modal__fields .kf-product-field__label {
	color: #5c4f40;
}

.kf-options-modal__fields .kf-product-field__select {
	background-color: #fff;
	max-width: 100%;
}

.kf-options-modal__fields .kf-product-option-list {
	gap: 5px;
}

.kf-options-modal__footer {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px 16px;
	align-items: end;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid #ece5da;
}

.kf-options-modal__qty {
	grid-column: 1;
}

.kf-options-modal__price-wrap {
	grid-column: 2;
	text-align: right;
}

.kf-options-modal__price-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #8a7a68;
	margin-bottom: 2px;
}

.kf-options-modal__price {
	font-size: 20px;
	color: #1a1f24;
}

.kf-options-modal__submit {
	grid-column: 1 / -1;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 18px;
	border: none;
	border-radius: 12px;
	background: #b59272;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: filter 0.15s ease;
}

.kf-options-modal__submit:hover:not(:disabled) {
	filter: brightness(1.05);
}

.kf-options-modal__submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.kf-options-modal.is-loading .kf-options-modal__fields {
	opacity: 0.5;
	pointer-events: none;
}

@media (max-width: 576px) {
	.kf-options-modal__footer {
		grid-template-columns: 1fr;
	}

	.kf-options-modal__price-wrap {
		grid-column: 1;
		text-align: left;
	}
}

