/* v1.0.0: theme shell, language switcher, admin helpers and native WP templates */
html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	background: #fffaf2;
}

.kse-header__language {
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
}

.kset-lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid rgba(47, 95, 62, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.66);
	color: var(--kse-dark, #1f2320);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	box-shadow: 0 10px 26px rgba(45, 37, 28, 0.06);
}

.kset-lang-switch a {
	color: rgba(31, 35, 32, 0.62);
	text-decoration: none;
}

.kset-lang-switch a.is-active,
.kset-lang-switch a:hover,
.kset-lang-switch a:focus-visible {
	color: var(--kse-primary-green, #2f5f3e);
	outline: none;
}

.kset-theme-main {
	min-height: 56vh;
	background:
		radial-gradient(circle at 10% 5%, rgba(238, 111, 101, 0.08), transparent 26%),
		linear-gradient(180deg, #fffaf2 0%, #fffdf9 44%, #fbf6ec 100%);
}

.kset-page-hero {
	padding: clamp(58px, 7vw, 106px) 0 clamp(46px, 6vw, 88px);
}

.kset-page-hero__grid,
.kset-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
	align-items: center;
	gap: clamp(28px, 5vw, 84px);
}

.kset-page-hero h1,
.kset-page-content h1,
.kset-single-post h1,
.kset-theme-page--archive h1,
.kset-theme-page--404 h1 {
	max-width: 940px;
	margin: 0;
	color: var(--kse-primary-green, #2f5f3e);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(40px, 7vw, 60px);
	font-weight: 600;
	line-height: 0.92;
	letter-spacing: -0.055em;
}

.kset-page-hero p,
.kset-page-content .kset-wp-content,
.kset-single-post .kset-wp-content {
	max-width: 740px;
	margin: 24px 0 0;
	color: color-mix(in srgb, var(--kse-dark, #1f2320) 72%, var(--kse-muted, #69736a));
	font-size: clamp(16px, 1.1vw, 19px);
	line-height: 1.75;
}

.kset-page-subtitle {
	color: var(--kse-gold, #c9a45c) !important;
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(24px, 2.8vw, 42px) !important;
	font-weight: 600;
	line-height: 1.08 !important;
}

.kset-page-portrait-card {
	position: relative;
	padding: 14px;
	border: 1px solid rgba(201, 164, 92, 0.25);
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 24px 70px rgba(49, 38, 25, 0.10);
	overflow: hidden;
}

.kset-page-portrait-card__img {
	display: block;
	width: 100%;
	height: min(540px, 58vw);
	min-height: 360px;
	object-fit: cover;
	border-radius: 24px;
}

.kset-authority-grid-section,
.kset-client-grid-section,
.kset-post-grid-section,
.kset-page-content {
	padding: clamp(36px, 5vw, 76px) 0;
}

.kset-authority-grid,
.kset-client-grid,
.kset-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.kset-authority-grid article,
.kset-client-card,
.kset-post-card,
.kset-contact-card {
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid rgba(47, 95, 62, 0.12);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.80);
	box-shadow: 0 18px 44px rgba(49, 38, 25, 0.07);
}

.kset-authority-grid h2,
.kset-client-card h2,
.kset-post-card h2 {
	margin: 0 0 12px;
	color: var(--kse-dark, #1f2320);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(26px, 2vw, 36px);
	line-height: 1.05;
}

.kset-authority-grid p,
.kset-client-card p,
.kset-post-card p {
	margin: 0;
	color: rgba(31, 35, 32, 0.68);
	font-size: 15px;
	line-height: 1.65;
}

.kset-client-card strong {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(47, 95, 62, 0.08);
	color: var(--kse-primary-green, #2f5f3e);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kset-contact-card {
	display: grid;
	gap: 14px;
}

.kset-contact-card a,
.kset-contact-card span {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 16px;
	border-radius: 14px;
	background: rgba(251, 246, 236, 0.78);
	color: var(--kse-dark, #1f2320);
	font-weight: 600;
	text-decoration: none;
}

.kset-post-card {
	overflow: hidden;
	padding: 0;
}

.kset-post-card__media {
	display: block;
	min-height: 240px;
	background: rgba(47, 95, 62, 0.08);
}

.kset-post-card__media img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.kset-post-card__body {
	padding: 24px;
}

.kset-post-card__body span {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--kse-gold, #c9a45c);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kset-post-card h2 a {
	color: inherit;
	text-decoration: none;
}

.kset-single-post {
	padding: clamp(58px, 7vw, 110px) 0;
}

.kset-single-post__container {
	max-width: 1040px;
}

.kset-single-post__image {
	margin: 34px 0;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 24px 68px rgba(49, 38, 25, 0.10);
}

.kset-single-post__image img {
	display: block;
	width: 100%;
	height: auto;
}

.kset-wp-content :where(p, ul, ol) {
	font-size: 18px;
	line-height: 1.78;
}

.kset-wp-content a {
	color: var(--kse-primary-green, #2f5f3e);
}

.kset-admin-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 22px 0;
}

.kset-admin-card,
.kset-admin-json-form {
	padding: 24px;
	border: 1px solid #dcdcde;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.kset-admin-card h2,
.kset-admin-json-form h2 {
	margin-top: 0;
}

.kset-json-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.kset-json-columns textarea {
	width: 100%;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	line-height: 1.45;
}

@media (max-width: 1180px) {
	.kset-page-hero__grid,
	.kset-contact-grid,
	.kset-admin-grid,
	.kset-json-columns {
		grid-template-columns: 1fr;
	}

	.kset-authority-grid,
	.kset-client-grid,
	.kset-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.kse-header__language {
		order: 5;
		margin: 6px 0 0;
	}

	.kset-lang-switch {
		min-height: 34px;
		padding: 0 10px;
		font-size: 11px;
	}

	.kset-page-hero {
		padding: 38px 0 42px;
	}

	.kset-page-hero h1,
	.kset-page-content h1,
	.kset-single-post h1,
	.kset-theme-page--archive h1,
	.kset-theme-page--404 h1 {
		font-size: clamp(40px, 14vw, 60px);
	}

	.kset-page-hero p,
	.kset-page-content .kset-wp-content,
	.kset-single-post .kset-wp-content {
		font-size: 15px;
		line-height: 1.62;
	}

	.kset-authority-grid,
	.kset-client-grid,
	.kset-post-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.kset-page-portrait-card__img {
		height: 360px;
		min-height: 0;
	}

	.kset-authority-grid article,
	.kset-client-card,
	.kset-contact-card {
		padding: 22px;
		border-radius: 20px;
	}
}

/* v1.0.1: exact public routes, WooCommerce cart shortcut and compact shop header actions */
.kse-homepage .kse-header__inner {
	grid-template-columns: 170px minmax(0, 1fr) auto;
	gap: clamp(14px, 2vw, 28px);
}

.kse-header__actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	min-width: 0;
}

.kse-header__actions .kse-header__language {
	margin-left: 0;
}

.kset-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(47, 95, 62, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	color: var(--kse-dark, #1f2320);
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(45, 37, 28, 0.06);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.kset-cart-link:hover,
.kset-cart-link:focus-visible {
	border-color: rgba(47, 95, 62, 0.32);
	background: #fff;
	color: var(--kse-primary-green, #2f5f3e);
	transform: translateY(-1px);
	outline: none;
}

.kset-cart-link--empty {
	background: transparent;
	box-shadow: none;
}

.kset-cart-link--empty .kset-cart-link__count {
	display: none;
}

.kset-cart-link--has-items {
	border-color: rgba(47, 95, 62, 0.3);
	background: rgba(47, 95, 62, 0.1);
	color: var(--kse-primary-green, #2f5f3e);
	box-shadow: 0 10px 26px rgba(47, 95, 62, 0.12);
}

.kset-cart-link--has-items:hover,
.kset-cart-link--has-items:focus-visible {
	border-color: rgba(47, 95, 62, 0.42);
	background: rgba(47, 95, 62, 0.14);
	color: var(--kse-primary-green, #2f5f3e);
}

.kset-cart-link svg {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.kset-cart-link__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
}

.kset-cart-link__count {
	position: absolute;
	right: -5px;
	top: -6px;
	display: grid;
	min-width: 18px;
	height: 18px;
	place-items: center;
	padding: 0 5px;
	border: 2px solid #fffaf2;
	border-radius: 999px;
	background: var(--kse-coral, #ee6f65);
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
}

@media (max-width: 1180px) {
	.kse-homepage .kse-header__inner {
		grid-template-columns: 145px minmax(0, 1fr) auto;
		gap: 12px;
	}

	.kse-header__actions {
		gap: 8px;
	}

	.kse-header__actions .kse-header__cta {
		padding-inline: 16px;
	}

	.kset-cart-link__label {
		display: none;
	}
}

@media (max-width: 920px) {
	.kse-homepage .kse-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto !important;
		align-items: center !important;
	}

	.kse-homepage .kse-menu-toggle {
		grid-column: 3 !important;
		grid-row: 1 !important;
	}

	.kse-homepage .kse-header__actions {
		grid-column: 2 !important;
		grid-row: 1 !important;
		gap: 7px !important;
	}

	.kse-homepage .kse-header__language {
		order: 1 !important;
		margin: 0 !important;
	}

	.kse-homepage .kset-cart-link {
		order: 2 !important;
		width: 36px;
		min-width: 36px;
		height: 36px;
		padding: 0;
	}

	.kse-homepage .kset-cart-link svg {
		width: 18px;
		height: 18px;
	}

	.kse-homepage .kset-cart-link__label {
		display: none;
	}

	.kse-homepage .kset-cart-link__count {
		right: -4px;
		top: -5px;
		min-width: 16px;
		height: 16px;
		font-size: 9px;
	}

	.kse-homepage .kse-header__actions .kse-header__cta {
		display: none !important;
	}
}

@media (max-width: 520px) {
	.kse-homepage .kset-lang-switch {
		min-height: 32px;
		padding-inline: 8px;
		font-size: 10px;
	}

	.kse-homepage .kse-header__actions {
		gap: 6px !important;
	}
}

/* v1.0.2: clients blog source, regime detail cards and requested legal footer links */
.kset-theme-page--clients-blog .kset-page-hero--clients-blog {
	padding-bottom: clamp(24px, 4vw, 56px);
}

.kset-client-blog-section {
	padding-top: 0;
}

.kset-client-blog-head {
	max-width: 780px;
	margin-bottom: 24px;
}

.kset-client-blog-head h2 {
	margin: 0;
	color: var(--kse-dark, #1f2320);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(34px, 4vw, 60px);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.kset-client-blog-head p {
	max-width: 640px;
	margin: 12px 0 0;
	color: rgba(31, 35, 32, 0.68);
	font-size: 16px;
	line-height: 1.68;
}

.kset-client-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.kset-client-story-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	border: 1px solid rgba(47, 95, 62, 0.12);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 44px rgba(49, 38, 25, 0.07);
	overflow: hidden;
}

.kset-client-story-card__media {
	display: block;
	aspect-ratio: 1.35;
	background: linear-gradient(135deg, rgba(47, 95, 62, 0.12), rgba(201, 164, 92, 0.12));
	overflow: hidden;
	text-decoration: none;
}

.kset-client-story-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.kset-client-story-card:hover .kset-client-story-card__img {
	transform: scale(1.035);
}

.kset-client-story-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--kse-primary-green, #2f5f3e);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: 84px;
	font-weight: 600;
}

.kset-client-story-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.kset-client-story-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: rgba(31, 35, 32, 0.56);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kset-client-story-card__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(47, 95, 62, 0.08);
	color: var(--kse-primary-green, #2f5f3e);
}

.kset-client-story-card h2 {
	margin: 0;
	color: var(--kse-dark, #1f2320);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.kset-client-story-card h2 a {
	color: inherit;
	text-decoration: none;
}

.kset-client-story-card p {
	margin: 14px 0 0;
	color: rgba(31, 35, 32, 0.68);
	font-size: 15px;
	line-height: 1.62;
}

.kset-client-story-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-top: auto;
	padding-top: 18px;
	color: var(--kse-primary-green, #2f5f3e);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.kset-regime-detail-main {
	background: #fff;
}

.kset-regime-detail-hero {
	padding: clamp(42px, 5vw, 78px) 0 clamp(20px, 3vw, 36px);
	background: #fff;
}

.kset-regime-detail-hero__inner {
	max-width: 1120px;
	text-align: center;
}

.kset-regime-detail-hero .kse-page-kicker {
	justify-content: center;
}

.kset-regime-detail-hero h1 {
	margin: 0;
	color: #1f2320;
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(40px, 5.2vw, 60px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.045em;
}

.kset-regime-detail-hero p {
	max-width: 920px;
	margin: 18px auto 0;
	color: rgba(31, 35, 32, 0.82);
	font-size: 15px;
	line-height: 1.72;
}

.kset-regime-products {
	padding: clamp(22px, 4vw, 48px) 0 clamp(44px, 6vw, 82px);
}

.kset-regime-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: clamp(20px, 2.5vw, 34px);
	max-width: 1220px;
}

.kset-regime-product-grid--1 {
	grid-template-columns: minmax(0, 480px);
	justify-content: center;
}

.kset-regime-product-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 420px));
	justify-content: center;
}

.kset-regime-product-card {
	--kset-regime-card-accent: #2f5f3e;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%);
	box-shadow: 0 20px 52px rgba(20, 20, 20, 0.08);
	overflow: hidden;
}

.kset-regime-product-card__head {
	position: relative;
	min-height: 126px;
	padding: 28px 26px 22px;
	background: var(--kset-regime-card-accent);
	color: #fff;
	text-align: center;
}

.kset-regime-product-card__head h2 {
	max-width: 330px;
	margin: 0 auto;
	font-family: var(--kse-body-font, "Montserrat", sans-serif);
	font-size: clamp(22px, 1.9vw, 30px);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.02em;
}

.kset-regime-product-card__badge {
	position: absolute;
	right: -34px;
	top: 18px;
	display: grid;
	width: 122px;
	height: 30px;
	place-items: center;
	background: #fff;
	color: #1f2320;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transform: rotate(45deg);
}

.kset-regime-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(26px, 3vw, 38px);
	text-align: center;
}

.kset-regime-product-card__price {
	margin: 0 0 26px;
	color: rgba(31, 35, 32, 0.66);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 500;
	line-height: 1;
}

.kset-regime-product-card__price .woocommerce-Price-amount,
.kset-regime-product-card__price bdi {
	color: inherit;
}

.kset-regime-product-card__features {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kset-regime-product-card__features li {
	position: relative;
	margin: 0;
	padding: 16px 0 16px 34px;
	border-top: 1px solid rgba(31, 35, 32, 0.12);
	color: rgba(31, 35, 32, 0.70);
	font-size: 14px;
	line-height: 1.35;
	text-align: left;
}

.kset-regime-product-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 17px;
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border: 2px solid #1f2320;
	border-radius: 999px;
	color: #1f2320;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
}

.kset-regime-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 92px;
	min-height: 42px;
	margin: 28px auto 0;
	padding: 0 24px;
	border: 2px solid var(--kset-regime-card-accent);
	border-radius: 0;
	background: transparent;
	color: var(--kset-regime-card-accent) !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.kset-regime-product-card__button:hover,
.kset-regime-product-card__button:focus-visible {
	background: var(--kset-regime-card-accent);
	color: #fff !important;
	outline: none;
}

.kset-regime-product-card__legal {
	max-width: 330px;
	margin: 28px auto 0;
	color: rgba(31, 35, 32, 0.56);
	font-size: 13px;
	line-height: 1.55;
}

.kset-regime-detail-note {
	padding: 0 0 clamp(38px, 5vw, 72px);
}

.kset-regime-detail-note__box {
	max-width: 1120px;
	margin: 0 auto;
	padding: 18px 22px;
	border: 1px solid rgba(47, 95, 62, 0.12);
	border-radius: 18px;
	background: rgba(251, 246, 236, 0.74);
	color: rgba(31, 35, 32, 0.74);
	font-size: 14px;
	line-height: 1.6;
}

.kset-regime-detail-note__box strong {
	color: var(--kse-primary-green, #2f5f3e);
}

@media (max-width: 1120px) {
	.kset-client-story-grid,
	.kset-regime-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.kset-client-blog-head h2 {
		font-size: 36px;
	}

	.kset-client-story-grid,
	.kset-regime-product-grid,
	.kset-regime-product-grid--1,
	.kset-regime-product-grid--2 {
		grid-template-columns: 1fr;
	}

	.kset-client-story-card__body {
		padding: 20px;
	}

	.kset-regime-detail-hero {
		padding-top: 34px;
	}

	.kset-regime-detail-hero h1 {
		font-size: clamp(40px, 13vw, 58px);
	}

	.kset-regime-detail-hero p {
		font-size: 14px;
		line-height: 1.58;
		text-align: left;
	}

	.kset-regime-product-card__head {
		min-height: 104px;
		padding: 24px 22px 20px;
	}

	.kset-regime-product-card__body {
		padding: 24px 22px;
	}

	.kset-regime-product-card__price {
		font-size: 34px;
	}

	.kset-regime-product-card__features li {
		font-size: 13px;
		line-height: 1.42;
	}
}

/* v1.0.2: clients blog source, regime detail catalog pages, and legal/footer route polish */
.kset-theme-page--clients-blog .kset-page-hero {
	padding: clamp(60px, 7vw, 104px) 0 clamp(30px, 4vw, 58px);
	background:
		radial-gradient(circle at 86% 14%, rgba(201, 164, 92, 0.14), transparent 28%),
		linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(246, 238, 226, 0.78));
}

.kset-theme-page--clients-blog .kset-page-hero h1,
.kset-regime-detail-hero h1 {
	max-width: 900px;
	margin: 0;
	color: var(--kse-primary-green, #2f5f3e);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(40px, 7vw, 60px);
	font-weight: 600;
	line-height: 0.92;
	letter-spacing: -0.055em;
}

.kset-theme-page--clients-blog .kset-page-hero p,
.kset-regime-detail-hero p {
	max-width: 820px;
	margin: 18px 0 0;
	color: rgba(31, 35, 32, 0.74);
	font-size: clamp(15px, 1.1vw, 18px);
	font-weight: 600;
	line-height: 1.72;
}

.kset-client-blog-section {
	padding: clamp(38px, 5vw, 72px) 0 clamp(54px, 6vw, 96px);
	background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,247,239,0.82));
}

.kset-client-blog-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.kset-client-blog-head h2 {
	margin: 0;
	color: var(--kse-dark, #1f2320);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(34px, 3.5vw, 56px);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.kset-client-blog-head p {
	max-width: 520px;
	margin: 0;
	color: rgba(31, 35, 32, 0.66);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
}

.kset-client-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.kset-client-story-card {
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	border: 1px solid rgba(47, 95, 62, 0.12);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 22px 60px rgba(57, 44, 29, 0.08);
	overflow: hidden;
}

.kset-client-story-card__media {
	display: block;
	aspect-ratio: 1.36;
	background: linear-gradient(135deg, rgba(221, 232, 212, 0.85), rgba(248, 217, 207, 0.56));
	overflow: hidden;
	text-decoration: none;
}

.kset-client-story-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.kset-client-story-card:hover .kset-client-story-card__img {
	transform: scale(1.035);
}

.kset-client-story-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: rgba(47, 95, 62, 0.42);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: 78px;
	font-weight: 600;
}

.kset-client-story-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px;
}

.kset-client-story-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 13px;
	color: rgba(31, 35, 32, 0.58);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.kset-client-story-card__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(221, 232, 212, 0.70);
	color: var(--kse-primary-green, #2f5f3e);
}

.kset-client-story-card h2 {
	margin: 0;
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(24px, 2vw, 32px);
	line-height: 1.04;
	letter-spacing: -0.035em;
}

.kset-client-story-card h2 a {
	color: var(--kse-dark, #1f2320);
	text-decoration: none;
}

.kset-client-story-card p {
	margin: 14px 0 0;
	color: rgba(31, 35, 32, 0.66);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

.kset-client-story-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-top: auto;
	padding-top: 18px;
	color: var(--kse-primary-green, #2f5f3e) !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.kset-regime-detail-main {
	background: #fff;
}

.kset-regime-detail-hero {
	padding: clamp(52px, 6vw, 88px) 0 clamp(24px, 4vw, 48px);
	background:
		radial-gradient(circle at 86% 18%, rgba(201, 164, 92, 0.12), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
	text-align: center;
}

.kset-regime-detail-hero__inner {
	max-width: 1080px;
}

.kset-regime-detail-hero .kse-page-kicker {
	justify-content: center;
}

.kset-regime-detail-hero h1 {
	max-width: 100%;
	margin-inline: auto;
	color: #1f2320;
	font-size: clamp(40px, 6vw, 60px);
}

.kset-regime-detail-hero p {
	max-width: 960px;
	margin-inline: auto;
}

.kset-regime-products {
	padding: clamp(32px, 5vw, 72px) 0 clamp(54px, 7vw, 104px);
}

.kset-regime-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
	max-width: 1260px;
}

.kset-regime-product-grid--1 {
	grid-template-columns: minmax(0, 440px);
	justify-content: center;
}

.kset-regime-product-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 420px));
	justify-content: center;
}

.kset-regime-product-card {
	--kset-regime-card-accent: #2f5f3e;
	min-height: 100%;
	background: #f7f7f7;
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.06);
	text-align: center;
	overflow: hidden;
}

.kset-regime-product-card__head {
	position: relative;
	display: grid;
	min-height: 145px;
	place-items: center;
	padding: 30px 22px;
	background: var(--kset-regime-card-accent);
	color: #fff;
}

.kset-regime-product-card__head h2 {
	max-width: 330px;
	margin: 0 auto;
	font-family: var(--kse-body-font, Arial, sans-serif);
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.kset-regime-product-card__badge {
	position: absolute;
	right: -32px;
	top: 16px;
	display: grid;
	width: 120px;
	height: 30px;
	place-items: center;
	background: #fff;
	color: #1f2320;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	transform: rotate(45deg);
}

.kset-regime-product-card__body {
	padding: 32px 30px 34px;
}

.kset-regime-product-card__price {
	margin-bottom: 26px;
	color: rgba(31, 35, 32, 0.70);
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 300;
	letter-spacing: -0.06em;
	line-height: 1;
}

.kset-regime-product-card__price .amount {
	color: inherit;
	font-weight: inherit;
}

.kset-regime-product-card__features {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kset-regime-product-card__features li {
	position: relative;
	padding: 16px 0 16px 28px;
	border-top: 1px solid rgba(31, 35, 32, 0.10);
	color: rgba(31, 35, 32, 0.68);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.28;
	text-align: center;
}

.kset-regime-product-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 15px;
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	border: 2px solid #1f2320;
	border-radius: 999px;
	color: #1f2320;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
}

.kset-regime-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	margin-top: 26px;
	padding: 0 32px;
	border: 2px solid var(--kset-regime-card-accent);
	border-radius: 3px;
	background: transparent;
	color: var(--kset-regime-card-accent) !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
}

.kset-regime-product-card__button:hover,
.kset-regime-product-card__button:focus-visible {
	background: var(--kset-regime-card-accent);
	color: #fff !important;
	outline: none;
}

.kset-regime-product-card__legal {
	margin: 24px auto 0;
	max-width: 330px;
	color: rgba(31, 35, 32, 0.52);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.55;
}

.kset-regime-detail-note {
	padding: 0 0 clamp(38px, 5vw, 72px);
}

.kset-regime-detail-note__box {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 18px 22px;
	border: 1px solid rgba(47, 95, 62, 0.12);
	border-radius: 18px;
	background: rgba(251, 247, 239, 0.88);
	color: rgba(31, 35, 32, 0.70);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
}

.kset-regime-detail-note__box strong {
	color: var(--kse-primary-green, #2f5f3e);
}

.kse-legal-footer__links a[href*="privacy-policy"],
.kse-legal-footer__links a[href*="%D0%B7%D0%B0%D1%89%D0%B8%D1%82%D0%B0"],
.kse-legal-footer__links a[href*="защита"] {
	font-weight: 600;
}

@media (max-width: 1024px) {
	.kset-client-story-grid,
	.kset-regime-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.kset-client-blog-head {
		display: block;
	}

	.kset-client-blog-head p {
		margin-top: 10px;
	}

	.kset-client-story-grid,
	.kset-regime-product-grid,
	.kset-regime-product-grid--1,
	.kset-regime-product-grid--2 {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.kset-theme-page--clients-blog .kset-page-hero h1,
	.kset-regime-detail-hero h1 {
		font-size: clamp(40px, 15vw, 60px);
	}

	.kset-regime-detail-hero {
		padding: 38px 0 26px;
	}

	.kset-regime-detail-hero p {
		font-size: 14px;
		line-height: 1.55;
	}

	.kset-regime-products {
		padding: 26px 0 46px;
	}

	.kset-regime-product-card__head {
		min-height: 116px;
		padding: 24px 18px;
	}

	.kset-regime-product-card__body {
		padding: 26px 22px 28px;
	}

	.kset-regime-product-card__price {
		font-size: 34px;
	}

	.kset-regime-detail-note__box {
		display: block;
	}
}


/* v1.0.3: admin-controlled regimes catalog, max 60px page titles and 600 max font weight */
.kse-homepage :is(h1, .kse-page-title, .kse-cert-hero__title, .kse-regimes-v2-title, .kset-regime-detail-hero h1),
.kset-theme-page :is(h1, .kse-page-title, .kse-cert-hero__title, .kse-regimes-v2-title, .kset-regime-detail-hero h1) {
	font-size: clamp(40px, 6vw, 60px) !important;
	font-weight: 600 !important;
	letter-spacing: -0.035em;
}

.kse-homepage :is(h1, h2, h3, h4, h5, h6, strong, b, button, label, .kse-btn, .kse-header__nav-link, .kse-page-kicker, .kse-regimes-v2-filter, .kse-regimes-v2-card__link, .kse-regimes-v2-featured__btn),
.kset-theme-page :is(h1, h2, h3, h4, h5, h6, strong, b, button, label, .kse-btn, .kse-header__nav-link, .kse-page-kicker, .kse-regimes-v2-filter, .kse-regimes-v2-card__link, .kse-regimes-v2-featured__btn) {
	font-weight: 600 !important;
}

.kse-regimes-v2-filter {
	text-decoration: none;
	white-space: nowrap;
}

.kse-regimes-v2-featured h3 {
	font-size: clamp(24px, 2.4vw, 36px) !important;
	font-weight: 600 !important;
	line-height: 1.08;
}

.kse-regimes-v2-card h3 {
	font-weight: 600 !important;
}

.kse-regimes-v2-card p {
	font-weight: 400 !important;
}

.kse-regimes-v2-finder + .kse-regimes-v2-all {
	padding-top: clamp(34px, 4vw, 54px);
}

@media (max-width: 760px) {
	.kse-homepage :is(h1, .kse-page-title, .kse-cert-hero__title, .kse-regimes-v2-title, .kset-regime-detail-hero h1),
	.kset-theme-page :is(h1, .kse-page-title, .kse-cert-hero__title, .kse-regimes-v2-title, .kset-regime-detail-hero h1) {
		font-size: clamp(36px, 13vw, 52px) !important;
	}
}

/* v1.0.4: admin-controlled inner regime product pages and polished purchase cards */
.kset-theme-page--regime-detail {
	--kset-detail-bg: #fffdf8;
	--kset-detail-ink: #1f2320;
	--kset-detail-muted: rgba(31, 35, 32, 0.66);
	background: var(--kset-detail-bg);
}

.kset-regime-detail-main {
	background:
		radial-gradient(circle at 12% 4%, rgba(201, 164, 92, 0.10), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #fffdf8 46%, #fbf6ec 100%);
}

.kset-regime-detail-hero {
	padding: clamp(46px, 5.2vw, 76px) 0 clamp(18px, 3vw, 36px);
	background: transparent;
	text-align: center;
}

.kset-regime-detail-hero__inner {
	max-width: 1080px;
}

.kset-regime-detail-hero h1 {
	max-width: 980px;
	margin: 0 auto 18px;
	color: var(--kset-detail-ink);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(42px, 5vw, 60px) !important;
	font-weight: 500 !important;
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.kset-regime-detail-hero p {
	max-width: 920px;
	margin: 10px auto 0;
	color: var(--kset-detail-muted);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
}

.kset-regime-products {
	padding: clamp(22px, 4vw, 48px) 0 clamp(50px, 7vw, 94px);
}

.kset-regime-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 2.4vw, 34px);
	align-items: start;
	width: min(1320px, 100%);
	max-width: 1320px;
}

.kset-regime-product-grid--1 {
	grid-template-columns: minmax(0, 980px);
	justify-content: center;
}

.kset-regime-product-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 520px));
	justify-content: center;
}

.kset-regime-product-card {
	--kset-regime-card-accent: #2f5f3e;
	position: relative;
	min-height: 100%;
	border: 1px solid color-mix(in srgb, var(--kset-regime-card-accent) 24%, rgba(31, 35, 32, 0.08));
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 26px 74px rgba(49, 38, 25, 0.09);
	text-align: center;
	overflow: hidden;
}

.kset-regime-product-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--kset-regime-card-accent) 18%, transparent), transparent 22%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 40%);
	pointer-events: none;
}

.kset-regime-product-card__head {
	position: relative;
	display: grid;
	min-height: 124px;
	place-items: center;
	padding: 26px 24px 24px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--kset-regime-card-accent) 94%, #ffffff), var(--kset-regime-card-accent));
	color: #fff;
}

.kset-regime-product-card__head h2 {
	max-width: 560px;
	margin: 0 auto;
	font-family: var(--kse-body-font, Arial, sans-serif);
	font-size: clamp(20px, 1.65vw, 27px);
	font-weight: 600 !important;
	line-height: 1.16;
	letter-spacing: -0.025em;
}

.kset-regime-product-card__head p {
	max-width: 580px;
	margin: 9px auto 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.35;
}

.kset-regime-product-card__badge {
	position: absolute;
	right: -34px;
	top: 14px;
	display: grid;
	width: 128px;
	height: 32px;
	place-items: center;
	background: #fff;
	color: #1f2320;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	transform: rotate(45deg);
	box-shadow: 0 10px 22px rgba(31, 35, 32, 0.10);
}

.kset-regime-product-card__body {
	position: relative;
	padding: clamp(24px, 2.8vw, 36px) clamp(22px, 2.6vw, 34px) 34px;
}

.kset-regime-product-card__price {
	margin-bottom: 20px;
	color: rgba(31, 35, 32, 0.68);
	font-size: clamp(29px, 3vw, 42px);
	font-weight: 300 !important;
	letter-spacing: -0.055em;
	line-height: 1;
}

.kset-regime-product-card__features {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kset-regime-product-card__features li {
	position: relative;
	padding: 14px 0 14px 34px;
	border-top: 1px solid rgba(31, 35, 32, 0.10);
	color: rgba(31, 35, 32, 0.72);
	font-size: 13px;
	font-weight: 500 !important;
	line-height: 1.45;
	text-align: left;
}

.kset-regime-product-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 14px;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border: 1.7px solid var(--kset-regime-card-accent);
	border-radius: 999px;
	color: var(--kset-regime-card-accent);
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
}

.kset-regime-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 26px;
	padding: 0 34px;
	border: 1px solid var(--kset-regime-card-accent);
	border-radius: 999px;
	background: var(--kset-regime-card-accent);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600 !important;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 16px 30px color-mix(in srgb, var(--kset-regime-card-accent) 20%, transparent);
}

.kset-regime-product-card__button:hover,
.kset-regime-product-card__button:focus-visible {
	background: color-mix(in srgb, var(--kset-regime-card-accent) 88%, #000);
	color: #fff !important;
	outline: none;
	transform: translateY(-1px);
}

.kset-regime-product-card__legal {
	max-width: 620px;
	margin: 22px auto 0;
	color: rgba(31, 35, 32, 0.50);
	font-size: 12px;
	font-weight: 500 !important;
	line-height: 1.55;
}

.kset-regime-detail-note {
	display: none;
}

@media (max-width: 1120px) {
	.kset-regime-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.kset-regime-detail-hero {
		padding: 36px 0 18px;
	}

	.kset-regime-detail-hero h1 {
		font-size: clamp(36px, 12vw, 52px) !important;
	}

	.kset-regime-product-grid,
	.kset-regime-product-grid--1,
	.kset-regime-product-grid--2 {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.kset-regime-products {
		padding: 20px 0 44px;
	}

	.kset-regime-product-card {
		border-radius: 22px;
	}

	.kset-regime-product-card__head {
		min-height: 110px;
		padding: 22px 18px 20px;
	}

	.kset-regime-product-card__body {
		padding: 24px 20px 28px;
	}

	.kset-regime-product-card__features li {
		padding-left: 30px;
		font-size: 12.5px;
	}
}

/* v1.0.4: admin-driven regime detail product cards and editable buy links */
.kset-regime-detail-main {
	background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

.kset-regime-detail-hero {
	padding: clamp(42px, 5vw, 72px) 0 clamp(20px, 3vw, 34px) !important;
	background:
		radial-gradient(circle at 88% 8%, rgba(201, 164, 92, 0.10), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #fffaf2 100%) !important;
}

.kset-regime-detail-hero__inner {
	max-width: 1120px !important;
}

.kset-regime-detail-hero h1 {
	max-width: 980px !important;
	margin: 0 auto !important;
	font-size: clamp(42px, 5.4vw, 60px) !important;
	font-weight: 500 !important;
	line-height: 1.02 !important;
	letter-spacing: -0.045em !important;
}

.kset-regime-detail-hero p {
	max-width: 920px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1.7 !important;
}

.kset-regime-products {
	padding: clamp(22px, 4vw, 50px) 0 clamp(42px, 6vw, 86px) !important;
}

.kset-regime-product-grid {
	width: min(1360px, calc(100vw - 56px)) !important;
	max-width: min(1360px, calc(100vw - 56px)) !important;
	gap: clamp(22px, 2.4vw, 34px) !important;
}

.kset-regime-product-grid--1 {
	grid-template-columns: minmax(0, 980px) !important;
	justify-content: center !important;
}

.kset-regime-product-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 540px)) !important;
	justify-content: center !important;
}

.kset-regime-product-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.kset-regime-product-card {
	border: 1px solid rgba(31, 35, 32, 0.08) !important;
	border-radius: 22px !important;
	background: linear-gradient(180deg, #ffffff 0%, #f8f8f6 100%) !important;
	box-shadow: 0 24px 70px rgba(33, 28, 20, 0.09) !important;
	isolation: isolate;
}

.kset-regime-product-card__head {
	min-height: 118px !important;
	padding: 26px 28px 22px !important;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--kset-regime-card-accent) 96%, #ffffff), var(--kset-regime-card-accent)) !important;
	color: var(--kset-regime-card-text, #ffffff) !important;
}

.kset-regime-product-card__head h2 {
	max-width: 760px !important;
	color: inherit !important;
	font-size: clamp(22px, 1.9vw, 30px) !important;
	font-weight: 600 !important;
	line-height: 1.15 !important;
}

.kset-regime-product-card__subtitle {
	max-width: 760px;
	margin: 8px auto 0 !important;
	color: color-mix(in srgb, currentColor 82%, transparent) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	letter-spacing: 0.02em;
}

.kset-regime-product-card__badge {
	right: -38px !important;
	top: 18px !important;
	background: #fff !important;
	color: #1f2320 !important;
	box-shadow: 0 8px 18px rgba(31, 35, 32, 0.10);
}

.kset-regime-product-card__body {
	padding: clamp(26px, 3.1vw, 42px) !important;
}

.kset-regime-product-grid--1 .kset-regime-product-card__body {
	padding-inline: clamp(26px, 6vw, 86px) !important;
}

.kset-regime-product-card__price {
	margin-bottom: clamp(22px, 2.5vw, 34px) !important;
	font-size: clamp(31px, 3vw, 44px) !important;
	font-weight: 400 !important;
	letter-spacing: -0.055em !important;
}

.kset-regime-product-card__features {
	max-width: 820px;
	margin-inline: auto !important;
}

.kset-regime-product-card__features li {
	display: block !important;
	min-height: 0;
	padding: 15px 0 15px 34px !important;
	border-top: 1px solid rgba(31, 35, 32, 0.105) !important;
	color: rgba(31, 35, 32, 0.74) !important;
	font-size: 13.5px !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
	text-align: left !important;
}

.kset-regime-product-card__features li::before {
	top: 15px !important;
	width: 19px !important;
	height: 19px !important;
	border-color: rgba(31, 35, 32, 0.86) !important;
	color: rgba(31, 35, 32, 0.86) !important;
	font-size: 10px !important;
}

.kset-regime-product-card__button {
	min-width: 104px !important;
	min-height: 46px !important;
	margin-top: 28px !important;
	padding: 0 28px !important;
	border: 0 !important;
	border-radius: 12px !important;
	background: var(--kset-regime-card-accent) !important;
	color: var(--kset-regime-card-text, #ffffff) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em !important;
	box-shadow: 0 16px 32px color-mix(in srgb, var(--kset-regime-card-accent) 26%, transparent) !important;
}

.kset-regime-product-card__button:hover,
.kset-regime-product-card__button:focus-visible {
	filter: saturate(1.06) brightness(0.96);
	transform: translateY(-1px);
}

.kset-regime-product-card__legal {
	max-width: 780px !important;
	margin-top: 24px !important;
	color: rgba(31, 35, 32, 0.56) !important;
	font-size: 12.5px !important;
	font-weight: 500 !important;
	line-height: 1.6 !important;
}

.kset-regime-detail-note__box {
	max-width: 1120px;
	border-radius: 18px !important;
}

@media (max-width: 1120px) {
	.kset-regime-product-grid,
	.kset-regime-product-grid--1,
	.kset-regime-product-grid--2,
	.kset-regime-product-grid--3 {
		grid-template-columns: 1fr !important;
		width: min(760px, calc(100vw - 36px)) !important;
		max-width: min(760px, calc(100vw - 36px)) !important;
	}
}

@media (max-width: 680px) {
	.kset-regime-detail-hero {
		padding: 34px 0 18px !important;
	}

	.kset-regime-detail-hero h1 {
		font-size: clamp(36px, 12vw, 50px) !important;
	}

	.kset-regime-detail-hero p {
		font-size: 13.5px !important;
		line-height: 1.55 !important;
	}

	.kset-regime-product-grid,
	.kset-regime-product-grid--1,
	.kset-regime-product-grid--2,
	.kset-regime-product-grid--3 {
		width: min(100%, calc(100vw - 28px)) !important;
		max-width: min(100%, calc(100vw - 28px)) !important;
		gap: 18px !important;
	}

	.kset-regime-product-card {
		border-radius: 18px !important;
	}

	.kset-regime-product-card__head {
		min-height: 100px !important;
		padding: 22px 18px 18px !important;
	}

	.kset-regime-product-card__head h2 {
		font-size: 22px !important;
	}

	.kset-regime-product-card__subtitle {
		font-size: 10.5px !important;
	}

	.kset-regime-product-card__body,
	.kset-regime-product-grid--1 .kset-regime-product-card__body {
		padding: 22px 18px 24px !important;
	}

	.kset-regime-product-card__price {
		font-size: 31px !important;
	}

	.kset-regime-product-card__features li {
		padding-left: 30px !important;
		font-size: 12.5px !important;
		line-height: 1.42 !important;
	}
}


/* v1.0.5: dedicated About story page and active route-aware menu state */
.kset-theme-page--about-person .kset-page-hero {
	padding-bottom: clamp(34px, 4vw, 58px);
}

.kset-about-story-section {
	padding: clamp(12px, 2vw, 28px) 0 clamp(42px, 6vw, 86px);
}

.kset-about-story-card {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	padding: clamp(26px, 4vw, 58px);
	border: 1px solid rgba(201, 164, 92, 0.22);
	border-radius: 34px;
	background:
		radial-gradient(circle at 94% 10%, rgba(201, 164, 92, 0.13), transparent 24%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 239, 0.82));
	box-shadow: 0 24px 70px rgba(49, 38, 25, 0.09);
	overflow: hidden;
}

.kset-about-story-card::before {
	content: "";
	position: absolute;
	right: -74px;
	top: -74px;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(47, 95, 62, 0.10);
	border-radius: 999px;
	pointer-events: none;
}

.kset-about-story-card h2 {
	max-width: 780px;
	margin: 0 0 24px;
	color: var(--kse-primary-green, #2f5f3e);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(34px, 4vw, 60px);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.045em;
}

.kset-about-story-text {
	position: relative;
	z-index: 1;
	columns: 2 360px;
	column-gap: clamp(28px, 4vw, 58px);
}

.kset-about-story-text p {
	break-inside: avoid;
	margin: 0 0 18px;
	color: rgba(31, 35, 32, 0.78);
	font-size: clamp(15px, 1.06vw, 18px);
	font-weight: 400;
	line-height: 1.82;
}

.kset-about-story-note {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-top: 28px;
	padding: 16px 18px;
	border: 1px solid rgba(47, 95, 62, 0.12);
	border-radius: 18px;
	background: rgba(47, 95, 62, 0.06);
	color: rgba(31, 35, 32, 0.74);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
}

.kset-about-story-note strong {
	flex: 0 0 auto;
	color: var(--kse-primary-green, #2f5f3e);
	font-weight: 600;
}

@media (max-width: 760px) {
	.kset-about-story-section {
		padding-bottom: 42px;
	}

	.kset-about-story-card {
		padding: 24px 20px;
		border-radius: 24px;
	}

	.kset-about-story-card h2 {
		font-size: clamp(34px, 11vw, 46px);
		line-height: 1.02;
	}

	.kset-about-story-text {
		columns: 1;
	}

	.kset-about-story-text p {
		font-size: 14px;
		line-height: 1.72;
		margin-bottom: 15px;
	}

	.kset-about-story-note {
		flex-direction: column;
		gap: 4px;
	}
}


/* v1.0.6: refined About page hero and editorial story layout */
.kset-theme-page--about-person .kset-page-hero--about-person {
	padding: clamp(46px, 5vw, 74px) 0 clamp(26px, 3vw, 46px);
	background:
		radial-gradient(circle at 8% 8%, rgba(201, 164, 92, 0.12), transparent 28%),
		linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 255, 255, 0.92));
}

.kset-theme-page--about-person .kset-page-hero__grid {
	grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.42fr);
	gap: clamp(20px, 3vw, 48px);
	align-items: center;
	width: min(1280px, calc(100vw - 48px));
}

.kset-about-hero-copy {
	max-width: 820px;
}

.kset-about-hero-copy h1 {
	max-width: 760px;
	font-size: clamp(42px, 5.1vw, 60px) !important;
	line-height: 0.96 !important;
}

.kset-about-hero-copy .kset-page-subtitle {
	max-width: 720px;
	margin-top: 18px;
	font-size: clamp(25px, 2.3vw, 36px) !important;
}

.kset-about-hero-lead {
	max-width: 820px !important;
	margin-top: 18px !important;
	font-size: clamp(15px, 1vw, 17px) !important;
	line-height: 1.72 !important;
}

.kset-theme-page--about-person .kset-page-portrait-card {
	max-width: 390px;
	justify-self: end;
	padding: 12px;
	border-radius: 32px;
}

.kset-theme-page--about-person .kset-page-portrait-card__img {
	height: min(500px, 50vw);
	min-height: 390px;
	border-radius: 23px;
	object-position: center top;
}

.kset-about-story-section {
	position: relative;
	padding: clamp(24px, 3vw, 42px) 0 clamp(52px, 7vw, 96px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 239, 224, 0.56) 100%);
}

.kset-about-story-section::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: min(1120px, calc(100vw - 48px));
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.45), transparent);
	transform: translateX(-50%);
}

.kset-about-story-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 64px);
	max-width: 1360px;
	margin: 0 auto;
	padding: clamp(30px, 4vw, 60px);
	border: 1px solid rgba(201, 164, 92, 0.23);
	border-radius: 42px;
	background:
		radial-gradient(circle at 10% 0%, rgba(47, 95, 62, 0.10), transparent 28%),
		radial-gradient(circle at 95% 12%, rgba(201, 164, 92, 0.14), transparent 28%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 236, 0.88));
	box-shadow: 0 28px 90px rgba(49, 38, 25, 0.10);
	overflow: hidden;
	isolation: isolate;
}

.kset-about-story-card::before {
	content: "";
	position: absolute;
	right: -96px;
	top: -96px;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(201, 164, 92, 0.22);
	border-radius: 999px;
	pointer-events: none;
	z-index: -1;
}

.kset-about-story-card::after {
	content: "";
	position: absolute;
	left: 26px;
	bottom: 26px;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background: rgba(47, 95, 62, 0.06);
	filter: blur(2px);
	pointer-events: none;
	z-index: -1;
}

.kset-about-story-intro {
	position: sticky;
	top: 92px;
	align-self: start;
}

.kset-about-story-card h2 {
	max-width: 390px;
	margin: 0 0 18px;
	color: var(--kse-primary-green, #2f5f3e);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.045em;
}

.kset-about-story-lead {
	max-width: 360px;
	margin: 0;
	color: rgba(31, 35, 32, 0.66);
	font-size: 15px;
	line-height: 1.72;
}

.kset-about-story-signature {
	margin-top: 34px;
	color: rgba(201, 164, 92, 0.78);
	font-family: var(--kse-heading-font, "Montserrat", sans-serif);
	font-size: clamp(30px, 3vw, 48px);
	font-weight: 600;
	line-height: 1;
}

.kset-about-story-text {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px clamp(22px, 2.6vw, 34px);
	columns: initial;
	column-gap: 0;
}

.kset-about-story-text p {
	position: relative;
	break-inside: avoid;
	margin: 0;
	padding: 18px 20px 18px 22px;
	border: 1px solid rgba(47, 95, 62, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.58);
	color: rgba(31, 35, 32, 0.78);
	font-size: clamp(14px, 0.96vw, 16px);
	font-weight: 400;
	line-height: 1.72;
}

.kset-about-story-text p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	bottom: 18px;
	width: 3px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(201, 164, 92, 0.72), rgba(47, 95, 62, 0.42));
}

.kset-about-story-text p.is-lead {
	grid-column: 1 / -1;
	padding: 24px 28px;
	border-color: rgba(201, 164, 92, 0.22);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 231, 0.72));
	color: rgba(31, 35, 32, 0.82);
	font-size: clamp(16px, 1.08vw, 18px);
	line-height: 1.76;
}

.kset-about-story-note {
	margin-top: 28px;
	padding: 16px 18px;
	border: 1px solid rgba(47, 95, 62, 0.13);
	border-radius: 20px;
	background: rgba(47, 95, 62, 0.06);
}

@media (max-width: 1180px) {
	.kset-theme-page--about-person .kset-page-hero__grid,
	.kset-about-story-card {
		grid-template-columns: 1fr;
	}

	.kset-about-hero-copy,
	.kset-about-hero-copy h1,
	.kset-about-hero-copy .kset-page-subtitle,
	.kset-about-hero-lead,
	.kset-about-story-card h2,
	.kset-about-story-lead {
		max-width: none;
	}

	.kset-theme-page--about-person .kset-page-portrait-card {
		justify-self: start;
		max-width: 420px;
	}

	.kset-about-story-intro {
		position: relative;
		top: auto;
	}
}

@media (max-width: 760px) {
	.kset-theme-page--about-person .kset-page-hero--about-person {
		padding: 34px 0 28px;
	}

	.kset-theme-page--about-person .kset-page-hero__grid {
		width: min(100%, calc(100vw - 32px));
		gap: 22px;
	}

	.kset-about-hero-copy h1 {
		font-size: clamp(40px, 13vw, 54px) !important;
	}

	.kset-about-hero-lead {
		font-size: 14px !important;
		line-height: 1.62 !important;
	}

	.kset-theme-page--about-person .kset-page-portrait-card {
		max-width: 100%;
	}

	.kset-theme-page--about-person .kset-page-portrait-card__img {
		height: 360px;
		min-height: 0;
	}

	.kset-about-story-section {
		padding-bottom: 42px;
	}

	.kset-about-story-card {
		padding: 22px 18px;
		border-radius: 28px;
	}

	.kset-about-story-card h2 {
		font-size: clamp(34px, 11vw, 46px);
	}

	.kset-about-story-text {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.kset-about-story-text p,
	.kset-about-story-text p.is-lead {
		padding: 16px 17px 16px 19px;
		font-size: 14px;
		line-height: 1.68;
	}

	.kset-about-story-note {
		flex-direction: column;
		gap: 4px;
	}
}


/* v1.0.7: client loading, Instagram CTAs, regimes visual, diplomas lightbox and spacing polish */
.kse-btn__icon--instagram {
	width: 18px;
	height: 18px;
	margin-left: 8px;
}

.kse-header__cta .kse-btn__icon--instagram,
.kse-header__mobile-cta .kse-btn__icon--instagram {
	width: 17px;
	height: 17px;
}

.kset-theme-page--clients-blog .kset-page-hero--clients-blog {
	padding-bottom: clamp(22px, 3.5vw, 44px);
}

.kset-theme-page--clients-blog .kset-client-blog-head {
	margin-bottom: clamp(18px, 3vw, 34px);
}

.kset-client-story-card.is-hidden-by-load-more {
	display: none;
}

.kset-load-more-wrap {
	display: flex;
	justify-content: center;
	margin: clamp(28px, 4vw, 48px) 0 0;
}

.kset-load-more-btn.is-hidden {
	display: none;
}

.kset-theme-page--about-person .kse-page-kicker::before {
	background: var(--kse-gold);
}

.kset-theme-page--about-person .kse-page-kicker {
	color: var(--kse-primary-green);
}

.kset-about-story-note {
	display: none !important;
}

.kse-page--regimes-v2 .kse-regimes-v2-hero__visual {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 440px;
	perspective: 1000px;
}

.kse-page--regimes-v2 .kse-regimes-v2-hero__plate.kse-regimes-v2-system {
	position: relative;
	right: auto;
	top: auto;
	width: min(430px, 38vw);
	min-width: 340px;
	aspect-ratio: auto;
	padding: 28px;
	border: 1px solid rgba(49, 95, 62, 0.16);
	border-radius: 34px;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,247,235,0.86)),
		radial-gradient(circle at 86% 16%, rgba(201,164,92,0.18), transparent 32%);
	box-shadow: 0 34px 90px rgba(49, 42, 30, 0.16);
	overflow: visible;
	transform: rotate(-2deg);
}

.kse-page--regimes-v2 .kse-regimes-v2-system::before,
.kse-page--regimes-v2 .kse-regimes-v2-system::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: 999px;
}

.kse-page--regimes-v2 .kse-regimes-v2-system::before {
	inset: -18px;
	border: 1px solid rgba(201, 164, 92, 0.26);
	transform: rotate(5deg);
}

.kse-page--regimes-v2 .kse-regimes-v2-system::after {
	right: -26px;
	top: -30px;
	width: 96px;
	height: 96px;
	background:
		linear-gradient(135deg, rgba(47, 95, 62, 0.96), rgba(201, 164, 92, 0.82));
	box-shadow: 0 20px 48px rgba(47, 95, 62, 0.18);
}

.kse-regimes-v2-system__header {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 6px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(49, 95, 62, 0.12);
}

.kse-regimes-v2-system__header span {
	color: var(--kse-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.kse-regimes-v2-system__header strong {
	color: var(--kse-primary-green);
	font-family: var(--kse-heading-font);
	font-size: clamp(28px, 2.6vw, 42px);
	font-weight: 600;
	line-height: 0.95;
	letter-spacing: -0.035em;
}

.kse-regimes-v2-system__stack {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: 14px;
	align-items: center;
	margin-top: 14px;
	padding: 14px;
	border: 1px solid rgba(49, 95, 62, 0.09);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.70);
	box-shadow: 0 12px 28px rgba(49, 42, 30, 0.06);
}

.kse-regimes-v2-system__stack span {
	display: grid;
	width: 44px;
	height: 44px;
	grid-row: span 2;
	place-items: center;
	border-radius: 14px;
	background: rgba(47, 95, 62, 0.10);
	color: var(--kse-primary-green);
	font-size: 13px;
	font-weight: 600;
}

.kse-regimes-v2-system__stack strong {
	color: var(--kse-dark);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.05;
}

.kse-regimes-v2-system__stack em {
	color: rgba(31, 35, 32, 0.64);
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.3;
}

.kse-regimes-v2-system__meter {
	position: relative;
	z-index: 1;
	height: 9px;
	margin-top: 22px;
	border-radius: 999px;
	background: rgba(47, 95, 62, 0.10);
	overflow: hidden;
}

.kse-regimes-v2-system__meter span {
	display: block;
	width: var(--kset-meter, 78%);
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--kse-primary-green), var(--kse-gold));
}

.kse-regimes-v2-benefit__icon svg {
	width: 34px;
	height: 34px;
	display: block;
}

.kse-regimes-v2-benefit__icon {
	background:
		linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,248,238,0.86));
	box-shadow:
		inset 0 0 0 7px rgba(201, 164, 92, 0.08),
		0 14px 34px rgba(47, 95, 62, 0.10);
}

.kse-regimes-v2-card p {
	font-size: 15px !important;
	line-height: 1.58;
}

.kse-page-safe-note {
	padding: clamp(34px, 5vw, 64px) 0 clamp(42px, 6vw, 76px) !important;
}

.kse-page-safe-note__box {
	margin-top: clamp(10px, 2vw, 24px);
	margin-bottom: clamp(10px, 2vw, 24px);
}

.kse-page--certificates .kse-cert-library {
	padding-bottom: clamp(58px, 7vw, 104px);
}

.kse-page--certificates .kse-cert-grid {
	align-items: stretch;
}

.kse-page--certificates .kse-cert-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(47, 95, 62, 0.12);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,242,0.78));
	box-shadow: 0 18px 46px rgba(49, 38, 25, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.kse-page--certificates .kse-cert-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 164, 92, 0.35);
	box-shadow: 0 28px 70px rgba(49, 38, 25, 0.13);
}

.kse-page--certificates .kse-cert-card__thumb {
	position: relative;
	aspect-ratio: 1.26;
	min-height: 178px;
	padding: 16px;
	background:
		radial-gradient(circle at 12% 8%, rgba(201,164,92,0.18), transparent 30%),
		linear-gradient(145deg, rgba(250,246,238,0.96), rgba(255,255,255,0.62));
}

.kse-page--certificates .kse-cert-card__image-button {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 18px;
	background: #fff;
	cursor: zoom-in;
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(49, 38, 25, 0.12);
}

.kse-page--certificates .kse-cert-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.kse-page--certificates .kse-cert-card__image-button:hover .kse-cert-card__image,
.kse-page--certificates .kse-cert-card__image-button:focus-visible .kse-cert-card__image {
	transform: scale(1.035);
}

.kse-page--certificates .kse-cert-card__image-button span {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(23, 32, 25, 0.74);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.kse-page--certificates .kse-cert-card__paper {
	height: 100%;
	min-height: 150px;
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,250,242,0.86));
	box-shadow: inset 0 0 0 1px rgba(201, 164, 92, 0.18), 0 12px 26px rgba(49, 38, 25, 0.08);
}

.kse-page--certificates .kse-cert-card__body {
	padding: 18px 18px 20px;
}

.kse-page--certificates .kse-cert-card__tag {
	background: rgba(47, 95, 62, 0.08);
	color: var(--kse-primary-green);
	font-weight: 600;
}

.kset-cert-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(17, 20, 18, 0.78);
	backdrop-filter: blur(12px);
}

.kset-cert-lightbox.is-open {
	display: flex;
}

.kset-cert-lightbox__dialog {
	position: relative;
	width: min(980px, 92vw);
	max-height: 90vh;
	padding: 14px;
	border-radius: 24px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 30px 100px rgba(0,0,0,0.34);
}

.kset-cert-lightbox__dialog img {
	display: block;
	width: 100%;
	max-height: calc(90vh - 28px);
	object-fit: contain;
	border-radius: 16px;
}

.kset-cert-lightbox__close {
	position: absolute;
	right: -14px;
	top: -14px;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var(--kse-dark);
	font-size: 24px;
	line-height: 1;
	box-shadow: 0 10px 28px rgba(0,0,0,0.22);
	cursor: pointer;
}

@media (max-width: 1180px) {
	.kse-page--regimes-v2 .kse-regimes-v2-hero__visual {
		display: flex;
		min-height: 360px;
	}

	.kse-page--regimes-v2 .kse-regimes-v2-hero__plate.kse-regimes-v2-system {
		width: min(520px, 86vw);
		min-width: 0;
	}
}

@media (max-width: 760px) {
	.kse-page--regimes-v2 .kse-regimes-v2-hero__visual {
		min-height: auto;
		margin-top: 28px;
	}

	.kse-page--regimes-v2 .kse-regimes-v2-hero__plate.kse-regimes-v2-system {
		width: 100%;
		padding: 22px;
		border-radius: 26px;
	}

	.kse-regimes-v2-system__stack {
		grid-template-columns: 38px 1fr;
		padding: 12px;
	}

	.kse-regimes-v2-system__stack span {
		width: 38px;
		height: 38px;
	}

	.kse-page--certificates .kse-cert-card__thumb {
		min-height: 160px;
	}
}

/* v1.0.11: richer regimes system card and certificate visual library */
.kse-page--regimes-v2 .kse-regimes-v2-hero__plate.kse-regimes-v2-system {
	width: min(490px, 40vw);
	padding: 30px;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,247,235,0.88)),
		radial-gradient(circle at 88% 14%, rgba(201,164,92,0.22), transparent 30%),
		radial-gradient(circle at 8% 94%, rgba(47,95,62,0.12), transparent 28%);
}

.kse-page--regimes-v2 .kse-regimes-v2-system::after {
	content: "KETO";
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
}

.kse-regimes-v2-system__micro {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: -4px 0 16px;
}

.kse-regimes-v2-system__micro span {
	display: grid;
	gap: 3px;
	min-height: 62px;
	align-content: center;
	padding: 10px 12px;
	border: 1px solid rgba(201, 164, 92, 0.18);
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,248,237,0.62));
	color: rgba(31, 35, 32, 0.66);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
}

.kse-regimes-v2-system__micro strong {
	color: var(--kse-primary-green);
	font-family: var(--kse-heading-font);
	font-size: 28px;
	font-weight: 600;
	line-height: .85;
}

.kse-regimes-v2-system__footer {
	position: relative;
	z-index: 1;
	margin-top: 16px;
	padding: 14px 16px;
	border-left: 3px solid var(--kse-gold);
	border-radius: 16px;
	background: rgba(47, 95, 62, 0.065);
}

.kse-regimes-v2-system__footer em {
	display: block;
	color: rgba(31, 35, 32, 0.72);
	font-family: var(--kse-heading-font);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.18;
}

.kse-page--certificates .kse-cert-hero__signature strong {
	font-family: var(--kse-heading-font);
	font-size: clamp(25px, 2.2vw, 34px);
	letter-spacing: -0.025em;
}

.kse-page--certificates .kse-cert-hero__certificate--stack {
	position: absolute;
	right: 7%;
	top: 7%;
	width: min(430px, 76vw);
	height: 390px;
	border: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
}

.kse-cert-hero__certificate-card {
	position: absolute;
	border: 1px solid rgba(201, 164, 92, 0.22);
	border-radius: 24px;
	background: rgba(255,255,255,0.88);
	box-shadow: 0 24px 70px rgba(49, 38, 25, 0.16);
	overflow: hidden;
}

.kse-cert-hero__certificate-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
}

.kse-cert-hero__certificate-card.is-main {
	left: 4%;
	top: 0;
	z-index: 2;
	width: 72%;
	height: 305px;
	padding: 10px;
	transform: rotate(-4deg);
}

.kse-cert-hero__certificate-card.is-side {
	right: -2%;
	bottom: 12px;
	z-index: 1;
	width: 58%;
	height: 210px;
	padding: 8px;
	transform: rotate(7deg);
	opacity: .96;
}

.kse-cert-hero__certificate-seal {
	position: absolute;
	right: 8%;
	top: 48%;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 104px;
	height: 104px;
	border: 1px solid rgba(255,255,255,0.55);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kse-primary-green), var(--kse-gold));
	color: #fff;
	font-family: var(--kse-heading-font);
	font-size: 30px;
	font-weight: 600;
	line-height: .86;
	box-shadow: 0 20px 48px rgba(47, 95, 62, 0.22);
}

.kse-cert-hero__certificate-seal span {
	font-family: var(--kse-body-font);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.kse-page--certificates .kse-cert-metric-card {
	align-items: center;
	text-align: center;
	padding: 28px 24px;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,249,239,0.84));
}

.kse-page--certificates .kse-cert-metric-card__icon {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	margin: 0 auto 16px;
	border: 1px solid rgba(201, 164, 92, 0.26);
	border-radius: 22px;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.98), rgba(251,242,225,0.88));
	color: var(--kse-gold);
	box-shadow: inset 0 0 0 8px rgba(201,164,92,0.06), 0 12px 28px rgba(49,38,25,0.08);
}

.kse-page--certificates .kse-cert-metric-card__icon svg {
	display: block;
	width: 34px;
	height: 34px;
	margin: auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kse-page--certificates .kse-cert-card__image {
	object-fit: contain !important;
	background: #fff;
}

.kse-page--certificates .kse-cert-card__image-button {
	background: #fff;
}

@media (max-width: 1180px) {
	.kse-page--certificates .kse-cert-hero__certificate--stack {
		position: relative;
		right: auto;
		top: auto;
		width: min(520px, 100%);
		margin: 0 auto;
	}
}

@media (max-width: 760px) {
	.kse-regimes-v2-system__micro {
		grid-template-columns: 1fr;
	}

	.kse-regimes-v2-system__footer em {
		font-size: 16px;
	}

	.kse-page--certificates .kse-cert-hero__certificate--stack {
		height: 320px;
	}

	.kse-cert-hero__certificate-card.is-main {
		width: 78%;
		height: 245px;
	}

	.kse-cert-hero__certificate-card.is-side {
		width: 62%;
		height: 170px;
	}

	.kse-cert-hero__certificate-seal {
		width: 84px;
		height: 84px;
		font-size: 25px;
	}
}

/* v1.0.11: richer regime system visual and certificate/diploma polish */
.kse-page--regimes-v2 .kse-regimes-v2-hero__plate.kse-regimes-v2-system {
	width: min(470px, 40vw);
	padding: 30px;
}

.kse-regimes-v2-system__chips {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.kse-regimes-v2-system__chips span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border: 1px solid rgba(47, 95, 62, 0.10);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	color: rgba(31, 35, 32, 0.72);
	font-size: 12px;
	font-weight: 600;
}

.kse-regimes-v2-system__note {
	position: relative;
	z-index: 1;
	margin: 18px 0 0;
	padding: 14px 16px;
	border-left: 3px solid var(--kse-gold);
	border-radius: 14px;
	background: rgba(201, 164, 92, 0.08);
	color: rgba(31, 35, 32, 0.72);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.kse-page--certificates .kse-cert-hero__signature strong {
	font-family: var(--kse-heading-font);
	font-size: clamp(30px, 3vw, 52px);
	letter-spacing: -0.035em;
}

.kse-page--certificates .kse-cert-hero__signature span {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kse-page--certificates .kse-cert-metrics__grid {
	align-items: stretch;
}

.kse-page--certificates .kse-cert-metric-card {
	grid-template-columns: 1fr;
	justify-items: center;
	align-content: start;
	text-align: center;
	padding: 28px 22px;
	border-color: rgba(201, 164, 92, 0.20);
	border-radius: 26px;
	background:
		radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.12), transparent 42%),
		rgba(255, 255, 255, 0.92);
}

.kse-page--certificates .kse-cert-metric-card__icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 12px;
	border-radius: 22px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 228, 0.86));
	box-shadow:
		inset 0 0 0 8px rgba(201, 164, 92, 0.08),
		0 16px 34px rgba(49, 38, 25, 0.10);
}

.kse-page--certificates .kse-cert-metric-card__icon svg {
	width: 34px;
	height: 34px;
	stroke-width: 1.85;
}

.kse-page--certificates .kse-cert-metric-card strong {
	font-size: clamp(24px, 2vw, 34px);
}

.kse-page--certificates .kse-cert-metric-card p {
	max-width: 230px;
	margin-left: auto;
	margin-right: auto;
}

.kse-page--certificates .kse-cert-hero__certificate--stack {
	isolation: isolate;
	background:
		radial-gradient(circle at 24% 14%, rgba(201, 164, 92, 0.20), transparent 36%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 234, 214, 0.72));
}

.kse-cert-hero__certificate-card.is-third {
	position: absolute;
	left: -18px;
	bottom: 20px;
	width: 46%;
	transform: rotate(6deg);
	z-index: 2;
}

.kse-cert-hero__certificate-label {
	position: absolute;
	left: 28px;
	top: 24px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(47, 95, 62, 0.88);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 12px 26px rgba(47, 95, 62, 0.18);
}

.kse-page--certificates .kse-cert-card__image-button::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: inherit;
	pointer-events: none;
}

@media (max-width: 1180px) {
	.kse-page--regimes-v2 .kse-regimes-v2-hero__plate.kse-regimes-v2-system {
		width: min(540px, 88vw);
	}
}

@media (max-width: 760px) {
	.kse-regimes-v2-system__chips {
		margin-top: 12px;
	}

	.kse-regimes-v2-system__note {
		font-size: 12px;
	}

	.kse-cert-hero__certificate-card.is-third,
	.kse-cert-hero__certificate-label {
		display: none;
	}
}

/* v1.0.12: warmer certificate palette, cleaner metric icons and language-safe client cards */
.kse-page--certificates .kse-cert-hero__certificate--stack {
	background:
		radial-gradient(circle at 20% 12%, rgba(209, 160, 112, 0.22), transparent 36%),
		radial-gradient(circle at 82% 86%, rgba(232, 199, 153, 0.20), transparent 34%),
		linear-gradient(145deg, rgba(255, 250, 243, 0.95), rgba(246, 232, 213, 0.78));
}

.kse-page--certificates .kse-cert-hero__certificate--stack::after {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: -1;
	border: 1px solid rgba(198, 143, 95, 0.20);
	border-radius: 34px;
	transform: rotate(-3deg);
}

.kse-cert-hero__certificate-card {
	border-color: rgba(198, 143, 95, 0.28);
	box-shadow: 0 24px 70px rgba(72, 49, 34, 0.14);
}

.kse-cert-hero__certificate-seal {
	background: linear-gradient(135deg, #B8896F 0%, #D4A86C 56%, #E6C98F 100%);
	box-shadow: 0 20px 48px rgba(184, 137, 111, 0.28);
}

.kse-cert-hero__certificate-label {
	background: rgba(184, 137, 111, 0.92);
	box-shadow: 0 12px 26px rgba(184, 137, 111, 0.18);
}

.kse-page--certificates .kse-cert-metric-card {
	background:
		radial-gradient(circle at 50% 0%, rgba(212, 168, 108, 0.14), transparent 44%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 239, 0.86));
}

.kse-page--certificates .kse-cert-metric-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B8896F;
	border-color: rgba(184, 137, 111, 0.28);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 238, 220, 0.90));
	box-shadow:
		inset 0 0 0 8px rgba(212, 168, 108, 0.09),
		0 16px 34px rgba(72, 49, 34, 0.10);
}

.kse-page--certificates .kse-cert-metric-card__icon svg {
	width: 33px;
	height: 33px;
	margin: 0;
}

.kse-page--certificates .kse-cert-metric-card strong {
	color: #1F2320;
}

.kset-client-story-card__meta time,
.kse-story-card__meta time {
	display: none !important;
}

/* v1.0.13: remove certificate hero seal from front-end */
.kse-cert-hero__certificate-seal {
	display: none !important;
}

/* v1.0.14: premium WooCommerce account, cart and checkout flows */
.kset-wp-content:has(.kset-wc-flow) {
	margin: 0;
}

.kset-wp-content .woocommerce-notices-wrapper,
.kset-wc-flow .woocommerce-notices-wrapper {
	max-width: 1180px;
	margin: 0 auto 18px;
}

.kset-wc-flow {
	--kset-wc-green: #2F704C;
	--kset-wc-green-dark: #224a37;
	--kset-wc-coral: #EF6F61;
	--kset-wc-purple: #8157C5;
	--kset-wc-cream: #fbf6ec;
	--kset-wc-card: rgba(255, 253, 248, 0.94);
	--kset-wc-border: rgba(95, 68, 42, 0.14);
	--kset-wc-muted: rgba(35, 47, 40, 0.68);
	--kset-wc-shadow: 0 24px 60px rgba(59, 44, 28, 0.10);
	position: relative;
	margin: -10px calc((100vw - 100%) / -2) 0;
	padding: 0 0 clamp(50px, 7vw, 96px);
	background:
		radial-gradient(circle at 2% 10%, rgba(239, 111, 97, 0.14), transparent 25%),
		radial-gradient(circle at 88% 22%, rgba(47, 112, 76, 0.06), transparent 26%),
		linear-gradient(180deg, #fffaf4 0%, #fbf6ec 100%);
	color: #24352b;
	font-size: 18px;
}

.kset-wc-container {
	width: min(1180px, calc(100vw - 48px));
	margin-inline: auto;
}

.kset-wc-hero {
	padding: clamp(46px, 5vw, 76px) 0 clamp(34px, 4vw, 58px);
	background: linear-gradient(90deg, rgba(255, 244, 237, 0.78), rgba(255, 252, 246, 0.3));
}

.kset-wc-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(28px, 5vw, 72px);
	align-items: end;
}

.kset-wc-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 18px;
	margin-bottom: 18px;
	border: 1px solid rgba(47, 112, 76, 0.16);
	border-radius: 999px;
	background: rgba(232, 248, 239, 0.86);
	color: var(--kset-wc-green);
	font-weight: 600;
	line-height: 1;
}

.kset-wc-hero h1 {
	margin: 0;
	color: var(--kset-wc-green);
	font-family: var(--kse-heading-font);
	font-size: clamp(52px, 6vw, 78px);
	font-weight: 600;
	line-height: 0.95;
	letter-spacing: -0.045em;
}

.kset-wc-hero p {
	max-width: 680px;
	margin: 16px 0 0;
	color: var(--kset-wc-muted);
	font-size: 22px;
	line-height: 1.45;
}

.kset-wc-stepper {
	display: flex;
	align-items: center;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kset-wc-stepper li {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--kset-wc-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: rgba(35, 47, 40, 0.72);
	font-size: 16px;
	font-weight: 600;
	white-space: nowrap;
}

.kset-wc-stepper li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: calc(100% + 2px);
	top: 50%;
	width: 12px;
	border-top: 1px dashed rgba(47, 112, 76, 0.28);
}

.kset-wc-stepper span {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 50%;
	background: rgba(106, 83, 61, 0.12);
	color: inherit;
}

.kset-wc-stepper .is-active,
.kset-wc-stepper .is-complete {
	border-color: rgba(47, 112, 76, 0.20);
	background: rgba(231, 249, 240, 0.92);
	color: var(--kset-wc-green);
}

.kset-wc-stepper .is-active span,
.kset-wc-stepper .is-complete span {
	background: var(--kset-wc-green);
	color: #fff;
}

.kset-wc-main {
	padding: clamp(32px, 4vw, 56px) 0 0;
}

.kset-wc-grid,
.kset-account-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
	gap: clamp(28px, 4vw, 54px);
	align-items: start;
}

.kset-wc-grid--checkout {
	grid-template-columns: minmax(0, 0.68fr) minmax(330px, 0.32fr);
}

.kset-cart-card,
.kset-order-card,
.kset-account-card,
.kset-checkout-form-card,
.kset-account-help {
	border: 1px solid var(--kset-wc-border);
	border-radius: 18px;
	background: var(--kset-wc-card);
	box-shadow: var(--kset-wc-shadow);
}

.kset-cart-card {
	padding: 26px;
}

.kset-cart-item {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr) 120px 150px 52px;
	gap: 26px;
	align-items: center;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(95, 68, 42, 0.13);
}

.kset-cart-item__thumb {
	display: grid;
	width: 96px;
	height: 96px;
	place-items: center;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(47, 112, 76, 0.22), rgba(201, 164, 92, 0.18));
	color: var(--kset-wc-green);
	font-family: var(--kse-heading-font);
	font-size: 26px;
	font-weight: 600;
	overflow: hidden;
}

.kset-cart-item__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kset-cart-item__content h2,
.kset-cart-item__content h2 a {
	margin: 0;
	color: var(--kset-wc-green);
	font-family: var(--kse-heading-font);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.1;
	text-decoration: none;
}

.kset-cart-item__content p,
.kset-order-card p {
	margin: 8px 0 0;
	color: var(--kset-wc-muted);
}

.kset-cart-item__price span,
.kset-cart-item__quantity > span {
	display: block;
	margin-bottom: 8px;
	color: rgba(35, 47, 40, 0.58);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kset-cart-item__price strong {
	color: #233128;
	font-size: 27px;
	font-weight: 600;
}

.kset-qty-control {
	display: flex;
	align-items: center;
	gap: 8px;
}

.kset-qty-control__btn,
.kset-qty-control .qty {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid var(--kset-wc-border);
	border-radius: 12px;
	background: #fffdf9;
	color: var(--kset-wc-green);
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}

.kset-qty-control__btn {
	cursor: pointer;
}

.kset-cart-remove {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: rgba(239, 111, 97, 0.10);
	color: #d6453c !important;
	font-size: 25px;
	font-weight: 500;
	text-decoration: none;
}

.kset-cart-coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	padding-top: 24px;
}

.kset-cart-coupon input,
.kset-wc-flow input.input-text,
.kset-wc-flow input[type="text"],
.kset-wc-flow input[type="email"],
.kset-wc-flow input[type="password"],
.kset-wc-flow input[type="tel"],
.kset-wc-flow select,
.kset-wc-flow textarea {
	min-height: 56px;
	width: 100%;
	border: 1px solid rgba(95, 68, 42, 0.20);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.86);
	color: #24352b;
	font-size: 17px;
	line-height: 1.3;
	padding: 0 16px;
	box-shadow: none;
}

.kset-wc-flow textarea {
	min-height: 94px;
	padding-top: 14px;
}

.kset-cart-coupon input {
	max-width: 250px;
}

.kset-cart-coupon .button,
.kset-wc-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 28px;
	border: 1px solid rgba(95, 68, 42, 0.18);
	border-radius: 12px;
	background: #f1e8dc;
	color: #26342b !important;
	font-size: 17px;
	font-weight: 600;
	text-decoration: none;
}

.kset-cart-update {
	margin-left: auto;
}

.kset-wc-trust,
.kset-wc-info,
.kset-wc-help {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	padding: 18px 20px;
	border: 1px solid rgba(47, 112, 76, 0.16);
	border-radius: 14px;
	background: rgba(234, 249, 241, 0.84);
	color: #365d49;
	font-size: 18px;
}

.kset-order-card {
	position: sticky;
	top: 110px;
	padding: 32px;
}

.kset-order-card h2 {
	margin: 0 0 26px;
	color: var(--kset-wc-green);
	font-family: var(--kse-heading-font);
	font-size: 38px;
	font-weight: 600;
	line-height: 1;
}

.kset-order-card__row,
.kset-order-card__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 0 0 20px;
	border-bottom: 1px solid rgba(95, 68, 42, 0.14);
	color: #24352b;
	font-size: 20px;
}

.kset-order-card__total {
	padding: 24px 0 0;
	border: 0;
	font-size: 30px;
	font-weight: 600;
}

.kset-wc-primary,
.kset-wc-pay {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	width: 100%;
	margin-top: 28px;
	padding: 0 28px;
	border: 0 !important;
	border-radius: 12px !important;
	background: var(--kset-wc-coral) !important;
	color: #fff !important;
	font-size: 19px !important;
	font-weight: 600 !important;
	line-height: 1.1 !important;
	text-decoration: none !important;
	box-shadow: 0 18px 38px rgba(239, 111, 97, 0.22) !important;
	cursor: pointer;
}

.kset-wc-pay {
	background: var(--kset-wc-purple) !important;
	box-shadow: 0 18px 38px rgba(129, 87, 197, 0.24) !important;
}

.kset-account-grid {
	grid-template-columns: 1fr 1fr;
}

.kset-account-card,
.kset-checkout-form-card {
	padding: clamp(26px, 3vw, 40px);
}

.kset-account-card__eyebrow,
.kset-checkout-section__head span {
	display: block;
	margin-bottom: 12px;
	color: var(--kset-wc-green-dark);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kset-account-card h2,
.kset-checkout-section h2 {
	margin: 0;
	color: #24352b;
	font-family: var(--kse-heading-font);
	font-size: 38px;
	font-weight: 600;
	line-height: 1.05;
}

.kset-account-card p,
.kset-checkout-section p,
.kset-account-help p {
	color: var(--kset-wc-muted);
	font-size: 19px;
	line-height: 1.52;
}

.kset-wc-flow .form-row {
	margin: 0 0 20px;
}

.kset-wc-flow label {
	color: #26342b;
	font-size: 17px;
	font-weight: 600;
}

.kset-wc-flow .required,
.kset-wc-check b {
	color: var(--kset-wc-coral);
	text-decoration: none;
}

.kset-password-field {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(95, 68, 42, 0.20);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.86);
	padding-right: 8px;
}

.kset-password-field input {
	border: 0 !important;
	background: transparent !important;
}

.kset-password-field button {
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(95, 68, 42, 0.16);
	border-radius: 10px;
	background: #fffdf9;
	color: var(--kset-wc-green);
	font-weight: 600;
	cursor: pointer;
}

.kset-wc-check {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 16px 0;
	font-size: 17px;
	font-weight: 600;
}

.kset-wc-check input {
	width: 24px !important;
	height: 24px !important;
	min-height: 24px !important;
	accent-color: var(--kset-wc-green);
}

.kset-account-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 20px;
}

.kset-account-actions .kset-wc-primary {
	width: auto;
	min-width: 150px;
	margin: 0;
}

.kset-account-lost {
	color: var(--kset-wc-green) !important;
	font-size: 18px;
	font-weight: 600;
}

.kset-account-help {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 70px 1fr auto;
	gap: 22px;
	align-items: center;
	padding: 28px 34px;
}

.kset-account-help > span {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 50%;
	background: rgba(47, 112, 76, 0.12);
	font-size: 25px;
}

.kset-account-help h2 {
	margin: 0 0 8px;
	color: var(--kset-wc-green);
	font-size: 28px;
	font-weight: 600;
}

.kset-account-help a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 28px;
	border: 1px solid rgba(47, 112, 76, 0.42);
	border-radius: 12px;
	color: var(--kset-wc-green) !important;
	font-weight: 600;
	text-decoration: none;
}

.kset-checkout-bars {
	display: grid;
	gap: 14px;
	margin-bottom: 26px;
}

.kset-checkout-bar {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 56px;
	padding: 0 20px;
	border: 1px solid rgba(79, 152, 225, 0.25);
	border-radius: 12px;
	background: rgba(244, 250, 255, 0.88);
	font-size: 17px;
	font-weight: 600;
}

.kset-checkout-bar a {
	color: var(--kset-wc-green) !important;
	text-decoration: underline;
}

.kset-checkout-section + .kset-checkout-section {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(95, 68, 42, 0.12);
}

.kset-checkout-section__head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.kset-checkout-section__head em {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 16px;
	border: 1px solid rgba(47, 112, 76, 0.14);
	border-radius: 999px;
	background: rgba(232, 248, 239, 0.84);
	color: var(--kset-wc-green);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
}

.kset-checkout-fields--two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.kset-checkout-fields--two .form-row {
	margin: 0;
}

.kset-payment-box h3 {
	margin: 28px 0 14px;
	color: var(--kset-wc-green);
	font-family: var(--kse-heading-font);
	font-size: 27px;
	font-weight: 600;
}

.kset-payment-methods {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.kset-payment-method {
	border: 1px solid var(--kset-wc-border);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	overflow: hidden;
}

.kset-payment-method.is-selected {
	border-color: rgba(47, 112, 76, 0.30);
	background: rgba(255, 255, 255, 0.95);
}

.kset-payment-method label {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	cursor: pointer;
}

.kset-payment-method input[type="radio"] {
	width: 24px;
	height: 24px;
	accent-color: var(--kset-wc-green);
}

.kset-payment-method strong,
.kset-payment-method em {
	display: block;
}

.kset-payment-method em {
	margin-top: 3px;
	color: var(--kset-wc-muted);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
}

.kset-payment-method .payment_box {
	padding: 0 16px 16px 52px;
	font-size: 14px;
}

.kset-wc-check--rules {
	margin-top: 24px;
}

.kset-wc-help {
	font-size: 15px;
}

@media (max-width: 1180px) {
	.kset-wc-grid,
	.kset-wc-grid--checkout,
	.kset-account-grid {
		grid-template-columns: 1fr;
	}

	.kset-order-card {
		position: static;
	}
}

@media (max-width: 760px) {
	.kset-wc-flow {
		margin-top: 0;
	}

	.kset-wc-container {
		width: min(100% - 28px, 1180px);
	}

	.kset-wc-hero__grid,
	.kset-cart-item,
	.kset-account-help,
	.kset-checkout-fields--two {
		grid-template-columns: 1fr;
	}

	.kset-wc-stepper {
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.kset-wc-hero h1 {
		font-size: 48px;
	}

	.kset-wc-hero p {
		font-size: 18px;
	}

	.kset-cart-item {
		gap: 16px;
	}

	.kset-cart-card,
	.kset-order-card,
	.kset-account-card,
	.kset-checkout-form-card,
	.kset-account-help {
		padding: 22px;
	}

	.kset-account-actions,
	.kset-cart-coupon {
		align-items: stretch;
		flex-direction: column;
	}

	.kset-account-actions .kset-wc-primary,
	.kset-cart-coupon input,
	.kset-cart-coupon .button,
	.kset-cart-update {
		width: 100%;
		max-width: none;
		margin-left: 0;
	}
}


/* v1.0.15: keep WooCommerce cart/account/checkout pages centered inside the viewport */
body.woocommerce-cart .kset-page-content,
body.woocommerce-checkout .kset-page-content,
body.woocommerce-account .kset-page-content,
body.woocommerce-page .kset-page-content {
	padding: 0 !important;
	overflow-x: clip;
}

body.woocommerce-cart .kset-page-content > .kse-container,
body.woocommerce-checkout .kset-page-content > .kse-container,
body.woocommerce-account .kset-page-content > .kse-container,
body.woocommerce-page .kset-page-content > .kse-container {
	width: 100% !important;
	max-width: none !important;
	padding-inline: 0 !important;
}

body.woocommerce-cart .kset-page-content .kset-wp-content,
body.woocommerce-checkout .kset-page-content .kset-wp-content,
body.woocommerce-account .kset-page-content .kset-wp-content,
body.woocommerce-page .kset-page-content .kset-wp-content,
.kset-page-content .kset-wp-content:has(.kset-wc-flow) {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-cart .kset-wc-flow,
body.woocommerce-checkout .kset-wc-flow,
body.woocommerce-account .kset-wc-flow,
body.woocommerce-page .kset-wc-flow {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	box-sizing: border-box;
	overflow-x: clip;
}

body.woocommerce-cart .kset-wc-container,
body.woocommerce-checkout .kset-wc-container,
body.woocommerce-account .kset-wc-container,
body.woocommerce-page .kset-wc-container {
	width: min(1180px, calc(100vw - 48px));
	max-width: none;
	margin-inline: auto;
}

@media (max-width: 760px) {
	body.woocommerce-cart .kset-wc-container,
	body.woocommerce-checkout .kset-wc-container,
	body.woocommerce-account .kset-wc-container,
	body.woocommerce-page .kset-wc-container {
		width: min(100%, calc(100vw - 28px));
	}
}


/* v1.0.66: premium animated WooCommerce order-received page */
.kset-wc-flow--order-received {
	--kset-thankyou-orange: #fa9503;
	--kset-thankyou-ink: #111111;
	--kset-thankyou-muted: rgba(17, 17, 17, 0.62);
	--kset-thankyou-border: rgba(17, 17, 17, 0.11);
	--kset-thankyou-ivory: #fffaf3;
	margin-top: -1px;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 0%, rgba(250, 149, 3, 0.08), transparent 30%),
		radial-gradient(circle at 90% 12%, rgba(250, 149, 3, 0.06), transparent 28%),
		linear-gradient(180deg, #fffdf9 0%, #fbf7ef 100%);
	color: var(--kset-thankyou-ink);
	font-family: var(--kse-body-font);
	font-weight: 400;
}

.kset-thankyou-hero {
	position: relative;
	padding: clamp(44px, 6vw, 84px) 0 clamp(30px, 4vw, 58px);
	border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.kset-thankyou-hero::before,
.kset-thankyou-hero::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.kset-thankyou-hero::before {
	right: min(8vw, 110px);
	top: 44px;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(250, 149, 3, 0.18);
	animation: ksetThankyouFloat 7s ease-in-out infinite;
}

.kset-thankyou-hero::after {
	left: 8vw;
	bottom: 28px;
	width: 12px;
	height: 12px;
	background: var(--kset-thankyou-orange);
	box-shadow:
		46px -38px 0 rgba(250, 149, 3, 0.18),
		96px 18px 0 rgba(17, 17, 17, 0.08),
		155px -16px 0 rgba(250, 149, 3, 0.28);
	animation: ksetThankyouSparkle 3.6s ease-in-out infinite;
}

.kset-thankyou-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	gap: clamp(28px, 6vw, 90px);
	align-items: center;
}

.kset-thankyou-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--kset-thankyou-orange);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.kset-thankyou-kicker::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
}

.kset-thankyou-hero h1 {
	max-width: 720px;
	margin: 0;
	color: var(--kset-thankyou-ink);
	font-family: var(--kse-heading-font);
	font-size: clamp(38px, 6vw, 76px);
	font-weight: 400;
	line-height: 0.96;
	letter-spacing: -0.055em;
}

.kset-thankyou-hero__copy > p {
	max-width: 680px;
	margin: 18px 0 0;
	color: var(--kset-thankyou-muted);
	font-size: clamp(15px, 1.4vw, 18px);
	font-weight: 400;
	line-height: 1.7;
}

.kset-thankyou-important {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 16px;
	max-width: 900px;
	margin-top: 28px;
	padding: clamp(18px, 2.4vw, 26px);
	border: 1px solid rgba(250, 149, 3, 0.26);
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 233, 0.96)),
		radial-gradient(circle at 0% 0%, rgba(250, 149, 3, 0.14), transparent 42%);
	box-shadow: 0 24px 60px rgba(61, 43, 17, 0.08);
}

.kset-thankyou-important__icon {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 999px;
	background: rgba(250, 149, 3, 0.11);
	color: var(--kset-thankyou-orange);
	font-size: 22px;
	font-weight: 500;
}

.kset-thankyou-important strong {
	display: block;
	margin-bottom: 8px;
	color: var(--kset-thankyou-ink);
	font-size: 17px;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.kset-thankyou-important p {
	margin: 0;
	color: rgba(17, 17, 17, 0.72);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
}

.kset-thankyou-visual {
	position: relative;
	display: grid;
	min-height: 300px;
	place-items: center;
}

.kset-thankyou-orbit {
	position: absolute;
	inset: 8%;
	border: 1px solid rgba(250, 149, 3, 0.16);
	border-radius: 999px;
	animation: ksetThankyouOrbit 14s linear infinite;
}

.kset-thankyou-orbit span {
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--kset-thankyou-orange);
}

.kset-thankyou-orbit span:nth-child(1) {
	left: 50%;
	top: -5px;
}

.kset-thankyou-orbit span:nth-child(2) {
	right: 10%;
	top: 23%;
	width: 7px;
	height: 7px;
	opacity: 0.55;
}

.kset-thankyou-orbit span:nth-child(3) {
	left: 15%;
	bottom: 18%;
	width: 8px;
	height: 8px;
	opacity: 0.7;
}

.kset-thankyou-orbit span:nth-child(4) {
	right: 24%;
	bottom: 2%;
	width: 12px;
	height: 12px;
	opacity: 0.22;
}

.kset-thankyou-check {
	position: relative;
	z-index: 2;
	display: grid;
	width: 168px;
	height: 168px;
	place-items: center;
	border: 1px solid rgba(250, 149, 3, 0.18);
	border-radius: 42px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow:
		0 32px 90px rgba(61, 43, 17, 0.14),
		inset 0 0 0 10px rgba(250, 149, 3, 0.04);
	animation: ksetThankyouPop 0.8s ease-out both;
}

.kset-thankyou-check svg {
	width: 90px;
	height: 90px;
	fill: none;
	stroke: var(--kset-thankyou-orange);
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kset-thankyou-check circle {
	stroke-width: 1.5;
	opacity: 0.4;
}

.kset-thankyou-check path {
	stroke-width: 4;
	stroke-dasharray: 60;
	stroke-dashoffset: 60;
	animation: ksetThankyouDraw 0.7s ease-out 0.45s forwards;
}

.kset-thankyou-visual p {
	position: relative;
	z-index: 2;
	margin: 18px 0 0;
	color: var(--kset-thankyou-muted);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kset-thankyou-main {
	padding: clamp(30px, 4vw, 58px) 0 clamp(54px, 7vw, 94px);
}

.kset-thankyou-meta {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: clamp(24px, 4vw, 42px);
}

.kset-thankyou-meta-card,
.kset-thankyou-card,
.kset-thankyou-side-card,
.kset-thankyou-empty__card {
	border: 1px solid var(--kset-thankyou-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 55px rgba(61, 43, 17, 0.07);
}

.kset-thankyou-meta-card {
	padding: 16px 18px;
}

.kset-thankyou-meta-card span {
	display: block;
	margin-bottom: 8px;
	color: var(--kset-thankyou-muted);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kset-thankyou-meta-card strong {
	display: block;
	color: var(--kset-thankyou-ink);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.kset-thankyou-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
	gap: clamp(24px, 4vw, 42px);
	align-items: start;
}

.kset-thankyou-layout__main,
.kset-thankyou-sidebar {
	display: grid;
	gap: 18px;
}

.kset-thankyou-card,
.kset-thankyou-side-card {
	padding: clamp(22px, 3vw, 34px);
}

.kset-thankyou-card__head {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	margin-bottom: 24px;
}

.kset-thankyou-card__head > span {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(250, 149, 3, 0.17);
	border-radius: 18px;
	background: rgba(250, 149, 3, 0.08);
	color: var(--kset-thankyou-orange);
	font-size: 20px;
	font-weight: 500;
}

.kset-thankyou-card h2,
.kset-thankyou-side-card h2,
.kset-thankyou-empty__card h1 {
	margin: 0;
	color: var(--kset-thankyou-ink);
	font-family: var(--kse-heading-font);
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.kset-thankyou-card__head p,
.kset-thankyou-side-card p,
.kset-thankyou-empty__card p {
	margin: 8px 0 0;
	color: var(--kset-thankyou-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.kset-thankyou-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.kset-thankyou-steps article {
	padding: 18px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 20px;
	background: linear-gradient(180deg, #fffdf9, #fff9ef);
}

.kset-thankyou-steps article > span {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--kset-thankyou-orange);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.kset-thankyou-steps strong {
	display: block;
	color: var(--kset-thankyou-ink);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.22;
}

.kset-thankyou-steps p {
	margin: 8px 0 0;
	color: var(--kset-thankyou-muted);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
}

.kset-thankyou-products,
.kset-thankyou-totals,
.kset-thankyou-questionnaire {
	display: grid;
	gap: 10px;
}

.kset-thankyou-product,
.kset-thankyou-totals > div,
.kset-thankyou-questionnaire > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.kset-thankyou-product:last-child,
.kset-thankyou-totals > div:last-child,
.kset-thankyou-questionnaire > div:last-child {
	border-bottom: 0;
}

.kset-thankyou-product strong,
.kset-thankyou-totals strong,
.kset-thankyou-questionnaire strong {
	color: var(--kset-thankyou-ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	text-align: right;
	overflow-wrap: anywhere;
}

.kset-thankyou-product span,
.kset-thankyou-product em,
.kset-thankyou-totals span,
.kset-thankyou-questionnaire span {
	color: var(--kset-thankyou-muted);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.45;
}

.kset-thankyou-totals {
	margin-top: 18px;
	padding-top: 12px;
	border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.kset-thankyou-totals > div:last-child {
	margin-top: 4px;
	padding-top: 18px;
	border-top: 1px solid rgba(250, 149, 3, 0.25);
}

.kset-thankyou-totals > div:last-child span,
.kset-thankyou-totals > div:last-child strong {
	color: var(--kset-thankyou-orange);
	font-size: 18px;
}

.kset-thankyou-note {
	margin-top: 22px;
	padding: 16px;
	border-radius: 18px;
	background: rgba(250, 149, 3, 0.07);
}

.kset-thankyou-note strong {
	font-weight: 500;
}

.kset-thankyou-note p {
	margin: 6px 0 0;
	color: var(--kset-thankyou-muted);
	font-size: 14px;
	line-height: 1.55;
}

.kset-thankyou-questionnaire {
	max-height: none;
}

.kset-thankyou-questionnaire > div {
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
}

.kset-thankyou-side-card {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 238, 0.84));
}

.kset-thankyou-side-card--soft {
	background: #111;
	color: #fff;
}

.kset-thankyou-side-card--soft h2,
.kset-thankyou-side-card--soft p {
	color: #fff;
}

.kset-thankyou-side-card--soft p {
	opacity: 0.72;
}

.kset-thankyou-side-card a,
.kset-thankyou-empty__actions a,
.kset-thankyou-empty__card > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 18px;
	padding: 0 18px;
	border: 1px solid rgba(250, 149, 3, 0.25);
	border-radius: 999px;
	background: rgba(250, 149, 3, 0.09);
	color: var(--kset-thankyou-orange);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.kset-thankyou-side-card--soft a {
	background: #fff;
	color: #111;
}

.kset-thankyou-side-card address {
	margin: 14px 0 0;
	color: var(--kset-thankyou-muted);
	font-size: 14px;
	font-style: normal;
	line-height: 1.6;
}

.kset-thankyou-empty {
	padding: clamp(48px, 8vw, 110px) 0;
}

.kset-thankyou-empty__card {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(28px, 4vw, 44px);
	text-align: center;
}

.kset-thankyou-empty__card > span {
	display: grid;
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;
	place-items: center;
	border-radius: 999px;
	background: rgba(250, 149, 3, 0.1);
	color: var(--kset-thankyou-orange);
	font-size: 26px;
	font-weight: 500;
}

.kset-thankyou-empty__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 22px;
}

.kset-wc-flow--order-received .woocommerce-order-details,
.kset-wc-flow--order-received .woocommerce-customer-details,
.kset-wc-flow--order-received .woocommerce-order-overview {
	display: none !important;
}

@keyframes ksetThankyouDraw {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes ksetThankyouPop {
	from {
		opacity: 0;
		transform: scale(0.84) translateY(14px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes ksetThankyouOrbit {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes ksetThankyouFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(16px);
	}
}

@keyframes ksetThankyouSparkle {
	0%,
	100% {
		opacity: 0.5;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(-8px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.kset-thankyou-hero::before,
	.kset-thankyou-hero::after,
	.kset-thankyou-orbit,
	.kset-thankyou-check,
	.kset-thankyou-check path {
		animation: none !important;
	}
}

@media (max-width: 980px) {
	.kset-thankyou-hero__grid,
	.kset-thankyou-layout {
		grid-template-columns: 1fr;
	}

	.kset-thankyou-visual {
		min-height: 220px;
	}

	.kset-thankyou-meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kset-thankyou-steps {
		grid-template-columns: 1fr;
	}

	.kset-thankyou-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.kset-wc-flow--order-received {
		margin-inline: calc((100vw - 100%) / -2);
	}

	.kset-thankyou-hero {
		padding-top: 34px;
	}

	.kset-thankyou-hero::before {
		right: -62px;
		top: 16px;
		width: 150px;
		height: 150px;
	}

	.kset-thankyou-hero h1 {
		font-size: 42px;
	}

	.kset-thankyou-important {
		grid-template-columns: 1fr;
		gap: 12px;
		border-radius: 20px;
	}

	.kset-thankyou-important__icon {
		width: 40px;
		height: 40px;
	}

	.kset-thankyou-check {
		width: 132px;
		height: 132px;
		border-radius: 32px;
	}

	.kset-thankyou-check svg {
		width: 74px;
		height: 74px;
	}

	.kset-thankyou-meta,
	.kset-thankyou-sidebar {
		grid-template-columns: 1fr;
	}

	.kset-thankyou-card,
	.kset-thankyou-side-card {
		padding: 20px;
		border-radius: 20px;
	}

	.kset-thankyou-card__head {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
	}

	.kset-thankyou-card__head > span {
		width: 44px;
		height: 44px;
		border-radius: 15px;
	}

	.kset-thankyou-product,
	.kset-thankyou-totals > div,
	.kset-thankyou-questionnaire > div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.kset-thankyou-product strong,
	.kset-thankyou-totals strong,
	.kset-thankyou-questionnaire strong {
		text-align: left;
	}

	.kset-thankyou-empty__actions,
	.kset-thankyou-side-card a,
	.kset-thankyou-empty__actions a,
	.kset-thankyou-empty__card > a {
		width: 100%;
	}
}


/* v1.0.67: softer order-received headline and green/purple animated celebration symbols */
.kset-wc-flow--order-received {
	--kset-thankyou-green: #4f7b55;
	--kset-thankyou-purple: #8d6aa8;
}

.kset-wc-flow--order-received .kset-thankyou-hero h1#kset-thankyou-title {
	font-size: clamp(32px, 5.1vw, 65px) !important;
	font-weight: 500 !important;
	letter-spacing: -0.045em;
}

.kset-wc-flow--order-received .kset-thankyou-hero::before {
	border-color: rgba(141, 106, 168, 0.22);
	box-shadow: 0 0 0 18px rgba(79, 123, 85, 0.035);
}

.kset-wc-flow--order-received .kset-thankyou-hero::after {
	background: var(--kset-thankyou-green);
	box-shadow:
		46px -38px 0 rgba(141, 106, 168, 0.24),
		96px 18px 0 rgba(79, 123, 85, 0.24),
		155px -16px 0 rgba(250, 149, 3, 0.24);
}

.kset-wc-flow--order-received .kset-thankyou-orbit {
	border-color: rgba(141, 106, 168, 0.24);
	background:
		radial-gradient(circle at 50% 0%, rgba(141, 106, 168, 0.10), transparent 34%),
		radial-gradient(circle at 15% 85%, rgba(79, 123, 85, 0.11), transparent 34%);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(1) {
	background: var(--kset-thankyou-purple);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(2) {
	background: var(--kset-thankyou-green);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(3) {
	background: var(--kset-thankyou-orange);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(4) {
	background: var(--kset-thankyou-purple);
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols {
	isolation: isolate;
	border-color: rgba(141, 106, 168, 0.22);
	background:
		radial-gradient(circle at 28% 18%, rgba(141, 106, 168, 0.15), transparent 34%),
		radial-gradient(circle at 74% 78%, rgba(79, 123, 85, 0.16), transparent 38%),
		rgba(255, 255, 255, 0.92);
	box-shadow:
		0 34px 92px rgba(61, 43, 17, 0.13),
		0 18px 54px rgba(141, 106, 168, 0.12),
		inset 0 0 0 10px rgba(79, 123, 85, 0.045);
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols::before,
.kset-wc-flow--order-received .kset-thankyou-check--symbols::after {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: -1;
	border-radius: 34px;
	border: 1px solid rgba(141, 106, 168, 0.15);
	animation: ksetThankyouSoftPulse 3.8s ease-in-out infinite;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols::after {
	inset: 30px;
	border-color: rgba(79, 123, 85, 0.16);
	animation-delay: 1.2s;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols span {
	position: absolute;
	left: 50%;
	top: 50%;
	display: grid;
	width: 94px;
	height: 94px;
	place-items: center;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
	font-size: 58px;
	font-weight: 500;
	line-height: 1;
	transform: translate(-50%, -50%) scale(0.72) rotate(-8deg);
	opacity: 0;
	animation: ksetThankyouSymbolCycle 7.5s ease-in-out infinite;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols span:first-child {
	color: var(--kset-thankyou-green);
	font-size: 64px;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols span:nth-child(2) {
	animation-delay: 1.5s;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols span:nth-child(3) {
	animation-delay: 3s;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols span:nth-child(4) {
	animation-delay: 4.5s;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols span:nth-child(5) {
	animation-delay: 6s;
}

@keyframes ksetThankyouSymbolCycle {
	0%, 8% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.72) rotate(-8deg);
	}
	12%, 26% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) rotate(0deg);
	}
	31%, 100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.82) rotate(8deg);
	}
}

@keyframes ksetThankyouSoftPulse {
	0%, 100% {
		opacity: 0.7;
		transform: scale(0.96);
	}
	50% {
		opacity: 1;
		transform: scale(1.04);
	}
}

@media (prefers-reduced-motion: reduce) {
	.kset-wc-flow--order-received .kset-thankyou-check--symbols span {
		animation: none !important;
	}

	.kset-wc-flow--order-received .kset-thankyou-check--symbols span:first-child {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) rotate(0deg);
	}
}

@media (max-width: 760px) {
	.kset-wc-flow--order-received .kset-thankyou-hero h1#kset-thankyou-title {
		font-size: clamp(30px, 10vw, 46px) !important;
	}

	.kset-wc-flow--order-received .kset-thankyou-check--symbols span {
		width: 78px;
		height: 78px;
		font-size: 46px;
	}

	.kset-wc-flow--order-received .kset-thankyou-check--symbols span:first-child {
		font-size: 52px;
	}
}


/* v1.0.68: shorter order-received copy, smaller headline, and centered dynamic celebration orbit */
.kset-wc-flow--order-received .kset-thankyou-hero h1#kset-thankyou-title {
	font-size: clamp(26px, 4.1vw, 52px) !important;
	font-weight: 500 !important;
	letter-spacing: -0.04em !important;
	line-height: 0.98 !important;
}

.kset-wc-flow--order-received .kset-thankyou-hero__copy > p {
	max-width: 520px;
}

.kset-wc-flow--order-received .kset-thankyou-visual {
	min-height: 330px;
}

.kset-wc-flow--order-received .kset-thankyou-orbit {
	inset: auto !important;
	left: 50%;
	top: 50%;
	width: min(308px, 82%);
	height: auto;
	aspect-ratio: 1 / 1;
	border-color: rgba(141, 106, 168, 0.26);
	background:
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82) 0 33%, transparent 34%),
		conic-gradient(from 20deg, rgba(141, 106, 168, 0.16), rgba(79, 123, 85, 0.14), rgba(250, 149, 3, 0.16), rgba(141, 106, 168, 0.16));
	box-shadow:
		0 0 0 18px rgba(141, 106, 168, 0.035),
		0 0 0 42px rgba(79, 123, 85, 0.025),
		0 24px 90px rgba(61, 43, 17, 0.08);
	transform-origin: 50% 50%;
	animation: ksetThankyouOrbitCentered 10s linear infinite !important;
}

.kset-wc-flow--order-received .kset-thankyou-orbit::before,
.kset-wc-flow--order-received .kset-thankyou-orbit::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.kset-wc-flow--order-received .kset-thankyou-orbit::before {
	inset: 16%;
	border: 1px dashed rgba(141, 106, 168, 0.18);
	animation: ksetThankyouOrbitInner 7s linear infinite reverse;
}

.kset-wc-flow--order-received .kset-thankyou-orbit::after {
	inset: 31%;
	border: 1px solid rgba(79, 123, 85, 0.17);
	background: radial-gradient(circle, rgba(79, 123, 85, 0.055), transparent 62%);
	animation: ksetThankyouPulseCentered 3.8s ease-in-out infinite;
}

.kset-wc-flow--order-received .kset-thankyou-orbit span {
	left: 50% !important;
	top: 50% !important;
	right: auto !important;
	bottom: auto !important;
	opacity: 1;
	box-shadow: 0 10px 24px rgba(61, 43, 17, 0.13);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(1) {
	width: 12px;
	height: 12px;
	background: var(--kset-thankyou-purple);
	transform: translate(-50%, -50%) rotate(0deg) translateX(154px);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(2) {
	width: 9px;
	height: 9px;
	background: var(--kset-thankyou-green);
	transform: translate(-50%, -50%) rotate(96deg) translateX(154px);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(3) {
	width: 11px;
	height: 11px;
	background: var(--kset-thankyou-orange);
	transform: translate(-50%, -50%) rotate(202deg) translateX(154px);
}

.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(4) {
	width: 8px;
	height: 8px;
	background: rgba(141, 106, 168, 0.54);
	transform: translate(-50%, -50%) rotate(300deg) translateX(154px);
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols {
	animation: ksetThankyouPop 0.8s ease-out both, ksetThankyouSymbolFloat 4.6s ease-in-out 0.9s infinite;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols span {
	background: rgba(255, 255, 255, 0.74);
	box-shadow:
		inset 0 0 0 1px rgba(17, 17, 17, 0.055),
		0 14px 34px rgba(61, 43, 17, 0.08);
}

@keyframes ksetThankyouOrbitCentered {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes ksetThankyouOrbitInner {
	from {
		transform: rotate(0deg) scale(1);
	}
	to {
		transform: rotate(-360deg) scale(1);
	}
}

@keyframes ksetThankyouPulseCentered {
	0%, 100% {
		opacity: 0.58;
		transform: scale(0.94);
	}
	50% {
		opacity: 1;
		transform: scale(1.08);
	}
}

@keyframes ksetThankyouSymbolFloat {
	0%, 100% {
		transform: translateY(0) rotate(-1deg);
	}
	50% {
		transform: translateY(-8px) rotate(1deg);
	}
}

@media (max-width: 760px) {
	.kset-wc-flow--order-received .kset-thankyou-hero h1#kset-thankyou-title {
		font-size: clamp(24px, 8vw, 37px) !important;
	}

	.kset-wc-flow--order-received .kset-thankyou-visual {
		min-height: 250px;
	}

	.kset-wc-flow--order-received .kset-thankyou-orbit {
		width: min(236px, 78vw);
	}

	.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(1) {
		transform: translate(-50%, -50%) rotate(0deg) translateX(118px);
	}

	.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(2) {
		transform: translate(-50%, -50%) rotate(96deg) translateX(118px);
	}

	.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(3) {
		transform: translate(-50%, -50%) rotate(202deg) translateX(118px);
	}

	.kset-wc-flow--order-received .kset-thankyou-orbit span:nth-child(4) {
		transform: translate(-50%, -50%) rotate(300deg) translateX(118px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.kset-wc-flow--order-received .kset-thankyou-orbit,
	.kset-wc-flow--order-received .kset-thankyou-orbit::before,
	.kset-wc-flow--order-received .kset-thankyou-orbit::after,
	.kset-wc-flow--order-received .kset-thankyou-check--symbols {
		animation: none !important;
	}

	.kset-wc-flow--order-received .kset-thankyou-orbit {
		transform: translate(-50%, -50%) !important;
	}
}


/* v1.0.69: order-received title scale, sidebar copy, and removed orbit ring */
.kset-wc-flow--order-received .kset-thankyou-orbit {
	display: none !important;
}

.kset-wc-flow--order-received .kset-thankyou-card--next .kset-thankyou-card__head h2,
.kset-wc-flow--order-received .kset-thankyou-sidebar .kset-thankyou-side-card:first-child h2,
.kset-wc-flow--order-received .kset-thankyou-steps strong {
	font-size: 22px !important;
	font-weight: 500 !important;
	line-height: 1.18 !important;
	letter-spacing: -0.025em !important;
}

.kset-wc-flow--order-received .kset-thankyou-visual {
	min-height: 260px;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols {
	width: 188px;
	height: 188px;
	border-radius: 48px;
	box-shadow:
		0 34px 90px rgba(61, 43, 17, 0.11),
		0 20px 70px rgba(141, 106, 168, 0.12),
		0 0 0 20px rgba(79, 123, 85, 0.035),
		0 0 0 42px rgba(141, 106, 168, 0.03),
		inset 0 0 0 10px rgba(79, 123, 85, 0.045) !important;
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols::before {
	inset: -26px;
	border-radius: 64px;
	border-color: rgba(141, 106, 168, 0.11);
}

.kset-wc-flow--order-received .kset-thankyou-check--symbols::after {
	inset: -48px;
	border-radius: 78px;
	border-color: rgba(79, 123, 85, 0.09);
}

@media (max-width: 760px) {
	.kset-wc-flow--order-received .kset-thankyou-visual {
		min-height: 220px;
	}

	.kset-wc-flow--order-received .kset-thankyou-card--next .kset-thankyou-card__head h2,
	.kset-wc-flow--order-received .kset-thankyou-sidebar .kset-thankyou-side-card:first-child h2,
	.kset-wc-flow--order-received .kset-thankyou-steps strong {
		font-size: 22px !important;
	}

	.kset-wc-flow--order-received .kset-thankyou-check--symbols {
		width: 150px;
		height: 150px;
		border-radius: 40px;
	}
}

/* v1.0.109: allow safe inline formatting and soft line breaks inside regime features */
.kset-regime-product-card__features li br {
	display: block;
	content: "";
	margin-top: 7px;
}

.kset-regime-product-card__features li strong,
.kset-regime-product-card__features li b {
	font-weight: 700;
	color: rgba(31, 35, 32, 0.92);
}

.kset-regime-product-card__features li em,
.kset-regime-product-card__features li i {
	font-style: italic;
}

.kset-regime-product-card__features li small,
.kset-regime-product-card__features .kset-regime-feature-muted,
.kset-regime-product-card__features .kset-regime-feature-note {
	display: inline-block;
	margin-top: 4px;
	color: rgba(31, 35, 32, 0.58);
	font-size: 0.94em;
	line-height: 1.45;
}

/* v1.0.110 account login-only and empty cart CTA. */
.kset-account-grid--login-only {
	grid-template-columns: minmax(0, 720px) !important;
	justify-content: center !important;
}

.kset-account-grid--login-only .kset-account-card {
	width: 100% !important;
}

.kset-account-login-note {
	align-items: flex-start !important;
	margin: 22px 0 24px !important;
}

.kset-account-login-note a,
.kset-account-help--purchase-only a {
	color: #fa9503 !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(250, 149, 3, 0.34) !important;
}

.kset-account-login-note a:hover,
.kset-account-login-note a:focus,
.kset-account-help--purchase-only a:hover,
.kset-account-help--purchase-only a:focus {
	border-bottom-color: #fa9503 !important;
}

.kset-account-help--purchase-only {
	margin-top: 30px !important;
}

.kset-account-help--compact {
	margin-top: 16px !important;
}

.kset-empty-cart-card.cart-empty.woocommerce-info {
	display: grid !important;
	grid-template-columns: 72px minmax(0, 1fr) !important;
	gap: 24px !important;
	align-items: start !important;
	max-width: 900px !important;
	margin: 0 auto !important;
	padding: clamp(28px, 4vw, 48px) !important;
	border: 1px solid rgba(17, 17, 17, 0.10) !important;
	border-radius: 26px !important;
	background: #fff !important;
	box-shadow: 0 22px 70px rgba(17, 17, 17, 0.07) !important;
	color: #111 !important;
	font-size: 18px !important;
	line-height: 1.7 !important;
}

.kset-empty-cart-card.cart-empty.woocommerce-info::before,
.kset-empty-cart-card.cart-empty.woocommerce-info::after {
	content: none !important;
	display: none !important;
}

.kset-empty-cart-card__icon {
	display: grid !important;
	width: 64px !important;
	height: 64px !important;
	place-items: center !important;
	border-radius: 50% !important;
	background: rgba(250, 149, 3, 0.12) !important;
	font-size: 26px !important;
}

.kset-empty-cart-card__content h2 {
	margin: 0 0 12px !important;
	color: #111 !important;
	font-size: clamp(26px, 3vw, 38px) !important;
	font-weight: 500 !important;
	line-height: 1.18 !important;
}

.kset-empty-cart-card__content p {
	max-width: 680px !important;
	margin: 0 !important;
	color: #555 !important;
	font-size: clamp(17px, 1.8vw, 20px) !important;
	line-height: 1.75 !important;
}

.kset-empty-cart-card__content a:not(.button) {
	color: #fa9503 !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(250, 149, 3, 0.34) !important;
}

.kset-empty-cart-card__content a:not(.button):hover,
.kset-empty-cart-card__content a:not(.button):focus {
	border-bottom-color: #fa9503 !important;
}

.kset-empty-cart-card__actions {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 14px !important;
	margin-top: 26px !important;
}

.kset-empty-cart-card__cta.kset-wc-primary,
.kset-empty-cart-card__help.kset-wc-secondary {
	width: auto !important;
	min-width: 190px !important;
	margin-top: 0 !important;
	padding-left: 30px !important;
	padding-right: 30px !important;
}

@media (max-width: 760px) {
	.kset-account-grid--login-only {
		grid-template-columns: 1fr !important;
	}

	.kset-empty-cart-card.cart-empty.woocommerce-info {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
		padding: 24px !important;
	}

	.kset-empty-cart-card__actions,
	.kset-empty-cart-card__cta.kset-wc-primary,
	.kset-empty-cart-card__help.kset-wc-secondary {
		width: 100% !important;
	}
}

/* v1.0.114: shared inner-regime intro copy. */
.kset-regime-detail-intro {
	width: min(820px, 100%);
	margin: 26px auto 0;
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid rgba(31, 35, 32, 0.10);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 22px 55px rgba(31, 35, 32, 0.08);
	text-align: left;
}

.kset-regime-detail-hero .kset-regime-detail-intro p {
	max-width: none;
	margin: 0;
	text-align: left;
}

.kset-regime-detail-hero .kset-regime-detail-intro__lead {
	color: var(--kset-detail-ink, #1f2320) !important;
	font-size: clamp(17px, 1.55vw, 20px) !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
}

.kset-regime-detail-hero .kset-regime-detail-intro__item {
	color: rgba(31, 35, 32, 0.72) !important;
	font-size: clamp(14px, 1.2vw, 16px) !important;
	font-weight: 500 !important;
	line-height: 1.65 !important;
}

.kset-regime-detail-hero .kset-regime-detail-intro__item + .kset-regime-detail-intro__item {
	margin-top: 7px;
}

.kset-regime-detail-hero .kset-regime-detail-intro__lead + .kset-regime-detail-intro__item {
	margin-top: 14px;
}

@media (max-width: 760px) {
	.kset-regime-detail-intro {
		margin-top: 20px;
		padding: 18px;
		border-radius: 22px;
	}
}


/* v1.0.127: About story signature image fallback. */
.kset-theme-page--about-person .kset-about-story-signature__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
}

/* v1.0.144: empty/filled header cart visual state. */
.kset-cart-link.kset-cart-link--empty {
	background: transparent;
	box-shadow: none;
}

.kset-cart-link.kset-cart-link--empty:hover,
.kset-cart-link.kset-cart-link--empty:focus-visible {
	background: rgba(255, 255, 255, 0.72);
}

.kset-cart-link.kset-cart-link--empty .kset-cart-link__count {
	display: none;
}

.kset-cart-link.kset-cart-link--has-items {
	border-color: rgba(47, 95, 62, 0.30);
	background: rgba(47, 95, 62, 0.10);
	color: var(--kse-primary-green, #2f5f3e);
	box-shadow: 0 10px 26px rgba(47, 95, 62, 0.12);
}

.kset-cart-link.kset-cart-link--has-items:hover,
.kset-cart-link.kset-cart-link--has-items:focus-visible {
	border-color: rgba(47, 95, 62, 0.42);
	background: rgba(47, 95, 62, 0.15);
	color: var(--kse-primary-green, #2f5f3e);
}

.kset-cart-link.kset-cart-link--has-items .kset-cart-link__count {
	background: var(--kse-primary-green, #2f5f3e);
}

