@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap");

:root {
	--kb-bg: #fdf8fb;
	--kb-surface: #ffffff;
	--kb-soft: #f8edf3;
	--kb-soft-2: #f7e9f1;
	--kb-dark: #2f1b28;
	--kb-ink: #352231;
	--kb-muted: #8a7080;
	--kb-pink: #ef95ac;
	--kb-pink-strong: #e785a0;
	--kb-green: #a7cdbf;
	--kb-green-deep: #93c1b2;
	--kb-border: #eedde7;
	--kb-shadow: 0 16px 40px rgba(78, 37, 56, 0.12);
	--kb-shadow-sm: 0 8px 18px rgba(78, 37, 56, 0.07);
	--kb-black: #111111;
	--kb-white: #ffffff;
}

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

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: #cf9ab1 #f8edf3;
}

*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

*::-webkit-scrollbar-track {
	background: #f8edf3;
}

*::-webkit-scrollbar-thumb {
	background: #cf9ab1;
	border-radius: 999px;
}

body {
	font-family: "Plus Jakarta Sans", "Trebuchet MS", sans-serif;
	color: var(--kb-ink);
	background: var(--kb-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.kb-brand-wordmark {
	font-family: "Cormorant Garamond", Georgia, serif;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.kb-container {
	width: min(1180px, 92vw);
	margin: 0 auto;
}

.kb-main {
	min-height: 60vh;
}

.kb-topbar {
	display: block;
	background: linear-gradient(90deg, #e785a0 0%, #efb2c5 54%, #a7cdbf 100%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
}

.kb-topbar-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 16px;
	padding: 11px 0;
}

.kb-topbar-inner span {
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kb-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: #ffffff;
	border-bottom: 1px solid #f0e2ea;
	overflow: visible;
}

.kb-header .kb-container {
	width: min(1800px, 96vw);
}

.kb-header-main {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 16px 0;
}

.kb-brand {
	display: flex;
	align-items: center;
}

.custom-logo-link img,
.custom-logo {
	max-height: 74px;
	width: auto;
}

.kb-brand-link {
	text-decoration: none;
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}

.kb-brand-wordmark {
	font-size: clamp(34px, 2.6vw, 46px);
	font-family: "Brush Script MT", "Segoe Script", cursive;
	color: var(--kb-pink-strong);
	line-height: 1;
}

.kb-brand-suffix {
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 600;
	color: var(--kb-green-deep);
}

.kb-menu-toggle {
	display: none;
	border: 1px solid #e6d4df;
	background: #fff;
	color: #4a2d3b;
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 600;
}

.kb-header-nav-wrap {
	border-top: 1px solid #f2e4ec;
	border-bottom: 1px solid #f2e4ec;
	background: rgba(255, 255, 255, 0.96);
}

.kb-header-nav-wrap .kb-container,
.kb-nav {
	overflow: visible;
}

.kb-nav .menu {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 28px;
	margin: 0;
	padding: 12px 0;
	flex-wrap: nowrap;
	overflow: visible;
}

.kb-nav .menu > li {
	position: relative;
	flex: 0 0 auto;
}

.kb-nav .menu > li > a {
	font-weight: 700;
	letter-spacing: 0.01em;
	font-size: 15px;
	line-height: 1.2;
	color: #3a2331;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 4px 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.kb-nav .menu > .current-menu-item > a,
.kb-nav .menu > .current-menu-parent > a,
.kb-nav .menu > .current-menu-ancestor > a {
	color: var(--kb-green-deep);
}

.kb-nav .menu > .menu-item-has-children > a::after {
	content: "⌄";
	font-size: 11px;
	color: #bc9aad;
	transform: translateY(-1px);
}

.kb-submenu-toggle {
	display: none;
}

.kb-nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 12px 0;
	border-radius: 0;
	background: #fff8fc;
	border: 1px solid #eedde7;
	box-shadow: 0 20px 40px rgba(78, 37, 56, 0.16);
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 420px;
	display: block;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0);
	transition: opacity 0.18s ease, visibility 0.18s ease;
	z-index: 120;
	max-height: none;
	overflow: visible;
}

.kb-nav .menu > li > .sub-menu {
	min-width: 420px;
	max-width: 420px;
}

.kb-nav .menu > li:nth-last-child(-n + 3) > .sub-menu {
	left: auto;
	right: 0;
}

.kb-nav .sub-menu .sub-menu {
	position: absolute;
	top: -1px;
	left: 100%;
	min-width: 340px;
	padding: 12px 0;
	background: #fffafd;
	border: 1px solid #eedde7;
	box-shadow: 0 20px 40px rgba(78, 37, 56, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	z-index: 121;
}

.kb-nav .menu > li:nth-last-child(-n + 3) > .sub-menu .sub-menu {
	left: auto;
	right: 100%;
	transform: translateX(-10px);
}

.kb-nav .menu > li:hover > .sub-menu,
.kb-nav .menu > li:focus-within > .sub-menu,
.kb-nav .sub-menu > li:hover > .sub-menu,
.kb-nav .sub-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
}

.kb-nav .sub-menu a {
	display: block;
	padding: 11px 30px;
	border-radius: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #735968;
	white-space: nowrap;
}

.kb-nav .sub-menu a:hover {
	background: #f8ebf2;
	color: var(--kb-pink-strong);
}

.kb-nav .menu > li > .sub-menu > li > a {
	font-weight: 500;
	color: #6f5564;
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.kb-nav .menu > li > .sub-menu > li > .sub-menu > li > a {
	font-size: 15px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: #654b5a;
}

.kb-nav .menu > li > .sub-menu > li {
	position: relative;
}

.kb-nav .menu > li > .sub-menu > li.menu-item-has-children > a {
	padding-right: 52px;
}

.kb-nav .menu > li > .sub-menu > li.menu-item-has-children > a::after {
	content: "›";
	position: absolute;
	right: 22px;
	color: #bf9bad;
	font-size: 18px;
	line-height: 1;
	transform: translateY(-2px);
}

.kb-nav .menu > li > .sub-menu > li:hover > .sub-menu,
.kb-nav .menu > li > .sub-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.kb-nav a {
	text-decoration: none;
	color: #3b2633;
}

.kb-nav a:hover {
	color: var(--kb-pink-strong);
}

.kb-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: auto;
	justify-content: flex-end;
}

.kb-header-search {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.kb-header-search input[type="search"] {
	width: clamp(220px, 28vw, 420px);
	height: 52px;
	border: 1px solid #e4d3de;
	background: #fff;
	border-radius: 999px;
	padding: 12px 18px;
	font-size: 15px;
	color: #3e2a36;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.kb-header-search input[type="search"]:focus {
	border-color: #c77498;
	box-shadow: 0 0 0 4px rgba(184, 95, 130, 0.16);
}

.kb-header-actions a {
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	color: #3e2a36;
}

.kb-header-actions a:hover {
	color: var(--kb-pink-strong);
}

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

.kb-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--kb-pink-strong);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.kb-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, #fff9fc 0%, #fdf1f7 42%, #f9e8f1 100%);
}

.kb-hero.has-image {
	background: #fbf1f6;
	color: #2f2030;
}

.kb-hero-grid {
	position: relative;
	z-index: 3;
	min-height: clamp(560px, 72vh, 760px);
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 30px;
	padding: clamp(40px, 8vw, 80px) 0;
}

.kb-hero.has-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 250, 253, 0.88) 0%,
		rgba(255, 251, 253, 0.72) 34%,
		rgba(255, 252, 253, 0.42) 52%,
		rgba(255, 252, 253, 0.08) 72%,
		rgba(255, 252, 253, 0.01) 100%
	);
	z-index: 1;
}

.kb-hero.has-image.tone-dark::after {
	background: linear-gradient(
		90deg,
		rgba(34, 16, 29, 0.78) 0%,
		rgba(42, 20, 36, 0.62) 42%,
		rgba(52, 27, 43, 0.32) 68%,
		rgba(52, 27, 43, 0.12) 100%
	);
}

.kb-hero-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.kb-hero.banner-only::after {
	display: none;
}

.kb-hero.banner-only .kb-hero-slider {
	position: relative;
	inset: auto;
	height: clamp(360px, 58vw, 760px);
}

.kb-hero.banner-only .kb-hero-slide {
	position: absolute;
	inset: 0;
}

.kb-hero.banner-only .kb-hero-slide img {
	object-fit: cover;
	object-position: center;
}

.kb-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease;
}

.kb-hero-slide.is-active {
	opacity: 1;
}

.kb-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.kb-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	border: 0;
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
}

.kb-hero-prev {
	left: 24px;
}

.kb-hero-next {
	right: 24px;
}

.kb-hero-dots {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 4;
}

.kb-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
}

.kb-hero-dot.is-active {
	background: #fff;
}

.kb-hero.banner-only .kb-hero-arrow {
	background: rgba(74, 31, 52, 0.28);
}

.kb-hero.banner-only .kb-hero-dot {
	background: rgba(98, 44, 70, 0.3);
}

.kb-hero.banner-only .kb-hero-dot.is-active {
	background: var(--kb-pink);
}

.kb-hero-content {
	position: relative;
	z-index: 5;
	max-width: 620px;
}

.kb-hero-logo {
	max-width: 280px;
	margin-bottom: 10px;
}

.kb-hero h1 {
	margin: 0;
	font-size: clamp(36px, 5vw, 72px);
	line-height: 1.06;
	font-family: "Garamond", "Times New Roman", serif;
	color: var(--kb-pink-strong);
}

.kb-hero.has-image.tone-light h1 {
	color: #d79cb3;
}

.kb-hero.has-image.tone-dark h1 {
	color: #ffd6e5;
}

.kb-hero-subtitle {
	margin: 10px 0 0;
	font-size: clamp(24px, 2.8vw, 48px);
	line-height: 1.1;
	font-weight: 300;
	color: #5a3b4c;
}

.kb-hero:not(.has-image) .kb-hero-subtitle {
	color: #624252;
}

.kb-hero.has-image.tone-dark .kb-hero-subtitle {
	color: #f5eaf0;
}

.kb-hero-copy {
	margin: 24px 0;
	font-size: clamp(18px, 1.8vw, 30px);
	font-weight: 300;
	color: #7a5a6b;
}

.kb-hero:not(.has-image) .kb-hero-copy {
	color: #866474;
}

.kb-hero.has-image.tone-dark .kb-hero-copy {
	color: #e9dbe4;
}

.kb-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.kb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 28px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.kb-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(95, 45, 67, 0.2);
}

.kb-btn-primary:hover {
	background: #8c3a5e;
	border-color: #8c3a5e;
}

.kb-btn-primary {
	background: #7a2f50;
	border-color: #7a2f50;
	color: #fff;
	letter-spacing: 0.02em;
}

.kb-btn-secondary {
	background: rgba(255, 255, 255, 0.96);
	color: #4f3141;
	border-color: #e4cfdb;
	letter-spacing: 0.02em;
}

.kb-hero-visual {
	position: relative;
	width: min(520px, 88%);
	height: 420px;
	border-radius: 32px;
	background: linear-gradient(180deg, #fff7fb 0%, #f5e6ef 100%);
	margin-inline: auto;
	box-shadow: var(--kb-shadow);
}

.kb-bottle,
.kb-jar {
	position: absolute;
	background: linear-gradient(180deg, #ffffff 0%, #f1e6ee 100%);
	border: 1px solid #eadbe5;
	box-shadow: 0 10px 28px rgba(84, 47, 67, 0.13);
}

.kb-bottle-sm {
	width: 95px;
	height: 190px;
	left: 95px;
	bottom: 64px;
	border-radius: 54px 54px 30px 30px;
}

.kb-bottle-lg {
	width: 130px;
	height: 250px;
	left: 210px;
	bottom: 48px;
	border-radius: 62px 62px 30px 30px;
}

.kb-jar {
	width: 160px;
	height: 110px;
	right: 44px;
	bottom: 54px;
	border-radius: 40px;
}

.kb-section {
	padding: clamp(58px, 8vw, 106px) 0;
}

.kb-section-soft {
	background: linear-gradient(180deg, #fdf4f9 0%, #fff9fc 100%);
	border-top: 1px solid #f0e1ea;
	border-bottom: 1px solid #f0e1ea;
}

.kb-section-head {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 38px;
}

.kb-section-head h2 {
	font-size: clamp(30px, 4vw, 56px);
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
	color: #3a2432;
	letter-spacing: 0.01em;
}

.kb-section-head p {
	font-size: 17px;
	color: var(--kb-muted);
	margin: 12px 0 0;
}

.kb-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.kb-category-card {
	position: relative;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	padding: 22px;
	border-radius: 20px;
	text-decoration: none;
	color: #ffffff;
	background: linear-gradient(160deg, #2e323e 0%, #1e232d 45%, #161920 100%);
	overflow: hidden;
	box-shadow: var(--kb-shadow-sm);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kb-category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--kb-shadow);
}

.kb-category-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--kb-cat-image, none);
	background-size: cover;
	background-position: center;
	opacity: 0.36;
}

.kb-category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 16, 16, 0.12) 0%, rgba(12, 12, 14, 0.86) 88%);
}

.kb-category-card > * {
	position: relative;
	z-index: 2;
}

.kb-category-card-title {
	font-size: 24px;
	font-family: "Garamond", "Times New Roman", serif;
}

.kb-category-card-link {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.85;
}

.kb-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.kb-products-grid .woocommerce {
	width: 100%;
}

.kb-products-grid ul.products {
	margin: 0;
}

.kb-empty-woo {
	background: #fff;
	border: 1px solid var(--kb-border);
	border-radius: 14px;
	padding: 26px;
	text-align: center;
}

.kb-banner-split {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 18px;
}

.kb-banner-card {
	position: relative;
	display: block;
	border-radius: 24px;
	overflow: hidden;
	min-height: 280px;
	box-shadow: var(--kb-shadow);
}

.kb-banner-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.kb-banner-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(58, 32, 47, 0.02) 0%, rgba(42, 20, 34, 0.7) 100%);
}

.kb-banner-label {
	position: absolute;
	left: 18px;
	bottom: 14px;
	z-index: 2;
	background: rgba(255, 255, 255, 0.95);
	color: #4a293a;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kb-trust-card {
	background: #fff;
	border: 1px solid var(--kb-border);
	padding: 26px;
	border-radius: 18px;
	box-shadow: var(--kb-shadow-sm);
}

.kb-trust-card h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 24px;
	font-family: "Garamond", "Times New Roman", serif;
}

.kb-trust-card p {
	margin: 0;
	color: var(--kb-muted);
}

.kb-cta-strip {
	background: linear-gradient(120deg, #4c1f33 0%, #6a2f49 55%, #5b2940 100%);
	padding: 42px 0;
	color: #fff;
}

.kb-cta-strip-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.kb-cta-strip h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.1;
	font-family: "Garamond", "Times New Roman", serif;
}

.kb-content-wrap {
	padding: 56px 0;
}

.kb-post-card {
	background: #fff;
	border: 1px solid var(--kb-border);
	border-radius: 16px;
	padding: 26px;
	margin-bottom: 24px;
	box-shadow: var(--kb-shadow-sm);
}

.kb-post-card h1,
.kb-post-card h2 {
	margin-top: 0;
}

.kb-archive-head {
	margin-bottom: 24px;
}

.kb-entry-meta {
	color: var(--kb-muted);
	font-size: 14px;
	margin-bottom: 12px;
}

.kb-footer {
	background: #271722;
	color: #f8edf3;
	padding-top: 56px;
}

.kb-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	padding-bottom: 28px;
}

.kb-footer h3 {
	margin-top: 0;
	font-size: 20px;
	font-family: "Garamond", "Times New Roman", serif;
}

.kb-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.kb-footer li {
	margin-bottom: 9px;
	color: #dec2d0;
}

.kb-footer a {
	text-decoration: none;
}

.kb-footer-bottom {
	padding: 16px 0 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: #cba8b9;
	font-size: 13px;
}

/* WooCommerce */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 22px;
}

.kb-woo-wrap {
	padding-top: 18px;
	padding-bottom: 50px;
}

.kb-woo-content {
	width: 100%;
}

.kb-shop-hero {
	background: linear-gradient(130deg, #4c1f33 0%, #6a2f49 40%, #5b2940 100%);
	color: #fff;
	padding: 48px 0;
}

.kb-shop-hero h1 {
	margin: 0;
	font-size: clamp(34px, 5vw, 62px);
	font-family: "Garamond", "Times New Roman", serif;
}

.kb-shop-section {
	padding-top: 38px;
}

.kb-shop-filters {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	padding: 16px;
	background: #fffdf9;
	border: 1px solid var(--kb-border);
	border-radius: 16px;
	margin-bottom: 24px;
	box-shadow: var(--kb-shadow-sm);
}

.kb-filter-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.kb-filter-field label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8f6f80;
}

.kb-filter-field input,
.kb-filter-field select {
	height: 42px;
	border: 1px solid var(--kb-border);
	border-radius: 10px;
	padding: 9px 12px;
	background: #fff;
	font-size: 14px;
}

.kb-filter-actions {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.kb-filter-actions .kb-btn {
	padding: 10px 18px;
}

.woocommerce span.onsale {
	background: var(--kb-pink);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	border: 1px solid var(--kb-border);
	border-radius: 16px;
	background: #fffdf9;
	padding: 12px 12px 16px;
	box-shadow: var(--kb-shadow-sm);
	transition: transform 0.16s ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	transform: translateY(-3px);
}

.woocommerce ul.products li.product .price {
	color: #4a2d3a;
	font-weight: 700;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 17px;
	font-weight: 600;
	color: #3a2330;
}

.woocommerce ul.products li.product img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 12px;
	background: #f5f2f6;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border-radius: 10px;
	background: #7a2f50;
	border: 1px solid #7a2f50;
	color: #fff;
	font-weight: 600;
	padding: 11px 16px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: #8c3a5e;
	border-color: #8c3a5e;
	color: #fff;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 12px;
	border-top-color: var(--kb-pink-strong);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--kb-pink-strong);
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form select,
.woocommerce-page form .form-row input.input-text {
	border-radius: 10px;
	border: 1px solid var(--kb-border);
	padding: 11px 12px;
	background: #fff;
}

.woocommerce form .form-row label {
	font-weight: 600;
	font-size: 14px;
}

.woocommerce-checkout #payment {
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--kb-border);
}

.woocommerce table.shop_table {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--kb-border);
}

.woocommerce div.product .product_title {
	font-size: clamp(30px, 4vw, 52px);
	font-family: "Garamond", "Times New Roman", serif;
	line-height: 1.08;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 28px;
	color: #5a3446;
}

.woocommerce-product-gallery {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--kb-border);
}

.woocommerce div.product form.cart .button {
	min-height: 48px;
	padding-inline: 24px;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.woocommerce-MyAccount-navigation ul li a {
	display: inline-flex;
	padding: 9px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--kb-border);
	text-decoration: none;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--kb-pink);
	border-color: var(--kb-pink);
	color: #fff;
}

@media (max-width: 1320px) {
	.kb-nav .menu {
		gap: 24px;
	}

	.kb-nav .menu > li > a {
		font-size: 14px;
	}

	.kb-header-search input[type="search"] {
		width: 310px;
	}
}

@media (max-width: 1080px) {
	.kb-topbar-inner {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 10px 0;
	}

	.kb-topbar-inner span {
		font-size: 12px;
	}

	.kb-header-main {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
		padding: 12px 0;
	}

	.custom-logo-link img,
	.custom-logo {
		max-height: 52px;
	}

	.kb-header-actions {
		gap: 12px;
	}

	.kb-header-actions a {
		font-size: 14px;
	}

	.kb-header-search {
		display: none;
	}

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

	.kb-header-nav-wrap {
		padding-bottom: 4px;
	}

	.kb-nav {
		display: none;
	}

	.kb-nav.is-open {
		display: block;
	}

	.kb-nav .menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 8px 0;
	}

	.kb-nav .menu > li {
		width: 100%;
	}

	.kb-nav .menu > li > a {
		display: inline-flex;
		padding: 8px 0;
		font-size: 14px;
	}

	.kb-nav .menu > .menu-item-has-children > a::after {
		display: none;
	}

	.kb-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		width: 100%;
		min-width: 0;
		max-width: none;
		margin: 4px 0 10px;
		padding: 8px 0;
		box-shadow: none;
		border: 1px solid #ecdbe6;
	}

	.kb-nav .sub-menu a {
		padding: 8px 16px;
		font-size: 14px;
	}

	.kb-nav .menu > li > .sub-menu > li > a {
		font-size: 14px;
		font-weight: 600;
	}

	.kb-nav .sub-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		border: 0;
		box-shadow: none;
		display: none;
		padding: 0 0 0 10px;
	}

	.kb-nav .menu > li > .sub-menu > li.menu-item-has-children > a::after {
		font-size: 14px;
		right: 16px;
	}

	.kb-nav .menu li.is-open > .sub-menu {
		display: block;
	}

	.kb-submenu-toggle {
		display: inline-flex;
		margin-left: 8px;
		border: 1px solid #e3cfdb;
		background: #fff;
		color: #4b2a3a;
		border-radius: 8px;
		padding: 4px 8px;
		font-size: 12px;
		line-height: 1;
	}

	.kb-hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.kb-hero-content {
		margin-inline: auto;
	}

	.kb-hero-actions {
		justify-content: center;
	}

	.kb-category-grid,
	.kb-trust-grid,
	.kb-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kb-shop-filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.kb-topbar {
		display: none;
	}

	.kb-header-actions a:not(.kb-cart-link) {
		display: none;
	}

	.kb-category-grid,
	.kb-trust-grid,
	.kb-footer-grid {
		grid-template-columns: 1fr;
	}

	.kb-hero-copy {
		font-size: 22px;
	}

	.kb-hero-arrow {
		display: none;
	}

	.kb-hero-dots {
		bottom: 14px;
	}

	.kb-shop-filters {
		grid-template-columns: 1fr;
	}

	.woocommerce ul.products.columns-4 li.product,
	.woocommerce-page ul.products.columns-4 li.product {
		width: 48%;
	}
}

@media (max-width: 520px) {
	.kb-btn {
		width: 100%;
	}

	.kb-cta-strip-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.woocommerce ul.products.columns-4 li.product,
	.woocommerce-page ul.products.columns-4 li.product {
		width: 100%;
	}
}

/* Luxury brand refinement */
body {
	background-image:
		radial-gradient(circle at 12% 2%, rgba(239, 149, 172, 0.12), transparent 38%),
		radial-gradient(circle at 86% 18%, rgba(147, 193, 178, 0.08), transparent 36%);
}

.kb-topbar {
	letter-spacing: 0.02em;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.24);
}

.kb-header {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 28px rgba(103, 54, 78, 0.06);
}

.kb-header-main {
	padding: 18px 0;
}

.custom-logo-link img,
.custom-logo {
	max-height: 80px;
}

.kb-header-actions {
	gap: 22px;
}

.kb-header-search input[type="search"] {
	height: 56px;
	background: #fffafc;
	border-color: #e9d7e2;
}

.kb-header-search input[type="search"]::placeholder {
	color: #b394a4;
}

.kb-header-nav-wrap {
	background: #fffafc;
}

.kb-nav .menu {
	gap: 30px;
	padding: 14px 0;
}

.kb-nav .menu > li > a {
	font-size: 14px;
	letter-spacing: 0.04em;
	position: relative;
	transition: color 0.18s ease;
}

.kb-nav .menu > li > a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -15px;
	height: 2px;
	background: linear-gradient(90deg, var(--kb-pink-strong) 0%, var(--kb-green-deep) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.kb-nav .menu > li:hover > a::before,
.kb-nav .menu > li:focus-within > a::before,
.kb-nav .menu > .current-menu-item > a::before,
.kb-nav .menu > .current-menu-parent > a::before,
.kb-nav .menu > .current-menu-ancestor > a::before {
	transform: scaleX(1);
}

.kb-nav .sub-menu {
	top: calc(100% + 7px);
	border-radius: 18px;
	padding: 14px 0;
}

.kb-nav .menu > li > .sub-menu {
	min-width: 340px;
	max-width: 360px;
}

.kb-nav .sub-menu .sub-menu {
	border-radius: 18px;
	min-width: 320px;
}

.kb-nav .sub-menu a {
	padding: 10px 24px;
}

.kb-hero {
	border-bottom: 1px solid #f2e2eb;
}

.kb-hero.banner-only .kb-hero-slider {
	height: clamp(360px, 52vw, 720px);
}

.kb-hero-arrow {
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(6px);
	color: #7f4f66;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.kb-hero-dot {
	width: 11px;
	height: 11px;
	background: rgba(233, 168, 191, 0.5);
}

.kb-hero-dot.is-active {
	background: var(--kb-pink-strong);
}

.kb-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	font-weight: 700;
	border-radius: 999px;
}

.kb-btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: linear-gradient(135deg, #e98fa9 0%, #d87497 100%);
	border-color: #dc7f9e;
	box-shadow: 0 10px 22px rgba(186, 96, 130, 0.26);
}

.kb-btn-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: linear-gradient(135deg, #dc7f9e 0%, #ca6488 100%);
	border-color: #d57294;
}

.kb-btn-secondary {
	background: rgba(255, 255, 255, 0.92);
}

.kb-section {
	padding: clamp(64px, 8vw, 120px) 0;
}

.kb-section-head h2 {
	font-size: clamp(34px, 4vw, 62px);
}

.kb-section-head p {
	font-size: 16px;
	color: #9a7788;
}

.kb-category-card {
	min-height: 236px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.kb-category-card::before {
	opacity: 0.5;
}

.kb-category-card::after {
	background: linear-gradient(180deg, rgba(40, 17, 31, 0.08) 6%, rgba(36, 18, 32, 0.88) 95%);
}

.kb-banner-card,
.kb-trust-card,
.kb-post-card,
.kb-shop-filters,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce-checkout #payment,
.woocommerce table.shop_table,
.woocommerce-product-gallery {
	border-radius: 20px;
}

.kb-trust-card {
	background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
	border-color: #f1dfea;
}

.kb-trust-card h3 {
	color: #4d2f3f;
}

.kb-cta-strip {
	background: linear-gradient(125deg, #4d2338 0%, #6f3550 46%, #93c1b2 140%);
}

.kb-footer {
	background: linear-gradient(145deg, #2e1a28 0%, #22131e 75%);
}

.kb-shop-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(130deg, #4d2238 0%, #753a57 44%, #93c1b2 145%);
}

.kb-shop-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.18), transparent 34%);
	pointer-events: none;
}

.kb-shop-hero .kb-container {
	position: relative;
	z-index: 2;
}

.kb-shop-filters {
	padding: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
	border-color: #f0dce7;
	box-shadow: 0 14px 34px rgba(125, 73, 99, 0.08);
}

.kb-filter-field input,
.kb-filter-field select {
	border-color: #e5d2dd;
	background: #fffdfd;
}

.kb-filter-field input:focus,
.kb-filter-field select:focus {
	border-color: #dd87a5;
	outline: none;
	box-shadow: 0 0 0 3px rgba(232, 144, 170, 0.18);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	border-color: #eedbe6;
	background: linear-gradient(180deg, #ffffff 0%, #fff9fc 100%);
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
	transition: transform 0.24s ease;
}

.woocommerce ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img {
	transform: scale(1.03);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: #4f2d3f;
}

.woocommerce ul.products li.product .price {
	color: #7a3f59;
}

.woocommerce span.onsale {
	padding: 8px 10px;
	min-width: auto;
	line-height: 1;
	font-size: 12px;
	font-weight: 700;
	border-radius: 999px;
	background: var(--kb-pink-strong);
}

@media (max-width: 1200px) {
	.kb-nav .menu {
		gap: 22px;
	}

	.kb-nav .menu > li > a {
		font-size: 13px;
	}
}

@media (max-width: 1080px) {
	.kb-header {
		backdrop-filter: none;
	}

	.kb-header-main {
		padding: 12px 0;
	}

	.custom-logo-link img,
	.custom-logo {
		max-height: 56px;
	}

	.kb-nav .menu > li > a::before {
		display: none;
	}

	.kb-nav .sub-menu,
	.kb-nav .sub-menu .sub-menu {
		border-radius: 14px;
		background: #fffafc;
	}
}

/* Template-aligned luxury redesign */
body {
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: #2f2230;
	background: #fdf9fc;
	line-height: 1.55;
}

h1,
h2,
h3,
h4,
.kb-brand-wordmark {
	font-family: "Playfair Display", Georgia, serif;
}

.kb-topbar {
	background: #f4e4ec;
	color: #70465a;
	font-size: 12px;
	font-weight: 700;
}

.kb-topbar-inner {
	padding: 9px 0;
}

.kb-header {
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid #f0e4eb;
	box-shadow: 0 8px 24px rgba(97, 52, 74, 0.07);
}

.kb-header-main {
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	padding: 16px 0;
}

.custom-logo-link img,
.custom-logo {
	max-height: 84px;
}

.kb-header-actions {
	gap: 16px;
}

.kb-header-actions a {
	font-size: 14px;
	font-weight: 700;
	color: #302430;
}

.kb-header-search input[type="search"] {
	width: clamp(260px, 34vw, 440px);
	height: 56px;
	border: 1px solid #e7d7e1;
	border-radius: 12px;
	background: #fff;
	padding-inline: 18px;
	font-size: 16px;
}

.kb-header-search input[type="search"]:focus {
	border-color: #df87a6;
	box-shadow: 0 0 0 4px rgba(223, 135, 166, 0.15);
}

.kb-header-nav-wrap {
	background: #fff;
	border-top: 1px solid #f3e7ee;
	border-bottom: 1px solid #f3e7ee;
}

.kb-nav .menu {
	gap: 28px;
	padding: 14px 0;
}

.kb-nav .menu > li > a {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: #2e2f34;
}

.kb-nav .menu > .current-menu-item > a,
.kb-nav .menu > .current-menu-parent > a,
.kb-nav .menu > .current-menu-ancestor > a {
	color: var(--kb-pink-strong);
}

.kb-nav .sub-menu {
	top: calc(100% + 8px);
	min-width: 340px;
	max-width: 360px;
	border-radius: 14px;
	padding: 10px 0;
	background: #fff;
	border: 1px solid #eedce7;
	box-shadow: 0 20px 46px rgba(83, 43, 62, 0.17);
}

.kb-nav .menu > li > .sub-menu {
	min-width: 340px;
	max-width: 360px;
}

.kb-nav .sub-menu .sub-menu {
	min-width: 300px;
	border-radius: 14px;
	background: #fff;
}

.kb-nav .sub-menu a {
	padding: 11px 20px;
	color: #5f4a56;
	font-size: 15px;
	white-space: normal;
}

.kb-nav .sub-menu a:hover {
	background: #fbf3f8;
	color: #d26f92;
}

.kb-cart-count {
	background: var(--kb-pink-strong);
}

.kb-hero {
	border-bottom: 1px solid #f1e3eb;
	background: #fbf2f7;
}

.kb-hero.has-image::after {
	background: linear-gradient(
		90deg,
		rgba(255, 248, 252, 0.94) 0%,
		rgba(255, 248, 252, 0.78) 32%,
		rgba(255, 248, 252, 0.34) 56%,
		rgba(255, 248, 252, 0.06) 76%,
		rgba(255, 248, 252, 0.01) 100%
	);
}

.kb-hero.has-image.tone-dark::after {
	background: linear-gradient(
		90deg,
		rgba(34, 20, 31, 0.78) 0%,
		rgba(34, 20, 31, 0.58) 38%,
		rgba(34, 20, 31, 0.26) 62%,
		rgba(34, 20, 31, 0.08) 100%
	);
}

.kb-hero-grid {
	min-height: clamp(540px, 68vh, 740px);
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 22px;
	padding: clamp(60px, 7vw, 96px) 0;
}

.kb-hero-content {
	max-width: 650px;
}

.kb-hero-kicker {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #9c6f84;
}

.kb-hero h1 {
	font-size: clamp(44px, 5.6vw, 78px);
	line-height: 1.03;
	color: #2f2330;
	margin-bottom: 8px;
}

.kb-hero-subtitle {
	font-size: clamp(26px, 2.8vw, 42px);
	margin-top: 6px;
	color: #533847;
	font-family: "Playfair Display", Georgia, serif;
}

.kb-hero-copy {
	margin-top: 14px;
	margin-bottom: 16px;
	font-size: clamp(18px, 1.7vw, 24px);
	font-weight: 500;
	color: #765968;
}

.kb-hero.has-image.tone-dark h1,
.kb-hero.has-image.tone-dark .kb-hero-subtitle,
.kb-hero.has-image.tone-dark .kb-hero-copy {
	color: #f8edf3;
}

.kb-hero-logo-wrap {
	display: block;
	width: min(440px, 92%);
	margin: 0 0 10px;
}

.kb-hero-logo-wrap.is-fallback {
	display: flex;
	align-items: center;
}

.kb-hero-logo {
	display: block;
	width: 100%;
	max-height: clamp(90px, 9vw, 124px);
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.kb-hero-logo-fallback {
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #e08ea8;
}

.kb-hero.kb-hero-clean {
	background: linear-gradient(130deg, #fff9fc 0%, #fdf2f8 45%, #f8e8f1 100%);
}

.kb-hero.kb-hero-clean::after {
	display: none;
}

.kb-hero.kb-hero-clean h1 {
	color: #9ec6b7;
}

.kb-hero.kb-hero-clean .kb-hero-subtitle {
	color: #808089;
	font-family: "Playfair Display", Georgia, serif;
}

.kb-hero.kb-hero-clean .kb-hero-copy {
	color: #9b99a0;
}

.kb-hero-showcase {
	position: relative;
	z-index: 4;
	border-radius: 32px;
	padding: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f8ecf2;
	border: 1px solid #f0dfe9;
	box-shadow: 0 22px 44px rgba(123, 73, 99, 0.16);
}

.kb-hero-product-stage {
	height: 100%;
	min-height: 0;
}

.kb-hero-product-stage-single {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	height: 100%;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.kb-hero-product-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 52% 50%;
	filter: none;
}

.kb-hero-actions {
	margin-top: 2px;
}

.kb-hero-actions .kb-btn {
	min-width: 200px;
	padding: 13px 22px;
	border-radius: 10px;
}

.kb-hero-meta {
	position: relative;
	z-index: 5;
	display: grid;
	gap: 12px;
	align-self: end;
	padding-bottom: 18px;
}

.kb-hero-meta-card {
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(236, 214, 226, 0.92);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 24px rgba(105, 56, 81, 0.12);
}

.kb-hero-meta-card strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #60384c;
}

.kb-hero-meta-card span {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #7a5d6b;
}

.kb-btn {
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.kb-btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: linear-gradient(135deg, #ef95ac 0%, #dc7798 100%);
	border: 1px solid #e283a2;
	box-shadow: 0 14px 26px rgba(178, 88, 124, 0.22);
}

.kb-btn-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: linear-gradient(135deg, #e987a4 0%, #cf698a 100%);
	border-color: #da7f9f;
}

.kb-btn-secondary {
	background: #fff;
	border: 1px solid #ead9e4;
	color: #5e3c4e;
}

.kb-brand-strip {
	background: #ffffff;
	border-top: 1px solid #f1e6ec;
	border-bottom: 1px solid #f1e6ec;
	padding: 10px 0;
}

.kb-brand-marquee {
	position: relative;
	display: flex;
	justify-content: center;
	overflow-x: auto;
	padding: 0;
	scrollbar-width: thin;
	scrollbar-color: #d5a8bb #f7eaf1;
}

.kb-brand-marquee::before,
.kb-brand-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 22px;
	z-index: 2;
	pointer-events: none;
}

.kb-brand-marquee::before {
	left: 0;
	background: linear-gradient(90deg, #ffffff 20%, rgba(255, 255, 255, 0));
}

.kb-brand-marquee::after {
	right: 0;
	background: linear-gradient(270deg, #ffffff 20%, rgba(255, 255, 255, 0));
}

.kb-brand-rail {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 34px;
	width: max-content;
	min-width: max-content;
	margin-inline: auto;
	padding: 4px 8px;
}

.kb-brand-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	padding: 2px 0;
	white-space: nowrap;
}

.kb-brand-pill-logo {
	position: relative;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	overflow: hidden;
}

.kb-brand-pill-logo::before {
	content: none;
}

.kb-brand-pill-logo.is-fallback::before {
	content: "•";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 18px;
	line-height: 1;
	color: #9e7184;
}

.kb-brand-pill-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.kb-brand-pill-name {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8f6578;
	transition: color 0.18s ease;
}

.kb-brand-pill:hover .kb-brand-pill-name {
	color: #d06f94;
}

.kb-product-strip {
	background: #fff;
	border-bottom: 1px solid #f1e6ec;
	padding: 16px 0 24px;
}

.kb-product-slider {
	overflow: hidden;
}

.kb-product-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-behavior: smooth;
	padding-bottom: 2px;
}

.kb-product-track::-webkit-scrollbar {
	display: none;
}

.kb-product-slide {
	flex: 0 0 clamp(170px, 18vw, 230px);
	min-width: 0;
	background: #fff;
	border: 1px solid #efdeea;
	border-radius: 14px;
	padding: 10px;
	box-shadow: 0 7px 16px rgba(96, 55, 74, 0.08);
}

.kb-product-slide-image {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	background: #f8eff4;
}

.kb-product-slide-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
}

.kb-product-slide-title {
	display: block;
	margin-top: 9px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	color: #44303b;
	text-decoration: none;
}

.kb-product-slide-price {
	margin-top: 3px;
	font-size: 13px;
	font-weight: 700;
	color: #a14d71;
}

.kb-section {
	padding: clamp(70px, 8vw, 122px) 0;
}

.kb-section-head {
	margin-bottom: 34px;
}

.kb-section-head-left {
	text-align: left;
	margin-inline: 0;
	max-width: 720px;
}

.kb-section-head h2 {
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.06;
	margin-bottom: 10px;
	color: #2e2130;
}

.kb-section-head p {
	font-size: 17px;
	color: #866a79;
}

.kb-category-grid {
	gap: 22px;
}

.kb-category-card {
	min-height: 260px;
	border-radius: 18px;
}

.kb-category-card::before {
	opacity: 0.58;
}

.kb-category-card::after {
	background: linear-gradient(180deg, rgba(38, 19, 31, 0.12) 12%, rgba(31, 15, 25, 0.83) 95%);
}

.kb-category-card-title {
	font-size: 27px;
}

.kb-category-card-link {
	font-size: 12px;
	font-weight: 700;
}

.kb-banner-split {
	grid-template-columns: 1.7fr 1fr;
	gap: 24px;
}

.kb-banner-split.is-single {
	grid-template-columns: 1fr;
}

.kb-banner-card {
	min-height: 380px;
	border-radius: 22px;
}

.kb-products-grid ul.products {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: 100%;
	margin: 0;
	padding: 14px 14px 20px;
	border-radius: 16px;
	border: 1px solid #eedee8;
	background: #fff;
	box-shadow: 0 10px 24px rgba(98, 54, 74, 0.08);
}

.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-4 li.product,
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product,
.woocommerce ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-2 li.product {
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(98, 54, 74, 0.16);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 17px;
	font-weight: 700;
	margin-top: 8px;
	color: #3a2732;
}

.woocommerce ul.products li.product .price {
	font-size: 16px;
	color: #a04f70;
}

.kb-trust-grid {
	gap: 22px;
}

.kb-trust-card {
	padding: 30px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #f0dfe9;
}

.kb-trust-card h3 {
	font-size: 27px;
	margin-bottom: 8px;
}

.kb-cta-strip {
	background: linear-gradient(128deg, #432130 0%, #694058 62%, #a7cdbf 160%);
	padding: 56px 0;
}

.kb-footer {
	padding-top: 64px;
}

.kb-shop-hero {
	background: #f8edf3;
	border-bottom: 1px solid #eedde7;
	color: #2d1f2e;
	padding: 58px 0;
}

.kb-shop-hero::after {
	display: none;
}

.kb-shop-hero h1 {
	font-size: clamp(40px, 6vw, 66px);
	line-height: 1.02;
}

.kb-shop-filters {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	background: #fff;
	border: 1px solid #eedce7;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(95, 52, 74, 0.06);
}

.kb-filter-field label {
	font-size: 11px;
	font-weight: 800;
	color: #876676;
}

.kb-filter-field input,
.kb-filter-field select {
	height: 44px;
	border: 1px solid #e8d7e1;
	border-radius: 10px;
}

@media (max-width: 1180px) {
	.kb-nav .menu {
		gap: 20px;
	}

	.kb-nav .menu > li > a {
		font-size: 13px;
	}

	.kb-products-grid ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.kb-brand-pill {
		min-width: 150px;
	}
}

@media (max-width: 1080px) {
	.kb-header-main {
		grid-template-columns: auto 1fr auto;
	}

	.kb-header-search {
		display: none;
	}

	.kb-hero-grid {
		grid-template-columns: 1fr;
		min-height: 480px;
		padding: 60px 0 54px;
	}

	.kb-hero-showcase {
		max-width: 640px;
		width: 100%;
		margin: 0 auto;
	}

	.kb-section-head-left {
		text-align: center;
		max-width: 100%;
	}

	.kb-products-grid ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kb-banner-split {
		grid-template-columns: 1fr;
	}

	.kb-brand-rail {
		gap: 24px;
	}

	.kb-brand-pill-name {
		font-size: 11px;
	}

	.kb-product-slide {
		flex-basis: clamp(160px, 26vw, 210px);
	}
}

@media (max-width: 760px) {
	.kb-topbar {
		display: none;
	}

	.kb-header-actions a:not(.kb-cart-link) {
		display: none;
	}

	.kb-brand-rail {
		gap: 18px;
	}

	.kb-brand-pill-name {
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.kb-product-slide {
		flex-basis: 158px;
	}

	.kb-hero-showcase {
		aspect-ratio: auto;
		min-height: 350px;
		padding: 0;
	}

	.kb-hero-logo-wrap {
		width: min(330px, 96%);
		margin-inline: auto;
	}

	.kb-hero-logo {
		max-height: 92px;
		object-position: center;
	}

	.kb-hero-product-stage {
		height: 292px;
		min-height: 292px;
	}

	.kb-hero-product-photo {
		height: 100%;
		object-position: center center;
	}

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

	.kb-hero h1 {
		font-size: clamp(36px, 11vw, 52px);
	}

	.kb-hero-subtitle {
		font-size: clamp(22px, 7vw, 34px);
	}

	.kb-hero-copy {
		font-size: 18px;
	}
}

/* Final WooCommerce layout fixes */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products.columns-1 li.product,
.woocommerce-page ul.products.columns-1 li.product,
.woocommerce ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-2 li.product,
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product,
.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-4 li.product {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	width: 100% !important;
	height: auto !important;
	max-height: none;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
	padding: 0;
	background: #f8f2f6;
	border-radius: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-size: 18px;
	line-height: 1.3;
	min-height: 2.6em;
	margin: 6px 0 0;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
	font-size: 17px;
	margin: 4px 0 0;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
	margin-top: auto;
	width: 100%;
	text-align: center;
}

.woocommerce .woocommerce-result-count {
	font-size: 17px;
	font-weight: 600;
	color: #6f5966;
	margin-bottom: 18px;
}

.woocommerce .woocommerce-ordering {
	margin-bottom: 18px;
}

.woocommerce .woocommerce-ordering select {
	height: 44px;
	padding: 0 14px;
	border: 1px solid #e7d6e1;
	border-radius: 10px;
	background: #fff;
	font-weight: 600;
	color: #503744;
}

.woocommerce span.onsale {
	top: 12px;
	left: 12px;
	line-height: 1;
	padding: 8px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	background: #fff;
	color: #5d404e;
	box-shadow: 0 8px 14px rgba(76, 41, 59, 0.18);
}

.single-product .kb-woo-wrap {
	max-width: 1280px;
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.single-product div.product div.images,
.single-product div.product div.summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.single-product div.product div.images {
	position: sticky;
	top: 118px;
}

.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	background: #ffffff;
	border: 1px solid #efdeea;
	border-radius: 16px;
	padding: 14px;
}

.single-product div.product div.images .woocommerce-product-gallery__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	background: #f8f2f6;
	border-radius: 12px;
	padding: 16px;
}

.single-product div.product div.summary {
	background: #fff;
	border: 1px solid #efdeea;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 10px 24px rgba(103, 54, 78, 0.08);
}

.single-product div.product .product_title {
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
	margin-bottom: 12px;
}

.single-product div.product p.price,
.single-product div.product span.price {
	font-size: 30px;
	color: #a74d72;
}

.single-product div.product .woocommerce-product-details__short-description {
	color: #6e5a66;
}

.single-product div.product .product_meta {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #f0e3eb;
}

.single-product .woocommerce-tabs {
	margin-top: 28px;
}

.single-product .woocommerce-tabs ul.tabs {
	margin-bottom: 16px !important;
}

.single-product .woocommerce-tabs .panel {
	background: #fff;
	border: 1px solid #efdeea;
	border-radius: 14px;
	padding: 22px;
}

.kb-page-card,
.kb-single-card {
	background: #fff;
	border: 1px solid #efdeea;
	border-radius: 18px;
	box-shadow: 0 10px 22px rgba(97, 52, 74, 0.08);
}

.kb-page-card .kb-entry-content img,
.kb-single-card .kb-entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

@media (max-width: 1220px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.single-product div.product div.images {
		position: static;
	}
}

@media (max-width: 620px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce ul.products li.product a img,
	.woocommerce-page ul.products li.product a img {
		max-height: 240px;
	}
}

/* Hero final reference style (soft pink) */
.kb-hero.kb-hero-clean {
	position: relative;
	background: #f8eff4;
	border-bottom: 1px solid #f0e0e9;
}

.kb-hero.kb-hero-clean .kb-hero-grid {
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: clamp(470px, 44vw, 660px);
	padding: clamp(28px, 3.4vw, 46px) 0;
	position: relative;
	z-index: 4;
}

.kb-hero.kb-hero-clean .kb-hero-content {
	max-width: min(760px, 96%);
	position: relative;
	z-index: 5;
}

.kb-hero.kb-hero-clean .kb-hero-kicker {
	display: none;
}

.kb-hero.kb-hero-clean .kb-hero-logo-wrap {
	width: min(330px, 70%);
	margin: 0 0 clamp(18px, 2.2vw, 30px);
}

.kb-hero.kb-hero-clean .kb-hero-logo {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	object-position: left center;
}

.kb-hero.kb-hero-clean h1 {
	margin: 0 0 clamp(6px, 1vw, 14px);
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(34px, 4.2vw, 58px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.004em;
	color: #75aa9e;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
	transition: color 0.35s ease, text-shadow 0.35s ease;
}

.kb-hero.kb-hero-clean .kb-hero-subtitle {
	margin: 0 0 clamp(10px, 1.2vw, 18px);
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: clamp(24px, 2.9vw, 44px);
	font-weight: 500;
	line-height: 1.18;
	color: #6d6b76;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
	transition: color 0.35s ease, text-shadow 0.35s ease;
}

.kb-hero.kb-hero-clean .kb-hero-copy {
	margin: 0 0 clamp(20px, 2vw, 30px);
	font-size: clamp(16px, 1.8vw, 32px);
	line-height: 1.35;
	font-weight: 400;
	color: #7c7681;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
	transition: color 0.35s ease, text-shadow 0.35s ease;
}

.kb-hero.kb-hero-clean .kb-hero-actions {
	margin-top: 0;
}

.kb-hero.kb-hero-clean .kb-hero-actions .kb-btn {
	min-width: 212px;
	padding: 15px 28px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: linear-gradient(180deg, #efb3c4 0%, #e89db3 100%);
	border: 1px solid #e89eb4;
	box-shadow: 0 10px 22px rgba(191, 114, 143, 0.24);
	color: #ffffff;
}

.kb-hero.kb-hero-clean .kb-hero-actions .kb-btn:hover {
	transform: translateY(-1px);
	background: linear-gradient(180deg, #e8a3b8 0%, #df8ea8 100%);
}

.kb-hero.kb-hero-clean .kb-hero-showcase {
	display: none !important;
}

.kb-hero.kb-hero-clean.has-image {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.kb-hero.kb-hero-clean.has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(250, 241, 246, 0.95) 0%,
		rgba(250, 241, 246, 0.84) 32%,
		rgba(250, 241, 246, 0.58) 56%,
		rgba(250, 241, 246, 0.28) 74%,
		rgba(250, 241, 246, 0.11) 90%,
		rgba(250, 241, 246, 0.03) 100%
	);
	transition: background 0.4s ease;
}

.kb-hero.kb-hero-clean.has-image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: radial-gradient(circle at 82% 56%, rgba(255, 228, 240, 0.12) 0%, rgba(255, 228, 240, 0) 44%);
	transition: background 0.4s ease;
}

.kb-hero.kb-hero-clean.has-image .kb-hero-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.kb-hero.kb-hero-clean.has-image .kb-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.55s ease-in-out;
}

.kb-hero.kb-hero-clean.has-image .kb-hero-slide.is-active {
	opacity: 1;
}

.kb-hero.kb-hero-clean.has-image .kb-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: saturate(0.94);
}

.kb-hero.kb-hero-clean.kb-hero-tone-light h1 {
	color: #6e9f94;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.74);
}

.kb-hero.kb-hero-clean.kb-hero-tone-light .kb-hero-subtitle {
	color: #5f5d68;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.kb-hero.kb-hero-clean.kb-hero-tone-light .kb-hero-copy {
	color: #716b77;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.kb-hero.kb-hero-clean.kb-hero-tone-dark::before {
	background: linear-gradient(
		90deg,
		rgba(23, 15, 31, 0.72) 0%,
		rgba(23, 15, 31, 0.64) 32%,
		rgba(31, 21, 40, 0.44) 56%,
		rgba(31, 21, 40, 0.2) 76%,
		rgba(31, 21, 40, 0.08) 90%,
		rgba(31, 21, 40, 0.02) 100%
	);
}

.kb-hero.kb-hero-clean.kb-hero-tone-dark::after {
	background: radial-gradient(circle at 78% 52%, rgba(255, 183, 210, 0.14) 0%, rgba(255, 183, 210, 0) 46%);
}

.kb-hero.kb-hero-clean.kb-hero-tone-dark h1 {
	color: #c7e0d5;
	text-shadow: 0 2px 10px rgba(16, 10, 20, 0.42);
}

.kb-hero.kb-hero-clean.kb-hero-tone-dark .kb-hero-subtitle {
	color: #f2edf3;
	text-shadow: 0 2px 10px rgba(16, 10, 20, 0.42);
}

.kb-hero.kb-hero-clean.kb-hero-tone-dark .kb-hero-copy {
	color: #d8cfda;
	text-shadow: 0 2px 10px rgba(16, 10, 20, 0.42);
}

.kb-hero.kb-hero-clean.has-image .kb-hero-dots {
	display: none;
}

@media (max-width: 1100px) {
	.kb-hero.kb-hero-clean .kb-hero-grid {
		min-height: clamp(430px, 62vw, 560px);
	}

	.kb-hero.kb-hero-clean .kb-hero-content {
		max-width: min(620px, 96%);
	}

	.kb-hero.kb-hero-clean h1 {
		font-size: clamp(30px, 4.5vw, 48px);
	}

	.kb-hero.kb-hero-clean .kb-hero-subtitle {
		font-size: clamp(22px, 3.6vw, 34px);
	}

	.kb-hero.kb-hero-clean .kb-hero-copy {
		font-size: clamp(15px, 2.2vw, 22px);
	}
}

@media (max-width: 780px) {
	.kb-hero.kb-hero-clean .kb-hero-grid {
		min-height: clamp(390px, 96vw, 500px);
		padding: 26px 0;
	}

	.kb-hero.kb-hero-clean .kb-hero-content {
		max-width: 100%;
	}

	.kb-hero.kb-hero-clean .kb-hero-logo-wrap {
		width: min(260px, 74%);
	}

	.kb-hero.kb-hero-clean h1 {
		font-size: clamp(28px, 7vw, 38px);
	}

	.kb-hero.kb-hero-clean .kb-hero-subtitle {
		font-size: clamp(22px, 5.8vw, 30px);
	}

	.kb-hero.kb-hero-clean .kb-hero-copy {
		font-size: clamp(15px, 4vw, 18px);
	}

	.kb-hero.kb-hero-clean .kb-hero-actions .kb-btn {
		min-width: 190px;
		padding: 14px 22px;
		font-size: 14px;
	}

	.kb-hero.kb-hero-clean.has-image .kb-hero-slide img {
		object-position: 64% center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kb-hero.kb-hero-clean.has-image .kb-hero-slide {
		transition: none;
	}
}

/* Luxury storefront polish */
.kb-section {
	padding: clamp(56px, 6.5vw, 96px) 0;
}

.kb-section-soft {
	background: linear-gradient(180deg, #fffafc 0%, #fdf4f8 100%);
}

.kb-section-head h2 {
	letter-spacing: -0.01em;
}

.kb-section-head p {
	color: #7d6573;
	max-width: 66ch;
}

.kb-brand-strip {
	background: #fff;
	border-top: 1px solid #f2e5ec;
	border-bottom: 1px solid #f2e5ec;
}

.kb-brand-rail {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(12px, 2vw, 22px);
	padding: 12px 0;
}

.kb-brand-pill {
	min-width: clamp(156px, 14vw, 220px);
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid #efdfE9;
	background: #ffffff;
	box-shadow: 0 8px 18px rgba(105, 58, 82, 0.06);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.kb-brand-pill:hover {
	transform: translateY(-2px);
	border-color: #e7c6d7;
	box-shadow: 0 12px 22px rgba(105, 58, 82, 0.12);
}

.kb-product-strip {
	padding: clamp(26px, 3.3vw, 42px) 0 10px;
	background: linear-gradient(180deg, #fff8fb 0%, #fffefe 100%);
	border-bottom: 1px solid #f4e8ef;
}

.kb-product-slider {
	overflow: hidden;
}

.kb-product-slide {
	flex: 0 0 clamp(182px, 16vw, 240px);
	background: #ffffff;
	border: 1px solid #efdeE8;
	border-radius: 18px;
	padding: 12px;
	box-shadow: 0 12px 24px rgba(99, 56, 79, 0.08);
	transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.kb-product-slide:hover {
	transform: translateY(-4px);
	border-color: #e9cddd;
	box-shadow: 0 18px 28px rgba(99, 56, 79, 0.14);
}

.kb-product-slide-image {
	border-radius: 14px;
	background: linear-gradient(180deg, #fff7fa 0%, #f9eef4 100%);
}

.kb-product-slide-image img {
	aspect-ratio: 4 / 5;
	object-fit: contain;
	padding: 14px;
}

.kb-product-slide-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.kb-product-slide-price {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #8a3c5e;
}

.kb-products-grid ul.products {
	gap: clamp(16px, 2.2vw, 26px);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products.columns-1 li.product,
.woocommerce-page ul.products.columns-1 li.product,
.woocommerce ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-2 li.product,
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product,
.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-4 li.product {
	background: #fff;
	border: 1px solid #efdeE8 !important;
	border-radius: 18px;
	padding: 12px 12px 16px;
	box-shadow: 0 10px 24px rgba(98, 54, 74, 0.08);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: #e7c9da !important;
	box-shadow: 0 18px 30px rgba(98, 54, 74, 0.14);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	aspect-ratio: 4 / 5;
	object-fit: contain;
	object-position: center;
	background: linear-gradient(180deg, #fff8fb 0%, #f9edf4 100%);
	border-radius: 14px;
	padding: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-size: 16px;
	line-height: 1.4;
	min-height: 2.8em;
	margin-top: 10px;
	color: #2f212c;
	letter-spacing: 0;
}

.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating {
	margin-top: 2px;
	color: #c78a42;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
	margin-top: 6px;
	font-size: 17px;
	font-weight: 700;
	color: #853759;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
	opacity: 0.48;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
	margin-top: 12px;
	width: 100%;
	min-height: 42px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: #fff;
	color: #6c304c;
	border: 1px solid #e7c8d8;
	box-shadow: none;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
	background: linear-gradient(180deg, #efb2c4 0%, #e79ab1 100%);
	color: #fff;
	border-color: #e69ab2;
}

.woocommerce span.onsale {
	top: 12px;
	left: 12px;
	min-height: 30px;
	line-height: 30px;
	padding: 0 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	background: #fff;
	color: #7f3858;
	border: 1px solid #ead1dd;
	box-shadow: 0 8px 16px rgba(96, 52, 74, 0.16);
}

.kb-shop-hero {
	background: linear-gradient(132deg, #fff9fc 0%, #f9edf4 100%);
	padding: clamp(36px, 4.4vw, 56px) 0;
}

.kb-shop-hero h1 {
	font-size: clamp(34px, 4.6vw, 56px);
	letter-spacing: -0.01em;
}

.kb-shop-filters {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	padding: 14px;
	border-radius: 18px;
	border: 1px solid #ecdbe6;
	box-shadow: 0 14px 28px rgba(97, 52, 74, 0.09);
}

.kb-filter-field label {
	margin-bottom: 4px;
}

.kb-filter-field input,
.kb-filter-field select {
	height: 46px;
	border-radius: 12px;
	background: #fff;
}

.kb-filter-actions {
	display: flex;
	align-items: end;
	gap: 10px;
}

.kb-filter-actions .kb-btn {
	height: 46px;
	padding-inline: 16px;
}

.single-product .kb-main {
	background: linear-gradient(180deg, #fffbfd 0%, #fff7fb 100%);
}

.single-product .kb-section {
	padding: clamp(28px, 3.8vw, 52px) 0 clamp(56px, 7vw, 92px);
}

.single-product .kb-woo-wrap {
	max-width: min(1320px, 94vw);
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	gap: clamp(24px, 3vw, 44px);
	align-items: start;
}

.single-product div.product div.images,
.single-product div.product div.summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.single-product div.product div.images {
	position: sticky;
	top: 108px;
}

.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	background: #fff;
	border: 1px solid #efdeE8;
	border-radius: 24px;
	padding: clamp(14px, 2vw, 18px);
	box-shadow: 0 12px 28px rgba(101, 56, 79, 0.1);
}

.single-product div.product div.images .woocommerce-product-gallery__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	border-radius: 16px;
	background: linear-gradient(180deg, #fff9fc 0%, #f7edf3 100%);
	padding: 16px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px !important;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	margin: 0 !important;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #fff7fb;
	border: 1px solid #ecdbe6;
	border-radius: 10px;
	padding: 4px;
	opacity: 1;
}

.single-product div.product div.summary {
	background: #fff;
	border: 1px solid #efdeE8;
	border-radius: 24px;
	padding: clamp(20px, 2.5vw, 34px);
	box-shadow: 0 14px 30px rgba(100, 56, 79, 0.1);
}

.kb-product-context {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.kb-product-context-chip {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 12px;
	border-radius: 999px;
	background: #fff5fa;
	border: 1px solid #ebd0de;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7b4560;
}

.single-product div.product .product_title {
	font-size: clamp(30px, 3.4vw, 44px);
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin-bottom: 10px;
}

.single-product div.product p.price,
.single-product div.product span.price {
	font-size: clamp(26px, 2.8vw, 36px);
	line-height: 1.1;
	color: #8a3b5d;
	margin-bottom: 12px;
}

.single-product div.product .woocommerce-product-details__short-description {
	color: #61515c;
	font-size: 16px;
	line-height: 1.72;
}

.kb-product-usps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 16px 0 18px;
}

.kb-product-usp {
	display: block;
	padding: 12px 12px;
	border-radius: 12px;
	background: #fff7fb;
	border: 1px solid #ecdbe6;
}

.kb-product-usp strong {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6f3f56;
}

.kb-product-usp span {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.45;
	color: #7f6774;
}

.single-product div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 16px 0 6px;
}

.single-product div.product form.cart .quantity {
	margin: 0;
}

.single-product div.product form.cart .qty {
	height: 48px;
	min-width: 92px;
	border-radius: 999px;
	border: 1px solid #e5cfdb;
	background: #fff;
	text-align: center;
	font-weight: 700;
	color: #5a3e4d;
}

.single-product div.product form.cart .single_add_to_cart_button {
	min-height: 48px;
	padding: 0 26px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: linear-gradient(180deg, #efb3c5 0%, #e89cb3 100%);
	border: 1px solid #e89cb3;
	color: #fff;
	box-shadow: 0 12px 20px rgba(188, 107, 139, 0.24);
}

.single-product div.product form.cart .single_add_to_cart_button:hover {
	transform: translateY(-1px);
	background: linear-gradient(180deg, #e8a4ba 0%, #df8ea8 100%);
}

.single-product div.product .product_meta {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #efdeE8;
	color: #7a6672;
	font-size: 14px;
}

.single-product div.product .product_meta > span {
	display: block;
	margin-bottom: 5px;
}

.single-product .woocommerce-tabs {
	margin-top: 34px;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 !important;
	margin: 0 0 14px !important;
	border: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

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

.single-product .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #f9edf4;
	border: 1px solid #ead6e1;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #6d4d5d;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	background: #fff;
	border-color: #debfce;
	color: #4f3342;
	box-shadow: 0 8px 16px rgba(102, 58, 81, 0.1);
}

.single-product .woocommerce-tabs .panel {
	background: #fff;
	border: 1px solid #efdeE8;
	border-radius: 18px;
	padding: clamp(16px, 2vw, 24px);
	color: #5f4f5a;
	box-shadow: 0 10px 20px rgba(99, 55, 79, 0.08);
}

.single-product .related.products,
.single-product .up-sells.upsells.products {
	margin-top: 40px;
}

.single-product .related.products > h2,
.single-product .up-sells.upsells.products > h2 {
	font-size: clamp(32px, 3.5vw, 44px);
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin-bottom: 18px;
	color: #2f212c;
}

.kb-trust-card,
.kb-category-card,
.kb-banner-card,
.kb-btn {
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

@media (max-width: 1280px) {
	.kb-shop-filters {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.kb-filter-actions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 1020px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.single-product div.product {
		grid-template-columns: 1fr;
	}

	.single-product div.product div.images {
		position: static;
	}

	.single-product div.product div.summary {
		padding: 20px;
	}

	.kb-product-usps {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.kb-shop-filters {
		grid-template-columns: 1fr;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr !important;
	}

	.single-product .woocommerce-product-gallery .flex-control-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.single-product div.product .product_title {
		font-size: clamp(26px, 8vw, 34px);
	}

	.single-product div.product p.price,
	.single-product div.product span.price {
		font-size: clamp(24px, 7vw, 30px);
	}

	.single-product .woocommerce-tabs ul.tabs li a {
		font-size: 11px;
		padding: 7px 11px;
	}
}

/* Cult + BeBold product presentation override */
body.kb-woo-enabled .kb-shop-filters {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 0 14px !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product,
body.kb-woo-enabled .woocommerce-page ul.products li.product,
body.kb-woo-enabled .woocommerce ul.products.columns-1 li.product,
body.kb-woo-enabled .woocommerce-page ul.products.columns-1 li.product,
body.kb-woo-enabled .woocommerce ul.products.columns-2 li.product,
body.kb-woo-enabled .woocommerce-page ul.products.columns-2 li.product,
body.kb-woo-enabled .woocommerce ul.products.columns-3 li.product,
body.kb-woo-enabled .woocommerce-page ul.products.columns-3 li.product,
body.kb-woo-enabled .woocommerce ul.products.columns-4 li.product,
body.kb-woo-enabled .woocommerce-page ul.products.columns-4 li.product {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:hover,
body.kb-woo-enabled .woocommerce-page ul.products li.product:hover {
	transform: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	gap: 0;
}

body.kb-woo-enabled .woocommerce ul.products li.product a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product a img {
	aspect-ratio: 4 / 5 !important;
	object-fit: contain !important;
	object-position: center !important;
	border-radius: 14px !important;
	border: 1px solid #f0e3eb;
	background: linear-gradient(180deg, #fff9fc 0%, #f7edf3 100%) !important;
	padding: 18px !important;
	box-shadow: none !important;
	transition: transform 0.24s ease, border-color 0.24s ease;
}

body.kb-woo-enabled .woocommerce ul.products li.product:hover a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:hover a img {
	transform: translateY(-2px);
	border-color: #e8cedc;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	margin: 13px 0 0 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	letter-spacing: 0 !important;
	color: #2d212a !important;
	min-height: 2.8em;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price {
	margin-top: 6px !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #7c3353 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price del,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price del {
	opacity: 0.45;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
	margin-top: 10px !important;
	width: auto !important;
	min-height: 38px !important;
	padding: 8px 14px !important;
	border-radius: 999px !important;
	border: 1px solid #ddc0d1 !important;
	background: #fff !important;
	color: #612b45 !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button:hover,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button:hover {
	background: #1f1a20 !important;
	border-color: #1f1a20 !important;
	color: #fff !important;
}

body.kb-woo-enabled .woocommerce span.onsale {
	top: 12px !important;
	left: 12px !important;
	min-height: auto !important;
	line-height: 1.1 !important;
	padding: 6px 10px !important;
	border-radius: 999px !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	background: #1f1a20 !important;
	color: #fff !important;
	border: 0 !important;
	box-shadow: 0 8px 14px rgba(30, 22, 28, 0.22) !important;
}

body.kb-woo-enabled .kb-product-slide {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.kb-woo-enabled .kb-product-slide:hover {
	transform: none !important;
}

body.kb-woo-enabled .kb-product-slide-image {
	border-radius: 14px;
	border: 1px solid #f0e3eb;
	background: linear-gradient(180deg, #fff9fc 0%, #f7edf3 100%);
}

body.kb-woo-enabled .kb-product-slide-image img {
	padding: 14px !important;
}

body.kb-woo-enabled .single-product div.product div.summary {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.kb-woo-enabled .single-product div.product .product_title {
	font-size: clamp(28px, 3.2vw, 40px) !important;
}

body.kb-woo-enabled .single-product div.product p.price,
body.kb-woo-enabled .single-product div.product span.price {
	font-size: clamp(24px, 2.4vw, 32px) !important;
	color: #7d3555 !important;
}

body.kb-woo-enabled .kb-product-usps {
	grid-template-columns: 1fr !important;
	gap: 0 !important;
}

body.kb-woo-enabled .kb-product-usp {
	background: transparent !important;
	border: 0 !important;
	border-top: 1px solid #ecdce6 !important;
	border-radius: 0 !important;
	padding: 10px 0 !important;
}

body.kb-woo-enabled .kb-product-usp:first-child {
	border-top: 1px solid #ecdce6 !important;
}

@media (max-width: 900px) {
	body.kb-woo-enabled .woocommerce ul.products li.product .button,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
		width: 100% !important;
	}
}

/* Be Bold product-card extraction */
body.kb-woo-enabled .woocommerce ul.products,
body.kb-woo-enabled .woocommerce-page ul.products {
	gap: clamp(18px, 2vw, 30px) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product,
body.kb-woo-enabled .woocommerce-page ul.products li.product {
	position: relative;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
	display: block;
	position: relative;
}

body.kb-woo-enabled .woocommerce ul.products li.product a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product a img {
	aspect-ratio: 1 / 1 !important;
	padding: 22px !important;
	border-radius: 0 !important;
	border: 0 !important;
	background: #f5edf2 !important;
	transition: transform 0.28s ease !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:nth-child(4n + 2) a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:nth-child(4n + 2) a img {
	background: #f4efe4 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:nth-child(4n + 3) a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:nth-child(4n + 3) a img {
	background: #eef3ef !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:nth-child(4n + 4) a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:nth-child(4n + 4) a img {
	background: #f2eef5 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:hover a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:hover a img {
	transform: translateY(-4px) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	z-index: 12;
	width: 44px !important;
	min-width: 44px !important;
	height: 44px !important;
	min-height: 44px !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 50% !important;
	border: 1px solid #ddd1d9 !important;
	background: #ffffff !important;
	color: #2f262d !important;
	box-shadow: 0 6px 12px rgba(56, 39, 50, 0.14) !important;
	overflow: hidden;
	font-size: 0 !important;
	line-height: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button::before,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button::before {
	content: "";
	width: 16px;
	height: 16px;
	position: static;
	left: auto;
	top: auto;
	transform: none;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Cpath d='M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E")
		no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Cpath d='M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E")
		no-repeat center / contain;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button::after,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button::after {
	display: none;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button:hover,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button:hover {
	background: #ffffff !important;
	border-color: #c7b4c0 !important;
	color: #1f1a20 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .added_to_cart,
body.kb-woo-enabled .woocommerce-page ul.products li.product .added_to_cart {
	display: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: "Playfair Display", Georgia, serif !important;
	font-size: clamp(28px, 2.4vw, 40px) !important;
	line-height: 1.08 !important;
	font-weight: 600 !important;
	letter-spacing: -0.01em !important;
	margin: 14px 0 0 !important;
	color: #231a22 !important;
	min-height: auto !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .star-rating,
body.kb-woo-enabled .woocommerce-page ul.products li.product .star-rating {
	display: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 8px !important;
	font-size: 19px !important;
	font-weight: 700 !important;
	color: #3a2c36 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price del,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price del {
	font-size: 17px !important;
	color: #9e98a0 !important;
	opacity: 1 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price ins,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price ins {
	text-decoration: none !important;
}

body.kb-woo-enabled .woocommerce span.onsale {
	top: 12px !important;
	left: 12px !important;
	z-index: 11 !important;
	padding: 8px 13px !important;
	min-height: 34px !important;
	display: inline-flex !important;
	align-items: center !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	border: 1px solid #ddd1d9 !important;
	color: #5b555e !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	box-shadow: 0 6px 12px rgba(56, 39, 50, 0.12) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .kb-trending-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-trending-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 6;
	padding: 8px 11px;
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: #f6f1f4;
	border: 1px solid #ddd1d9;
	color: #5d4b56;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(56, 39, 50, 0.1);
}

body.kb-woo-enabled .woocommerce ul.products li.product .onsale + .kb-trending-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product .onsale + .kb-trending-badge {
	top: 52px;
}

/* Brand rail inspired by BeBold + Cult Beauty */
body.kb-woo-enabled .kb-brand-strip {
	background: #fff;
	border-top: 1px solid #f1e5ec;
	border-bottom: 1px solid #f1e5ec;
}

body.kb-woo-enabled .kb-brand-marquee {
	overflow-x: auto;
	scrollbar-width: none;
}

body.kb-woo-enabled .kb-brand-marquee::-webkit-scrollbar {
	display: none;
}

body.kb-woo-enabled .kb-brand-rail {
	flex-wrap: nowrap;
	justify-content: center;
	gap: clamp(20px, 3vw, 44px);
	padding: 14px 0;
	min-width: max-content;
}

body.kb-woo-enabled .kb-brand-pill {
	min-width: auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #7a6672;
	text-decoration: none;
}

body.kb-woo-enabled .kb-brand-pill:hover {
	transform: none !important;
}

body.kb-woo-enabled .kb-brand-pill-logo {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #e8d9e3;
	background: #fff;
	color: #9a7a8a;
}

body.kb-woo-enabled .kb-brand-pill-logo img {
	width: 14px;
	height: 14px;
	object-fit: contain;
	filter: grayscale(1) contrast(0.9);
}

body.kb-woo-enabled .kb-brand-pill-name {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7e6874;
}

/* Cult-like trending rails on product detail */
body.kb-woo-enabled .single-product .related.products,
body.kb-woo-enabled .single-product .up-sells.upsells.products {
	margin-top: 44px;
}

body.kb-woo-enabled .single-product .related.products > h2,
body.kb-woo-enabled .single-product .up-sells.upsells.products > h2 {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
	color: #1f1a20;
	text-transform: uppercase;
	font-size: clamp(16px, 1.7vw, 22px);
	letter-spacing: 0.08em;
}

body.kb-woo-enabled .single-product .related.products ul.products,
body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
	gap: 18px !important;
	padding: 0 0 6px !important;
	scrollbar-width: none;
}

body.kb-woo-enabled .single-product .related.products ul.products::-webkit-scrollbar,
body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products::-webkit-scrollbar {
	display: none;
}

body.kb-woo-enabled .single-product .related.products ul.products li.product,
body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products li.product {
	flex: 0 0 clamp(210px, 21vw, 274px);
}

@media (max-width: 900px) {
	body.kb-woo-enabled .woocommerce ul.products li.product .button,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
		width: 42px !important;
		min-width: 42px !important;
		height: 42px !important;
		min-height: 42px !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
		font-size: clamp(22px, 7vw, 30px) !important;
	}
}

/* Final product system lock (BeBold style) */
body.kb-woo-enabled .kb-home-products {
	padding-top: clamp(36px, 4vw, 56px);
}

body.kb-woo-enabled .kb-products-grid-main ul.products {
	gap: clamp(18px, 2vw, 30px) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product,
body.kb-woo-enabled .woocommerce-page ul.products li.product {
	position: relative;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
	position: relative;
	display: block;
}

body.kb-woo-enabled .woocommerce ul.products li.product a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product a img {
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
	object-position: center !important;
	padding: 22px !important;
	border-radius: 0 !important;
	border: 0 !important;
	background: #f0edf4 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:nth-child(4n + 1) a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:nth-child(4n + 1) a img {
	background: #efe4ea !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:nth-child(4n + 2) a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:nth-child(4n + 2) a img {
	background: #ebe5d8 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:nth-child(4n + 3) a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:nth-child(4n + 3) a img {
	background: #e8e8f2 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product:nth-child(4n + 4) a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product:nth-child(4n + 4) a img {
	background: #e7edf1 !important;
}

body.kb-woo-enabled .woocommerce span.onsale {
	top: 12px !important;
	left: 12px !important;
	z-index: 11 !important;
	padding: 5px 10px !important;
	min-height: 28px !important;
	display: inline-flex !important;
	align-items: center !important;
	border-radius: 999px !important;
	background: #1f1a20 !important;
	border: 0 !important;
	color: #ffffff !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	box-shadow: 0 6px 12px rgba(31, 26, 32, 0.2) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .kb-trending-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-trending-badge {
	top: 12px;
	left: 12px;
	z-index: 11;
	padding: 5px 10px;
	min-height: 28px;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: #1f1a20;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 6px 12px rgba(31, 26, 32, 0.2);
	border: 0;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
	top: 12px !important;
	right: 12px !important;
	z-index: 12 !important;
	width: 44px !important;
	min-width: 44px !important;
	height: 44px !important;
	min-height: 44px !important;
	border-radius: 50% !important;
	border: 1px solid #dcd1d8 !important;
	background: #ffffff !important;
	color: #2f262d !important;
	box-shadow: 0 6px 12px rgba(56, 39, 50, 0.14) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button:hover,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button:hover {
	border-color: #c7b4c0 !important;
	background: #fff !important;
	color: #1f1a20 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: "Playfair Display", Georgia, serif !important;
	font-size: clamp(28px, 2.3vw, 40px) !important;
	line-height: 1.08 !important;
	font-weight: 500 !important;
	letter-spacing: -0.01em !important;
	color: #1f1820 !important;
	margin: 14px 0 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price {
	margin-top: 8px !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #4b4048 !important;
	display: flex;
	gap: 8px;
	align-items: baseline;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price del,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price del {
	font-size: 16px !important;
	color: #9f99a2 !important;
	opacity: 1 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price ins,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price ins {
	text-decoration: none !important;
}

body.kb-woo-enabled .single-product .kb-main {
	background: #ffffff;
}

body.kb-woo-enabled .single-product .kb-section {
	padding: clamp(38px, 4vw, 58px) 0 clamp(60px, 6vw, 88px);
}

body.kb-woo-enabled .single-product .kb-woo-wrap {
	max-width: min(1240px, 93vw);
}

body.kb-woo-enabled .single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(26px, 3vw, 46px);
	align-items: start;
}

body.kb-woo-enabled .single-product div.product div.images {
	position: sticky;
	top: 108px;
}

body.kb-woo-enabled .single-product div.product div.images .woocommerce-product-gallery__wrapper {
	background: #f0edf4;
	border-radius: 0;
	border: 0;
	padding: clamp(16px, 2vw, 22px);
	box-shadow: none;
}

body.kb-woo-enabled .single-product div.product div.images .woocommerce-product-gallery__image img {
	background: transparent;
	border-radius: 0;
	padding: 0;
}

body.kb-woo-enabled .single-product div.product div.summary {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.kb-woo-enabled .single-product .kb-product-context,
body.kb-woo-enabled .single-product .kb-product-usps {
	display: none !important;
}

body.kb-woo-enabled .single-product div.product .product_title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(42px, 4.4vw, 68px) !important;
	line-height: 1.04;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: #1f1820;
}

body.kb-woo-enabled .single-product div.product p.price,
body.kb-woo-enabled .single-product div.product span.price {
	font-size: clamp(28px, 2.7vw, 38px) !important;
	color: #2b232a !important;
	margin: 12px 0 14px;
}

body.kb-woo-enabled .single-product div.product p.price del,
body.kb-woo-enabled .single-product div.product span.price del {
	color: #9e98a0;
}

body.kb-woo-enabled .single-product div.product .woocommerce-product-details__short-description {
	font-size: 16px;
	line-height: 1.72;
	color: #5f5660;
	max-width: 52ch;
}

body.kb-woo-enabled .single-product div.product form.cart {
	margin-top: 16px;
	gap: 12px;
}

body.kb-woo-enabled .single-product div.product form.cart .qty {
	height: 48px;
	min-width: 100px;
	border-radius: 999px;
	border: 1px solid #dcd1d8;
}

body.kb-woo-enabled .single-product div.product form.cart .single_add_to_cart_button {
	min-height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	background: #1f1a20 !important;
	border: 1px solid #1f1a20 !important;
	color: #fff !important;
	box-shadow: none;
}

body.kb-woo-enabled .single-product div.product form.cart .single_add_to_cart_button:hover {
	background: #000 !important;
	border-color: #000 !important;
}

body.kb-woo-enabled .single-product .woocommerce-tabs {
	margin-top: 34px;
}

body.kb-woo-enabled .single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	border-bottom: 1px solid #e9dde5 !important;
	padding-bottom: 10px !important;
	margin-bottom: 18px !important;
}

body.kb-woo-enabled .single-product .woocommerce-tabs ul.tabs li {
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.kb-woo-enabled .single-product .woocommerce-tabs ul.tabs li a {
	padding: 0 !important;
	min-height: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #7a6e78 !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
}

body.kb-woo-enabled .single-product .woocommerce-tabs ul.tabs li.active a {
	color: #1f1a20 !important;
}

body.kb-woo-enabled .single-product .woocommerce-tabs .panel {
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
}

body.kb-woo-enabled .single-product .related.products ul.products,
body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2vw, 30px) !important;
	overflow: visible !important;
}

@media (max-width: 1020px) {
	body.kb-woo-enabled .single-product div.product {
		grid-template-columns: 1fr;
	}

	body.kb-woo-enabled .single-product div.product div.images {
		position: static;
	}

	body.kb-woo-enabled .single-product .related.products ul.products,
	body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 760px) {
	body.kb-woo-enabled .woocommerce ul.products li.product .button,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
		width: 42px !important;
		min-width: 42px !important;
		height: 42px !important;
		min-height: 42px !important;
	}

	body.kb-woo-enabled .single-product .related.products ul.products,
	body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products {
		grid-template-columns: 1fr !important;
	}
}

/* Final loop card polish: compact badges + aligned action + BeBold title scale */
body.kb-woo-enabled .woocommerce ul.products li.product span.onsale,
body.kb-woo-enabled .woocommerce-page ul.products li.product span.onsale,
body.kb-woo-enabled .woocommerce ul.products li.product .kb-trending-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-trending-badge {
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	z-index: 14 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 0 !important;
	height: 26px !important;
	min-height: 26px !important;
	padding: 0 10px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #121212 !important;
	color: #ffffff !important;
	font-size: 11px !important;
	line-height: 1 !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	white-space: nowrap !important;
	transform: none !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	z-index: 15 !important;
	width: 36px !important;
	min-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	border-radius: 999px !important;
	border: 1px solid #dfd3db !important;
	background: #ffffff !important;
	color: #1f1a20 !important;
	transform: none !important;
	box-shadow: 0 6px 12px rgba(56, 39, 50, 0.12) !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: "Playfair Display", Georgia, serif !important;
	font-size: clamp(16px, 1.08vw, 24px) !important;
	line-height: 1.24 !important;
	font-weight: 500 !important;
	letter-spacing: -0.005em !important;
	color: #1f1820 !important;
	margin: 12px 0 0 !important;
}

@media (max-width: 760px) {
	body.kb-woo-enabled .woocommerce ul.products li.product span.onsale,
	body.kb-woo-enabled .woocommerce-page ul.products li.product span.onsale,
	body.kb-woo-enabled .woocommerce ul.products li.product .kb-trending-badge,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-trending-badge {
		font-size: 11px !important;
		height: 24px !important;
		min-height: 24px !important;
		padding: 0 9px !important;
		top: 8px !important;
		left: 8px !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .button,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
		top: 8px !important;
		right: 8px !important;
		width: 34px !important;
		min-width: 34px !important;
		height: 34px !important;
		min-height: 34px !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
		font-size: clamp(15px, 5.4vw, 20px) !important;
	}
}

/* Main screen consistency: same typography for menu + category + product cards */
body.kb-woo-enabled {
	--kb-menu-font: "Manrope", "Plus Jakarta Sans", sans-serif;
}

body.kb-woo-enabled .kb-nav .menu > li > a,
body.kb-woo-enabled .kb-nav .sub-menu a,
body.kb-woo-enabled .kb-shop-filters label,
body.kb-woo-enabled .kb-shop-filters input,
body.kb-woo-enabled .kb-shop-filters select,
body.kb-woo-enabled .kb-category-card-title,
body.kb-woo-enabled .kb-category-card-link {
	font-family: var(--kb-menu-font) !important;
}

body.kb-woo-enabled .kb-nav .menu > li > a {
	font-weight: 800 !important;
	letter-spacing: 0.01em !important;
}

body.kb-woo-enabled .kb-nav .sub-menu a {
	font-weight: 600 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--kb-menu-font) !important;
	font-size: clamp(15px, 1vw, 18px) !important;
	line-height: 1.35 !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	min-height: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price,
body.kb-woo-enabled .woocommerce ul.products li.product .price del,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price del,
body.kb-woo-enabled .woocommerce ul.products li.product .price ins,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price ins {
	font-family: var(--kb-menu-font) !important;
}

@media (max-width: 760px) {
	body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
		font-size: clamp(14px, 4.8vw, 17px) !important;
	}
}

/* Product text detail style + compact spacing like reference */
body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
	padding: 0 !important;
	gap: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product a img {
	margin: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: "Playfair Display", Georgia, serif !important;
	font-size: clamp(18px, 1.35vw, 27px) !important;
	line-height: 1.18 !important;
	font-weight: 500 !important;
	letter-spacing: -0.01em !important;
	margin: 8px 0 2px !important;
	padding: 0 !important;
	min-height: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price {
	margin: 0 !important;
	padding: 0 !important;
	gap: 7px !important;
	align-items: baseline !important;
	font-size: 18px !important;
	line-height: 1.15 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price del,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price del {
	font-size: 0.92em !important;
}

@media (max-width: 760px) {
	body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
		font-size: clamp(17px, 5vw, 22px) !important;
		margin-top: 7px !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .price,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .price {
		font-size: 16px !important;
	}
}

/* Final menu font lock */
body.kb-woo-enabled .kb-nav .menu > li > a,
body.kb-woo-enabled .kb-nav .sub-menu a,
body.kb-woo-enabled .kb-nav .menu .sub-menu .sub-menu a,
body.kb-woo-enabled .kb-menu-toggle {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
}

body.kb-woo-enabled .kb-nav .menu > li > a {
	font-size: 14px !important;
	font-weight: 800 !important;
	letter-spacing: 0.01em !important;
	text-transform: uppercase !important;
}

body.kb-woo-enabled .kb-nav .sub-menu a,
body.kb-woo-enabled .kb-nav .menu .sub-menu .sub-menu a {
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

/* Absolute final global product card system (all pages/loops) */
:root {
	--kb-final-menu-font: "Manrope", "Plus Jakarta Sans", sans-serif;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce .related.products ul.products li.product,
.woocommerce .up-sells.upsells.products ul.products li.product,
.woocommerce .cross-sells ul.products li.product {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	padding: 0 !important;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
	object-position: center !important;
	padding: 18px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #f0edf4 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product .wc-block-grid__product-title,
.wc-block-components-product-name {
	font-family: var(--kb-final-menu-font) !important;
	font-size: clamp(14px, 0.95vw, 17px) !important;
	line-height: 1.3 !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	color: #1f1820 !important;
	margin: 8px 0 2px !important;
	padding: 0 !important;
	min-height: 0 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del,
.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins,
.wc-block-grid__product-price,
.wc-block-components-product-price {
	font-family: var(--kb-final-menu-font) !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	margin: 0 !important;
	transform: none !important;
	width: 36px !important;
	min-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 999px !important;
}

.woocommerce ul.products li.product span.onsale,
.woocommerce-page ul.products li.product span.onsale,
.woocommerce ul.products li.product .kb-trending-badge,
.woocommerce-page ul.products li.product .kb-trending-badge,
.wc-block-grid__product-onsale {
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	margin: 0 !important;
	transform: none !important;
	height: 24px !important;
	min-height: 24px !important;
	padding: 0 9px !important;
	border-radius: 999px !important;
	background: #121212 !important;
	color: #ffffff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-transform: none !important;
	white-space: nowrap !important;
}

@media (max-width: 760px) {
	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
	.wc-block-grid__product .wc-block-grid__product-title,
	.wc-block-components-product-name {
		font-size: clamp(13px, 4.2vw, 16px) !important;
	}
}

/* Unified card from main screen for all product sections/pages */
body.kb-woo-enabled .single-product .related.products ul.products,
body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products,
body.kb-woo-enabled .cross-sells ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2vw, 30px) !important;
	overflow: visible !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product,
body.kb-woo-enabled .woocommerce-page ul.products li.product,
body.kb-woo-enabled .single-product .related.products ul.products li.product,
body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products li.product,
body.kb-woo-enabled .cross-sells ul.products li.product {
	position: relative !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product a img {
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
	object-position: center !important;
	padding: 18px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #f0edf4 !important;
	box-shadow: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: clamp(14px, 0.95vw, 16px) !important;
	line-height: 1.3 !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	color: #1f1820 !important;
	margin: 8px 0 2px !important;
	padding: 0 !important;
	min-height: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price,
body.kb-woo-enabled .woocommerce ul.products li.product .price del,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price del,
body.kb-woo-enabled .woocommerce ul.products li.product .price ins,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price ins {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	margin: 0 !important;
	transform: none !important;
	width: 36px !important;
	min-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	border-radius: 999px !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product span.onsale,
body.kb-woo-enabled .woocommerce-page ul.products li.product span.onsale,
body.kb-woo-enabled .woocommerce ul.products li.product .kb-trending-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-trending-badge {
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	margin: 0 !important;
	transform: none !important;
	height: 24px !important;
	min-height: 24px !important;
	padding: 0 9px !important;
	border-radius: 999px !important;
	background: #121212 !important;
	color: #ffffff !important;
	font-size: 11px !important;
	line-height: 1 !important;
	font-weight: 700 !important;
	white-space: nowrap !important;
}

@media (max-width: 1020px) {
	body.kb-woo-enabled .single-product .related.products ul.products,
	body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products,
	body.kb-woo-enabled .cross-sells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 760px) {
	body.kb-woo-enabled .single-product .related.products ul.products,
	body.kb-woo-enabled .single-product .up-sells.upsells.products ul.products,
	body.kb-woo-enabled .cross-sells ul.products {
		grid-template-columns: 1fr !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
		font-size: clamp(13px, 4.2vw, 15px) !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .price,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .price {
		font-size: 15px !important;
	}
}

/* Basket everywhere + same main card in Woo blocks */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.wc-block-grid__product,
.wc-block-components-product {
	position: relative !important;
}

.wc-block-grid__product-image img,
.wc-block-components-product-image img {
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
	object-position: center !important;
	padding: 18px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #f0edf4 !important;
	box-shadow: none !important;
}

.wc-block-grid__product .wc-block-grid__product-title,
.wc-block-components-product-name {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: clamp(14px, 0.95vw, 16px) !important;
	line-height: 1.3 !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	color: #1f1820 !important;
	margin: 8px 0 2px !important;
}

.wc-block-grid__product-price,
.wc-block-components-product-price {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
	margin: 0 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce-page ul.products li.product .added_to_cart,
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-components-product-button__button {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	z-index: 15 !important;
	width: 36px !important;
	min-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 999px !important;
	border: 1px solid #dfd3db !important;
	background: #ffffff !important;
	color: #1f1a20 !important;
	box-shadow: 0 6px 12px rgba(56, 39, 50, 0.12) !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: none !important;
	overflow: hidden !important;
	font-size: 0 !important;
	line-height: 0 !important;
	text-indent: -9999px !important;
}

.woocommerce ul.products li.product .button::before,
.woocommerce-page ul.products li.product .button::before,
.woocommerce ul.products li.product .added_to_cart::before,
.woocommerce-page ul.products li.product .added_to_cart::before,
.wc-block-grid__product-add-to-cart .wp-block-button__link::before,
.wc-block-components-product-button__button::before {
	content: "" !important;
	width: 16px !important;
	height: 16px !important;
	background-color: currentColor !important;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Cpath d='M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E")
		no-repeat center / contain !important;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Cpath d='M1 1h4l2.68 12.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E")
		no-repeat center / contain !important;
}

@media (max-width: 760px) {
	.wc-block-grid__product .wc-block-grid__product-title,
	.wc-block-components-product-name {
		font-size: clamp(13px, 4.2vw, 15px) !important;
	}

	.wc-block-grid__product-price,
	.wc-block-components-product-price {
		font-size: 15px !important;
	}
}

/* Remove residual card outline/bottom border in some category loops */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after,
.woocommerce-page ul.products li.product::before,
.woocommerce-page ul.products li.product::after,
.wc-block-grid__product,
.wc-block-grid__product::before,
.wc-block-grid__product::after,
.wc-block-components-product,
.wc-block-components-product::before,
.wc-block-components-product::after {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .product-inner,
.woocommerce-page ul.products li.product .product-inner,
.woocommerce ul.products li.product .astra-shop-summary-wrap,
.woocommerce-page ul.products li.product .astra-shop-summary-wrap,
.wc-block-grid__product-link,
.wc-block-components-product-summary,
.wc-block-components-product-image {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

/* Final lock: basket + pill on same line everywhere */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce-page ul.products li.product .added_to_cart,
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-components-product-button__button {
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
}

.woocommerce ul.products li.product span.onsale,
.woocommerce-page ul.products li.product span.onsale,
.woocommerce ul.products li.product .kb-trending-badge,
.woocommerce-page ul.products li.product .kb-trending-badge,
.wc-block-grid__product-onsale {
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
}

@media (max-width: 760px) {
	.woocommerce ul.products li.product .button,
	.woocommerce-page ul.products li.product .button,
	.woocommerce ul.products li.product .added_to_cart,
	.woocommerce-page ul.products li.product .added_to_cart,
	.wc-block-grid__product-add-to-cart .wp-block-button__link,
	.wc-block-components-product-button__button {
		top: 8px !important;
		right: 8px !important;
	}

	.woocommerce ul.products li.product span.onsale,
	.woocommerce-page ul.products li.product span.onsale,
	.woocommerce ul.products li.product .kb-trending-badge,
	.woocommerce-page ul.products li.product .kb-trending-badge,
	.wc-block-grid__product-onsale {
		top: 8px !important;
		left: 8px !important;
	}
}

/* Universal uniform product card lock (same main-page card everywhere) */
:root {
	--kb-uniform-card-bg: #f0edf4;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.woocommerce .related.products ul.products li.product a img,
.woocommerce .up-sells.upsells.products ul.products li.product a img,
.woocommerce .cross-sells ul.products li.product a img,
.wc-block-grid__product-image img,
.wc-block-components-product-image img {
	background: var(--kb-uniform-card-bg) !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.woocommerce ul.products li.product:nth-child(4n + 1) a img,
.woocommerce-page ul.products li.product:nth-child(4n + 1) a img,
.woocommerce ul.products li.product:nth-child(4n + 2) a img,
.woocommerce-page ul.products li.product:nth-child(4n + 2) a img,
.woocommerce ul.products li.product:nth-child(4n + 3) a img,
.woocommerce-page ul.products li.product:nth-child(4n + 3) a img,
.woocommerce ul.products li.product:nth-child(4n + 4) a img,
.woocommerce-page ul.products li.product:nth-child(4n + 4) a img {
	background: var(--kb-uniform-card-bg) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product .wc-block-grid__product-title,
.wc-block-components-product-name {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: clamp(14px, 0.95vw, 16px) !important;
	line-height: 1.3 !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	color: #1f1820 !important;
	margin: 8px 0 2px !important;
	padding: 0 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del,
.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins,
.wc-block-grid__product-price,
.wc-block-components-product-price {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #4b4048 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart,
.woocommerce-page ul.products li.product .added_to_cart,
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-components-product-button__button {
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	width: 36px !important;
	min-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 999px !important;
	border: 1px solid #dfd3db !important;
	background: #ffffff !important;
	color: #1f1a20 !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

.woocommerce ul.products li.product span.onsale,
.woocommerce-page ul.products li.product span.onsale,
.woocommerce ul.products li.product .kb-trending-badge,
.woocommerce-page ul.products li.product .kb-trending-badge,
.wc-block-grid__product-onsale {
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	height: 24px !important;
	min-height: 24px !important;
	padding: 0 9px !important;
	margin: 0 !important;
	border-radius: 999px !important;
	background: #121212 !important;
	color: #ffffff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-transform: none !important;
	white-space: nowrap !important;
	transform: none !important;
}

@media (max-width: 760px) {
	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
	.wc-block-grid__product .wc-block-grid__product-title,
	.wc-block-components-product-name {
		font-size: clamp(13px, 4.2vw, 15px) !important;
	}

	.woocommerce ul.products li.product .price,
	.woocommerce-page ul.products li.product .price,
	.wc-block-grid__product-price,
	.wc-block-components-product-price {
		font-size: 15px !important;
	}
}

/* Absolute EOF lock: remove any remaining card outlines in category pages */
body.kb-woo-enabled .woocommerce ul.products li.product,
body.kb-woo-enabled .woocommerce-page ul.products li.product,
body.kb-woo-enabled .woocommerce ul.products li.product::before,
body.kb-woo-enabled .woocommerce ul.products li.product::after,
body.kb-woo-enabled .woocommerce-page ul.products li.product::before,
body.kb-woo-enabled .woocommerce-page ul.products li.product::after,
body.kb-woo-enabled .wc-block-grid__product,
body.kb-woo-enabled .wc-block-grid__product::before,
body.kb-woo-enabled .wc-block-grid__product::after,
body.kb-woo-enabled .wc-block-components-product,
body.kb-woo-enabled .wc-block-components-product::before,
body.kb-woo-enabled .wc-block-components-product::after {
	border: 0 !important;
	border-color: transparent !important;
	outline: 0 !important;
	box-shadow: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce ul.products li.product .product-inner,
body.kb-woo-enabled .woocommerce-page ul.products li.product .product-inner,
body.kb-woo-enabled .woocommerce ul.products li.product .astra-shop-summary-wrap,
body.kb-woo-enabled .woocommerce-page ul.products li.product .astra-shop-summary-wrap,
body.kb-woo-enabled .wc-block-grid__product-link,
body.kb-woo-enabled .wc-block-components-product-summary,
body.kb-woo-enabled .wc-block-components-product-image {
	border: 0 !important;
	border-color: transparent !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Home sections: centered headings with dotted separator */
body.kb-woo-enabled .kb-home-products-stack {
	display: grid;
	gap: clamp(34px, 4.8vw, 56px);
}

body.kb-woo-enabled .kb-home-product-group .kb-section-head {
	position: relative;
	margin: 0 0 clamp(14px, 2vw, 24px);
	padding-top: clamp(16px, 1.8vw, 22px);
	display: flex;
	justify-content: center;
	text-align: center;
}

body.kb-woo-enabled .kb-home-product-group .kb-section-head::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-top: 2px dotted #2a2b30;
	opacity: 0.85;
}

body.kb-woo-enabled .kb-home-product-group .kb-section-head-left {
	width: 100%;
	display: flex;
	justify-content: center;
}

body.kb-woo-enabled .kb-home-product-group .kb-section-head h2 {
	margin: 0;
	padding: 0;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: clamp(34px, 4.3vw, 72px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #25282f;
	text-transform: none;
}

/* NEW badge style */
body.kb-woo-enabled .woocommerce ul.products li.product .kb-new-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-new-badge {
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	z-index: 14 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 22px !important;
	min-height: 22px !important;
	padding: 0 8px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #121212 !important;
	color: #ffffff !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 11px !important;
	line-height: 1 !important;
	font-weight: 700 !important;
	white-space: nowrap !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .kb-new-badge.kb-new-badge-offset,
body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-new-badge.kb-new-badge-offset {
	top: 36px !important;
}

@media (max-width: 760px) {
	body.kb-woo-enabled .kb-home-product-group .kb-section-head h2 {
		font-size: clamp(28px, 8.8vw, 44px);
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .kb-new-badge,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-new-badge {
		top: 8px !important;
		left: 8px !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product .kb-new-badge.kb-new-badge-offset,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-new-badge.kb-new-badge-offset {
		top: 32px !important;
	}
}

/* Canonical lock: main-page product card style everywhere */
body.kb-woo-enabled .woocommerce ul.products li.product,
body.kb-woo-enabled .woocommerce-page ul.products li.product,
body.kb-woo-enabled .woocommerce .related.products ul.products li.product,
body.kb-woo-enabled .woocommerce .up-sells.upsells.products ul.products li.product,
body.kb-woo-enabled .woocommerce .cross-sells ul.products li.product,
body.kb-woo-enabled .wc-block-grid__product,
body.kb-woo-enabled .wc-block-components-product {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product a img,
body.kb-woo-enabled .woocommerce-page ul.products li.product a img,
body.kb-woo-enabled .wc-block-grid__product-image img,
body.kb-woo-enabled .wc-block-components-product-image img {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	background: #f0edf4 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body.kb-woo-enabled .wc-block-grid__product .wc-block-grid__product-title,
body.kb-woo-enabled .wc-block-components-product-name {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: clamp(14px, 0.95vw, 16px) !important;
	line-height: 1.3 !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	color: #1f1820 !important;
	margin: 8px 0 2px !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product .price,
body.kb-woo-enabled .wc-block-grid__product-price,
body.kb-woo-enabled .wc-block-components-product-price {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button,
body.kb-woo-enabled .woocommerce-page ul.products li.product .button,
body.kb-woo-enabled .woocommerce ul.products li.product .added_to_cart,
body.kb-woo-enabled .woocommerce-page ul.products li.product .added_to_cart,
body.kb-woo-enabled .wc-block-grid__product-add-to-cart .wp-block-button__link,
body.kb-woo-enabled .wc-block-components-product-button__button {
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	width: 34px !important;
	min-width: 34px !important;
	height: 34px !important;
	min-height: 34px !important;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.96) !important;
	color: #1f1a20 !important;
	padding: 0 !important;
	margin: 0 !important;
	transform: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product span.onsale,
body.kb-woo-enabled .woocommerce-page ul.products li.product span.onsale,
body.kb-woo-enabled .woocommerce ul.products li.product .kb-trending-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-trending-badge,
body.kb-woo-enabled .wc-block-grid__product-onsale {
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	height: 22px !important;
	min-height: 22px !important;
	padding: 0 8px !important;
	margin: 0 !important;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	border-radius: 999px !important;
	background: #121212 !important;
	color: #ffffff !important;
	font-size: 11px !important;
	line-height: 1 !important;
	font-weight: 700 !important;
	text-transform: none !important;
	white-space: nowrap !important;
	transform: none !important;
}

@media (max-width: 760px) {
	body.kb-woo-enabled .woocommerce ul.products li.product .button,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .button,
	body.kb-woo-enabled .woocommerce ul.products li.product .added_to_cart,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .added_to_cart,
	body.kb-woo-enabled .wc-block-grid__product-add-to-cart .wp-block-button__link,
	body.kb-woo-enabled .wc-block-components-product-button__button {
		top: 8px !important;
		right: 8px !important;
	}

	body.kb-woo-enabled .woocommerce ul.products li.product span.onsale,
	body.kb-woo-enabled .woocommerce-page ul.products li.product span.onsale,
	body.kb-woo-enabled .woocommerce ul.products li.product .kb-trending-badge,
	body.kb-woo-enabled .woocommerce-page ul.products li.product .kb-trending-badge,
	body.kb-woo-enabled .wc-block-grid__product-onsale {
		top: 8px !important;
		left: 8px !important;
	}
}

/* Canonical single-product lock: Be Bold style without pills/cards in tabs area */
body.kb-woo-enabled.single-product div.product.kb-bebold-single,
body.single-product div.product.kb-bebold-single {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	clear: both !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single > .kb-bebold-top,
body.single-product div.product.kb-bebold-single > .kb-bebold-top {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
	gap: clamp(24px, 2.8vw, 44px) !important;
	align-items: start !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single > .kb-bebold-top > .kb-bebold-media,
body.kb-woo-enabled.single-product div.product.kb-bebold-single > .kb-bebold-top > .kb-bebold-summary,
body.single-product div.product.kb-bebold-single > .kb-bebold-top > .kb-bebold-media,
body.single-product div.product.kb-bebold-single > .kb-bebold-top > .kb-bebold-summary {
	float: none !important;
	width: 100% !important;
	min-width: 0 !important;
	align-self: start !important;
	margin: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single > .kb-bebold-tabs,
body.kb-woo-enabled.single-product div.product.kb-bebold-single > .kb-bebold-recommendations,
body.single-product div.product.kb-bebold-single > .kb-bebold-tabs,
body.single-product div.product.kb-bebold-single > .kb-bebold-recommendations {
	clear: both !important;
	width: 100% !important;
	margin: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-media .woocommerce-product-gallery,
body.single-product div.product.kb-bebold-single .kb-bebold-media .woocommerce-product-gallery {
	position: relative !important;
	top: 0 !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	opacity: 1 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single div.images,
body.single-product div.product.kb-bebold-single div.images {
	position: static !important;
	top: auto !important;
	margin-top: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-media .woocommerce-product-gallery__wrapper,
body.single-product div.product.kb-bebold-single .kb-bebold-media .woocommerce-product-gallery__wrapper {
	background: #f2eff5 !important;
	padding: clamp(12px, 1.7vw, 20px) !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-media .woocommerce-product-gallery__image img,
body.single-product div.product.kb-bebold-single .kb-bebold-media .woocommerce-product-gallery__image img {
	display: block !important;
	width: 100% !important;
	aspect-ratio: 0.84 / 1 !important;
	object-fit: contain !important;
	object-position: center !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	padding: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-media .flex-control-thumbs,
body.single-product div.product.kb-bebold-single .kb-bebold-media .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 10px 0 0 !important;
	padding: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-media .flex-control-thumbs li,
body.single-product div.product.kb-bebold-single .kb-bebold-media .flex-control-thumbs li {
	margin: 0 !important;
	border: 1px solid #ece6ee !important;
	background: #ffffff !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-media .flex-control-thumbs li img,
body.single-product div.product.kb-bebold-single .kb-bebold-media .flex-control-thumbs li img {
	aspect-ratio: 1 / 1 !important;
	object-fit: cover !important;
	padding: 0 !important;
	opacity: 1 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-media .onsale,
body.single-product div.product.kb-bebold-single .kb-bebold-media .onsale {
	top: 12px !important;
	left: 12px !important;
	right: auto !important;
	min-height: 22px !important;
	padding: 0 8px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #111111 !important;
	color: #ffffff !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-transform: none !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary,
body.single-product div.product.kb-bebold-single .kb-bebold-summary {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .woocommerce-breadcrumb,
body.single-product div.product.kb-bebold-single .kb-bebold-summary .woocommerce-breadcrumb {
	margin: 0 0 10px !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
	color: #7f7b84 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .kb-single-category-label,
body.single-product div.product.kb-bebold-single .kb-bebold-summary .kb-single-category-label {
	margin: 0 0 10px !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #8d8791 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .product_title,
body.single-product div.product.kb-bebold-single .kb-bebold-summary .product_title {
	margin: 0 0 12px !important;
	font-family: "Manrope", "Plus Jakarta Sans", "Poppins", sans-serif !important;
	font-size: clamp(40px, 4.3vw, 64px) !important;
	line-height: 1.02 !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em !important;
	color: #1a1520 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary p.price,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary span.price,
body.single-product div.product.kb-bebold-single .kb-bebold-summary p.price,
body.single-product div.product.kb-bebold-single .kb-bebold-summary span.price {
	margin: 0 0 8px !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: clamp(30px, 2.9vw, 40px) !important;
	line-height: 1.06 !important;
	font-weight: 600 !important;
	color: #19151e !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary p.price del,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary span.price del,
body.single-product div.product.kb-bebold-single .kb-bebold-summary p.price del,
body.single-product div.product.kb-bebold-single .kb-bebold-summary span.price del {
	font-size: clamp(18px, 1.45vw, 22px) !important;
	font-weight: 500 !important;
	color: #9a97a0 !important;
	opacity: 1 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .kb-bebold-shipping-text,
body.single-product div.product.kb-bebold-single .kb-bebold-summary .kb-bebold-shipping-text {
	display: inline-block !important;
	margin: 0 0 14px !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 14px !important;
	line-height: 1.4 !important;
	font-weight: 500 !important;
	color: #7ea189 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .woocommerce-product-details__short-description,
body.single-product div.product.kb-bebold-single .kb-bebold-summary .woocommerce-product-details__short-description {
	margin: 0 0 16px !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 14px !important;
	line-height: 1.75 !important;
	color: #605b64 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart,
body.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 10px !important;
	margin: 0 0 14px !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart .qty,
body.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart .qty {
	height: 40px !important;
	width: 64px !important;
	min-width: 64px !important;
	border: 1px solid #d8d3dc !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #18141d !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart .single_add_to_cart_button,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart button.button.alt,
body.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart .single_add_to_cart_button,
body.single-product div.product.kb-bebold-single .kb-bebold-summary form.cart button.button.alt {
	height: 40px !important;
	min-height: 40px !important;
	padding: 0 18px !important;
	border: 1px solid #111111 !important;
	border-radius: 999px !important;
	background: #111111 !important;
	box-shadow: none !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.03em !important;
	text-transform: uppercase !important;
	color: #ffffff !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .product_meta,
body.single-product div.product.kb-bebold-single .kb-bebold-summary .product_meta {
	margin: 8px 0 0 !important;
	padding-top: 10px !important;
	border-top: 1px solid #ece7ef !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 12px !important;
	line-height: 1.7 !important;
	color: #66616a !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .product_meta > span,
body.single-product div.product.kb-bebold-single .kb-bebold-summary .product_meta > span {
	display: block !important;
	margin: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-tabs,
body.single-product div.product.kb-bebold-single .kb-bebold-tabs {
	margin-top: clamp(26px, 3.1vw, 38px) !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-tabs .woocommerce-tabs,
body.single-product div.product.kb-bebold-single .kb-bebold-tabs .woocommerce-tabs {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs,
body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 14px !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	list-style: none !important;
	border-top: 1px solid #e6e0e8 !important;
	border-bottom: 1px solid #e6e0e8 !important;
	border-left: 0 !important;
	border-right: 0 !important;
	background: transparent !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs,
body.single-product div.product.kb-bebold-single .woocommerce-tabs {
	width: 100% !important;
	clear: both !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs::before,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li::before,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li::after,
body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs::before,
body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li::before,
body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li::after {
	content: none !important;
	display: none !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li,
body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li a,
body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li a {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 42px !important;
	padding: 0 2px !important;
	border: 0 !important;
	border-bottom: 2px solid transparent !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.03em !important;
	text-transform: uppercase !important;
	color: #6b6670 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li.active a,
body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs li.active a {
	border-bottom-color: #111111 !important;
	background: transparent !important;
	color: #111111 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs .panel,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-Tabs-panel,
body.single-product div.product.kb-bebold-single .woocommerce-tabs .panel,
body.single-product div.product.kb-bebold-single .woocommerce-Tabs-panel {
	margin: 0 !important;
	padding: clamp(18px, 2.1vw, 28px) !important;
	border: 1px solid #ece4ec !important;
	border-radius: 14px !important;
	background: #ffffff !important;
	box-shadow: 0 10px 22px rgba(95, 62, 82, 0.06) !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 14px !important;
	line-height: 1.75 !important;
	color: #5f5962 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs .panel h2,
body.single-product div.product.kb-bebold-single .woocommerce-tabs .panel h2 {
	font-family: "Manrope", "Plus Jakarta Sans", "Poppins", sans-serif !important;
	font-size: clamp(34px, 3.8vw, 52px) !important;
	line-height: 1.06 !important;
	font-weight: 800 !important;
	letter-spacing: -0.015em !important;
	color: #241d2a !important;
	margin: 0 0 14px !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single #reviews,
body.kb-woo-enabled.single-product div.product.kb-bebold-single #reviews #comments,
body.kb-woo-enabled.single-product div.product.kb-bebold-single #review_form_wrapper,
body.kb-woo-enabled.single-product div.product.kb-bebold-single #review_form,
body.kb-woo-enabled.single-product div.product.kb-bebold-single #respond,
body.single-product div.product.kb-bebold-single #reviews,
body.single-product div.product.kb-bebold-single #reviews #comments,
body.single-product div.product.kb-bebold-single #review_form_wrapper,
body.single-product div.product.kb-bebold-single #review_form,
body.single-product div.product.kb-bebold-single #respond {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single #reviews .comment-form textarea,
body.kb-woo-enabled.single-product div.product.kb-bebold-single #reviews .comment-form input[type="text"],
body.kb-woo-enabled.single-product div.product.kb-bebold-single #reviews .comment-form input[type="email"],
body.kb-woo-enabled.single-product div.product.kb-bebold-single #reviews .comment-form select,
body.single-product div.product.kb-bebold-single #reviews .comment-form textarea,
body.single-product div.product.kb-bebold-single #reviews .comment-form input[type="text"],
body.single-product div.product.kb-bebold-single #reviews .comment-form input[type="email"],
body.single-product div.product.kb-bebold-single #reviews .comment-form select {
	border: 1px solid #d8d2dd !important;
	border-radius: 8px !important;
	background: #ffffff !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single #reviews .form-submit .submit,
body.single-product div.product.kb-bebold-single #reviews .form-submit .submit {
	height: 46px !important;
	padding: 0 26px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: linear-gradient(180deg, #f4a4c0 0%, #ea8cb0 100%) !important;
	box-shadow: 0 12px 20px rgba(187, 108, 139, 0.24) !important;
	font-family: "Poppins", "Manrope", sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-recommendations,
body.single-product div.product.kb-bebold-single .kb-bebold-recommendations {
	margin-top: clamp(32px, 4vw, 48px) !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-recommendations .related.products,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-recommendations .up-sells.upsells.products,
body.single-product div.product.kb-bebold-single .kb-bebold-recommendations .related.products,
body.single-product div.product.kb-bebold-single .kb-bebold-recommendations .up-sells.upsells.products {
	margin: 30px 0 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-recommendations .related.products > h2,
body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-recommendations .up-sells.upsells.products > h2,
body.single-product div.product.kb-bebold-single .kb-bebold-recommendations .related.products > h2,
body.single-product div.product.kb-bebold-single .kb-bebold-recommendations .up-sells.upsells.products > h2 {
	margin: 0 0 14px !important;
	font-family: "Manrope", "Plus Jakarta Sans", "Poppins", sans-serif !important;
	font-size: clamp(32px, 3.5vw, 48px) !important;
	line-height: 1.05 !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em !important;
	color: #241d2a !important;
}

@media (max-width: 1120px) {
	body.kb-woo-enabled.single-product div.product.kb-bebold-single > .kb-bebold-top,
	body.single-product div.product.kb-bebold-single > .kb-bebold-top {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}
}

@media (max-width: 640px) {
	body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs,
	body.single-product div.product.kb-bebold-single .woocommerce-tabs ul.tabs {
		gap: 14px !important;
	}

	body.kb-woo-enabled.single-product div.product.kb-bebold-single .kb-bebold-summary .product_title,
	body.single-product div.product.kb-bebold-single .kb-bebold-summary .product_title {
		font-size: clamp(32px, 10vw, 46px) !important;
	}

	body.kb-woo-enabled.single-product div.product.kb-bebold-single .woocommerce-tabs .panel h2,
	body.single-product div.product.kb-bebold-single .woocommerce-tabs .panel h2 {
		font-size: clamp(30px, 12vw, 42px) !important;
	}
}

/* Home-only featured brands rail (Be Bold inspired) */
body.kb-woo-enabled.home .kb-brand-strip--home {
	background: #ffffff !important;
	border-top: 1px solid #f0e7ee !important;
	border-bottom: 1px solid #f0e7ee !important;
	padding: 8px 0 !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-marquee {
	overflow-x: auto !important;
	scrollbar-width: none !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-marquee::-webkit-scrollbar {
	display: none !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-rail {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: clamp(18px, 2.7vw, 38px) !important;
	min-width: max-content !important;
	padding: 6px 4px !important;
	margin: 0 auto !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-pill {
	display: inline-flex !important;
	align-items: center !important;
	gap: 9px !important;
	padding: 0 !important;
	min-width: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-pill-logo {
	width: 20px !important;
	height: 20px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 20px !important;
	border: 1px solid #eadde6 !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	overflow: hidden !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-pill-logo img {
	width: 13px !important;
	height: 13px !important;
	object-fit: contain !important;
	filter: grayscale(1) contrast(0.95) brightness(0.76) !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-pill-logo.is-fallback::before {
	content: "•" !important;
	font-size: 16px !important;
	line-height: 1 !important;
	color: #9f7f90 !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-pill-name {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #896e7e !important;
	white-space: nowrap !important;
}

body.kb-woo-enabled.home .kb-brand-strip--home .kb-brand-pill:hover .kb-brand-pill-name {
	color: #d37a9e !important;
}

/* Be Bold-inspired card and section heading lock (global) */
body.kb-woo-enabled .kb-home-product-group .kb-section-head,
body.kb-woo-enabled .kb-curated-products > h2,
body.kb-woo-enabled .kb-bebold-recommendations .kb-curated-products > h2 {
	text-align: center !important;
}

body.kb-woo-enabled .kb-home-product-group .kb-section-title,
body.kb-woo-enabled .kb-curated-products > h2 {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: clamp(34px, 4.3vw, 64px) !important;
	font-weight: 800 !important;
	line-height: 1.03 !important;
	letter-spacing: -0.015em !important;
	color: #25212a !important;
	margin: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card {
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .kb-card-shell,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .kb-card-shell {
	position: relative !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .woocommerce-LoopProduct-link,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .woocommerce-LoopProduct-link {
	display: block !important;
	background: #f1eef4 !important;
	padding: clamp(16px, 1.8vw, 24px) !important;
	border: 0 !important;
	border-radius: 0 !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .woocommerce-LoopProduct-link img,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .woocommerce-LoopProduct-link img {
	width: 100% !important;
	aspect-ratio: 0.82 / 1 !important;
	object-fit: contain !important;
	object-position: center !important;
	background: transparent !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .kb-card-meta,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .kb-card-meta {
	padding-top: 10px !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .woocommerce-loop-product__title,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .woocommerce-loop-product__title {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.28 !important;
	letter-spacing: 0 !important;
	color: #1f1a23 !important;
	margin: 0 0 4px !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .price,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .price {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: #4e4450 !important;
	margin: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .price del,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .price del {
	font-weight: 600 !important;
	color: #a2a0a6 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .add_to_cart_button,
body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .added_to_cart,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .add_to_cart_button,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .added_to_cart {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.95) !important;
	color: transparent !important;
	font-size: 0 !important;
	box-shadow: none !important;
	z-index: 11 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .add_to_cart_button::before,
body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .added_to_cart::before,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .add_to_cart_button::before,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .added_to_cart::before {
	content: "🛒" !important;
	font-size: 14px !important;
	line-height: 1 !important;
	color: #1f1a22 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card span.onsale,
body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .kb-trending-badge,
body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .kb-new-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card span.onsale,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .kb-trending-badge,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .kb-new-badge {
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	right: auto !important;
	height: 22px !important;
	min-height: 22px !important;
	padding: 0 8px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #121212 !important;
	color: #ffffff !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	box-shadow: none !important;
	z-index: 12 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .kb-trending-badge.kb-trending-badge-offset,
body.kb-woo-enabled .woocommerce ul.products li.product.kb-main-card .kb-new-badge.kb-new-badge-offset,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .kb-trending-badge.kb-trending-badge-offset,
body.kb-woo-enabled .woocommerce-page ul.products li.product.kb-main-card .kb-new-badge.kb-new-badge-offset {
	top: 36px !important;
}

/* Floating side cart drawer */
body.kb-sidecart-open {
	overflow: hidden !important;
}

.kb-sidecart-overlay {
	position: fixed;
	inset: 0;
	z-index: 9998;
	background: rgba(22, 16, 23, 0.44);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.kb-sidecart {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	width: min(430px, 92vw);
	height: 100dvh;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-left: 1px solid #efe3ea;
	box-shadow: -14px 0 34px rgba(45, 31, 43, 0.2);
	transform: translateX(100%);
	transition: transform 0.24s ease;
}

body.kb-sidecart-open .kb-sidecart-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.kb-sidecart-open .kb-sidecart {
	transform: translateX(0);
}

.kb-sidecart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid #efe4ea;
}

.kb-sidecart-header h3 {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #251f29;
}

.kb-sidecart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: #e885a9;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
}

.kb-sidecart-close {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: #f8eff4;
	color: #2d2630;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.kb-sidecart-body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 14px 18px;
}

.kb-sidecart-body .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.kb-sidecart-body .woocommerce-mini-cart-item {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 12px;
	align-items: start;
	padding: 2px 0 10px;
	border-bottom: 1px solid #f1e8ee;
}

.kb-sidecart-body .woocommerce-mini-cart-item img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	background: #f4f0f6;
	border-radius: 8px;
}

.kb-sidecart-body .woocommerce-mini-cart-item a {
	color: #241f28;
	text-decoration: none;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}

.kb-sidecart-body .woocommerce-mini-cart-item .quantity {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	font-weight: 600;
	color: #6f6872;
}

.kb-sidecart-body .woocommerce-mini-cart__total {
	margin: 14px 0 0;
	padding-top: 10px;
	border-top: 1px solid #efe4ea;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #2d2530;
}

.kb-sidecart-body .woocommerce-mini-cart__buttons {
	display: none;
}

.kb-sidecart-footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 14px 18px 18px;
	border-top: 1px solid #efe4ea;
}

.kb-sidecart-btn {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	text-decoration: none;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kb-sidecart-btn-secondary {
	border: 1px solid #e5d8e1;
	background: #ffffff;
	color: #2d2531;
}

.kb-sidecart-btn-primary {
	border: 1px solid #1f1a22;
	background: #1f1a22;
	color: #ffffff;
}

.kb-sidecart-fab {
	position: fixed;
	right: clamp(14px, 2vw, 24px);
	bottom: clamp(14px, 2vw, 24px);
	z-index: 9997;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #1f1a22;
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(36, 25, 34, 0.34);
	cursor: pointer;
}

.kb-sidecart-fab:hover {
	background: #2b2430;
}

.kb-sidecart-fab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.kb-sidecart-fab .kb-cart-count {
	position: absolute;
	top: -5px;
	right: -4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 4px;
	border-radius: 999px;
	background: #f39ab8;
	color: #ffffff;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}

.kb-sidecart-body .woocommerce-mini-cart__empty-message {
	margin: 18px 0;
	color: #675a66;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
}

.kb-sidecart-body .woocommerce-mini-cart-item {
	position: relative;
}

.kb-sidecart-body .woocommerce-mini-cart-item .remove {
	position: absolute;
	top: 0;
	right: 0;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #f6edf3;
	color: #2d2530 !important;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
}

.kb-sidecart-body .woocommerce-mini-cart-item > a:not(.remove) {
	padding-right: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kb-sidecart-body .woocommerce-mini-cart-item .variation,
.kb-sidecart-body .woocommerce-mini-cart-item .wc-item-meta {
	display: none;
}

body.admin-bar .kb-sidecart {
	top: 32px;
	height: calc(100dvh - 32px);
}

@media (max-width: 782px) {
	body.admin-bar .kb-sidecart {
		top: 46px;
		height: calc(100dvh - 46px);
	}
}

@media (max-width: 640px) {
	.kb-sidecart {
		width: 100vw;
		max-width: 100vw;
	}

	.kb-sidecart-fab {
		right: 12px;
		bottom: 12px;
		width: 48px;
		height: 48px;
	}
}

/* Side cart final UI lock (matches requested reference layout) */
body.kb-woo-enabled .kb-sidecart {
	width: min(460px, 96vw) !important;
	background: #ffffff !important;
	border-left: 1px solid #d9dde3 !important;
	box-shadow: -16px 0 40px rgba(27, 31, 37, 0.2) !important;
}

body.kb-woo-enabled .kb-sidecart-shipping {
	padding: 14px 22px 10px !important;
	background: #edf4fb !important;
	border-bottom: 1px solid #dbe4ee !important;
}

body.kb-woo-enabled .kb-sidecart-shipping-msg {
	margin: 0 !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	color: #2f3945 !important;
	text-align: center !important;
}

body.kb-woo-enabled .kb-sidecart-highlight {
	color: #d692ad !important;
	font-weight: 700 !important;
}

body.kb-woo-enabled .kb-sidecart-shipping-track {
	height: 4px !important;
	background: #e4e9f1 !important;
	border-radius: 999px !important;
	margin-top: 10px !important;
	overflow: hidden !important;
}

body.kb-woo-enabled .kb-sidecart-shipping-progress {
	display: block !important;
	height: 100% !important;
	border-radius: 999px !important;
	background: linear-gradient(90deg, #e6a7be 0%, #d487a6 100%) !important;
}

body.kb-woo-enabled .kb-sidecart-header {
	display: grid !important;
	grid-template-columns: auto 1fr auto auto !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 16px 18px !important;
	border-bottom: 1px solid #e5e8ee !important;
}

body.kb-woo-enabled .kb-sidecart-arrow {
	font-size: 44px !important;
	line-height: 1 !important;
	color: #1a2230 !important;
	transform: translateY(-1px) !important;
}

body.kb-woo-enabled .kb-sidecart-header h3 {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: clamp(30px, 3.1vw, 40px) !important;
	font-weight: 800 !important;
	line-height: 1.04 !important;
	letter-spacing: -0.03em !important;
	color: #1f2a39 !important;
	margin: 0 !important;
}

body.kb-woo-enabled .kb-sidecart-review-count {
	min-width: 36px !important;
	height: 36px !important;
	padding: 0 10px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 8px !important;
	background: #edf2f7 !important;
	color: #2b3642 !important;
	font-size: 18px !important;
	font-weight: 700 !important;
}

body.kb-woo-enabled .kb-sidecart-close {
	width: 34px !important;
	height: 34px !important;
	border-radius: 8px !important;
	background: #f4f6fa !important;
	font-size: 24px !important;
}

body.kb-woo-enabled .kb-sidecart-body {
	padding: 18px 22px !important;
}

body.kb-woo-enabled .kb-sidecart-body .woocommerce-mini-cart {
	display: grid !important;
	gap: 12px !important;
}

body.kb-woo-enabled .kb-sidecart-body .woocommerce-mini-cart-item {
	padding: 6px 0 14px !important;
	border-bottom: 1px solid #e6ebf0 !important;
}

body.kb-woo-enabled .kb-sidecart-body .woocommerce-mini-cart-item > a:not(.remove) {
	display: flex !important;
	gap: 14px !important;
	align-items: flex-start !important;
	padding-right: 0 !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.28 !important;
	color: #1177b8 !important;
	text-decoration: none !important;
}

body.kb-woo-enabled .kb-sidecart-body .woocommerce-mini-cart-item img {
	width: 92px !important;
	height: 92px !important;
	flex: 0 0 92px !important;
	border-radius: 10px !important;
	background: #ebe6da !important;
	object-fit: contain !important;
	margin: 0 !important;
}

body.kb-woo-enabled .kb-sidecart-body .woocommerce-mini-cart-item .quantity {
	margin: 6px 0 0 106px !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #1f2631 !important;
}

body.kb-woo-enabled .kb-sidecart-body .woocommerce-mini-cart-item .remove {
	position: static !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	margin: 4px 0 0 106px !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #1479bb !important;
	font-size: 0 !important;
	line-height: 1 !important;
	text-decoration: underline !important;
}

body.kb-woo-enabled .kb-sidecart-body .woocommerce-mini-cart-item .remove::after {
	content: "REMOVE";
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
}

body.kb-woo-enabled .kb-sidecart-discount {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 18px 22px !important;
	border-top: 1px solid #e6ebf0 !important;
	border-bottom: 1px solid #e6ebf0 !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	color: #1f2631 !important;
}

body.kb-woo-enabled .kb-sidecart-discount-icon {
	font-size: 28px !important;
	line-height: 1 !important;
	color: #122861 !important;
	transform: translateY(-2px) !important;
}

body.kb-woo-enabled .kb-sidecart-summary {
	padding: 0 !important;
	border-bottom: 1px solid #e6ebf0 !important;
}

body.kb-woo-enabled .kb-sidecart-summary-row {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 16px 22px !important;
	border-top: 1px solid #e6ebf0 !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
}

body.kb-woo-enabled .kb-sidecart-summary-row span {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #111821 !important;
}

body.kb-woo-enabled .kb-sidecart-summary-row strong {
	font-size: 19px !important;
	font-weight: 800 !important;
	color: #111821 !important;
}

body.kb-woo-enabled .kb-sidecart-footer {
	display: block !important;
	padding: 16px 22px 22px !important;
	border-top: 0 !important;
}

body.kb-woo-enabled .kb-sidecart-btn.kb-sidecart-btn-primary {
	width: 100% !important;
	min-height: 56px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: #d09ab2 !important;
	color: #ffffff !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
}

@media (max-width: 780px) {
	body.kb-woo-enabled .kb-sidecart-header h3 {
		font-size: clamp(28px, 7.2vw, 36px) !important;
	}

	body.kb-woo-enabled .kb-sidecart-arrow {
		font-size: 36px !important;
	}
}

body.kb-woo-enabled .kb-sidecart-body {
	overflow-y: auto !important;
	scrollbar-width: thin !important;
	scrollbar-color: #c9ced8 #eef1f5 !important;
}

body.kb-woo-enabled .kb-sidecart-body::-webkit-scrollbar {
	width: 8px;
}

body.kb-woo-enabled .kb-sidecart-body::-webkit-scrollbar-track {
	background: #eef1f5;
	border-radius: 999px;
}

body.kb-woo-enabled .kb-sidecart-body::-webkit-scrollbar-thumb {
	background: #c9ced8;
	border-radius: 999px;
}

body.kb-woo-enabled .kb-sidecart-body ul,
body.kb-woo-enabled .kb-sidecart-body li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.kb-woo-enabled .kb-sidecart-items {
	display: grid !important;
	gap: 14px !important;
}

body.kb-woo-enabled .kb-sidecart-item {
	display: grid !important;
	grid-template-columns: 78px 1fr !important;
	gap: 12px !important;
	padding: 4px 0 14px !important;
	border-bottom: 1px solid #e6ebf0 !important;
}

body.kb-woo-enabled .kb-sidecart-item-media {
	width: 78px !important;
	height: 78px !important;
}

body.kb-woo-enabled .kb-sidecart-item-media a,
body.kb-woo-enabled .kb-sidecart-item-media img {
	display: block !important;
	width: 78px !important;
	height: 78px !important;
	max-width: 78px !important;
	max-height: 78px !important;
	min-width: 78px !important;
	min-height: 78px !important;
	border-radius: 10px !important;
	object-fit: cover !important;
	background: #f2f4f7 !important;
	overflow: hidden !important;
}

body.kb-woo-enabled .kb-sidecart-item-body {
	min-width: 0 !important;
	display: grid !important;
	gap: 6px !important;
	align-content: start !important;
}

body.kb-woo-enabled .kb-sidecart-item-title {
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #146aa4 !important;
	text-decoration: none !important;
}

body.kb-woo-enabled .kb-sidecart-item-title:hover {
	color: #0f5888 !important;
}

body.kb-woo-enabled .kb-sidecart-item-meta {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px !important;
}

body.kb-woo-enabled .kb-sidecart-item-qty {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #616c79 !important;
}

body.kb-woo-enabled .kb-sidecart-item-price,
body.kb-woo-enabled .kb-sidecart-item-price .amount {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	color: #111821 !important;
}

body.kb-woo-enabled .kb-sidecart-item-remove {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #1479bb !important;
	text-decoration: underline !important;
	width: fit-content !important;
}

body.kb-woo-enabled .kb-sidecart-empty {
	margin: 18px 0 !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 14px !important;
	color: #5e6873 !important;
}

@media (max-width: 640px) {
	body.kb-woo-enabled .kb-sidecart-item {
		grid-template-columns: 70px 1fr !important;
	}

	body.kb-woo-enabled .kb-sidecart-item-media,
	body.kb-woo-enabled .kb-sidecart-item-media a,
	body.kb-woo-enabled .kb-sidecart-item-media img {
		width: 70px !important;
		height: 70px !important;
		max-width: 70px !important;
		max-height: 70px !important;
		min-width: 70px !important;
		min-height: 70px !important;
	}

	body.kb-woo-enabled .kb-sidecart-item-title {
		font-size: 14px !important;
	}
}

.kb-cart-toast {
	position: fixed;
	right: 22px;
	bottom: 86px;
	z-index: 10005;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: min(88vw, 360px);
	padding: 11px 14px;
	border-radius: 12px;
	background: rgba(25, 30, 38, 0.96);
	color: #ffffff;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	box-shadow: 0 12px 30px rgba(15, 22, 34, 0.34);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.kb-cart-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.kb-cart-toast-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	border-radius: 999px;
	background: #37b26d;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
}

.kb-cart-toast-text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 640px) {
	.kb-cart-toast {
		left: 12px;
		right: 12px;
		bottom: 74px;
		max-width: none;
	}
}

/* Cart page UI polish (classic shortcode cart + Woo blocks cart) */
body.kb-woo-enabled.woocommerce-cart .kb-woo-content {
	padding-top: clamp(20px, 3vw, 34px);
	padding-bottom: clamp(30px, 4vw, 48px);
}

body.kb-woo-enabled.woocommerce-cart .woocommerce-notices-wrapper {
	margin-bottom: 16px;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart {
	border: 1px solid #ead8e3 !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	background: #ffffff !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart th {
	padding: 15px 14px !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	color: #745a69 !important;
	background: #fcf6fa !important;
	border-bottom: 1px solid #efdeea !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart td {
	padding: 14px !important;
	vertical-align: middle !important;
	border-top: 1px solid #f2e5ed !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart td.product-remove a.remove {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 30px !important;
	height: 30px !important;
	border-radius: 999px !important;
	background: #f7ebf2 !important;
	color: #69495b !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart td.product-remove a.remove:hover {
	background: #e786a2 !important;
	color: #ffffff !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart td.product-thumbnail img {
	width: 84px !important;
	height: 84px !important;
	object-fit: cover !important;
	border-radius: 12px !important;
	background: #f4edf3 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart td.product-name a {
	color: #2f1d2a !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	text-decoration: none !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart td.product-name a:hover {
	color: #d17393 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart .quantity .qty {
	width: 78px !important;
	height: 40px !important;
	border: 1px solid #e7d6e2 !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #2f2330 !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	padding: 0 10px !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart .actions {
	background: #fcf8fb !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart .coupon {
	display: flex !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart .coupon .input-text {
	width: min(260px, 100%) !important;
	height: 42px !important;
	border: 1px solid #e5d2df !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #3c2a36 !important;
	padding: 0 14px !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 14px !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce a.button,
body.kb-woo-enabled.woocommerce-cart .woocommerce button.button,
body.kb-woo-enabled.woocommerce-cart .woocommerce input.button,
body.kb-woo-enabled.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	padding: 0 20px !important;
	border-radius: 999px !important;
	border: 1px solid #e4ceda !important;
	background: #ffffff !important;
	color: #3b2733 !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.03em !important;
	text-transform: uppercase !important;
	line-height: 1 !important;
	box-shadow: none !important;
	transition: all 0.2s ease !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce a.button:hover,
body.kb-woo-enabled.woocommerce-cart .woocommerce button.button:hover,
body.kb-woo-enabled.woocommerce-cart .woocommerce input.button:hover {
	background: #f8edf4 !important;
	border-color: #ddb8cb !important;
	color: #2a1d27 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button,
body.kb-woo-enabled.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
	background: linear-gradient(135deg, #e88faf 0%, #d87698 100%) !important;
	border-color: #d67798 !important;
	color: #ffffff !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
	float: none !important;
	width: 100% !important;
	max-width: 520px !important;
	margin-left: auto !important;
	background: #ffffff !important;
	border: 1px solid #ead8e4 !important;
	border-radius: 18px !important;
	padding: 18px 20px !important;
	box-shadow: 0 10px 26px rgba(73, 37, 57, 0.08) !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
	margin: 0 0 12px !important;
	font-family: "Playfair Display", "Cormorant Garamond", serif !important;
	font-size: clamp(24px, 2.1vw, 32px) !important;
	line-height: 1.1 !important;
	color: #2f1e2a !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .shop_table {
	border: 0 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .shop_table th,
body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .shop_table td {
	padding: 10px 0 !important;
	border-top: 1px solid #f0e1ea !important;
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .shop_table th {
	color: #5d4453 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .shop_table td {
	color: #2e2029 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .order-total th,
body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .order-total td {
	font-size: 16px !important;
	color: #241822 !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-empty.woocommerce-info {
	padding: 14px 16px !important;
}

/* Woo blocks cart page */
body.kb-woo-enabled.woocommerce-cart .wc-block-cart,
body.kb-woo-enabled.woocommerce-cart .wp-block-woocommerce-cart {
	font-family: "Manrope", "Plus Jakarta Sans", sans-serif !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar,
body.kb-woo-enabled.woocommerce-cart .wc-block-cart-items,
body.kb-woo-enabled.woocommerce-cart .wc-block-components-totals-wrapper {
	background: #ffffff !important;
	border: 1px solid #ead9e4 !important;
	border-radius: 18px !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-cart-items {
	padding: 10px 14px !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-cart-items__row {
	border-top: 1px solid #f1e4ec !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-components-product-image img {
	border-radius: 10px !important;
	background: #f3edf3 !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-components-product-name {
	color: #2f1f2b !important;
	font-size: 15px !important;
	font-weight: 700 !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-components-product-name:hover {
	color: #d06e8f !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-components-quantity-selector {
	border: 1px solid #e4d1dd !important;
	border-radius: 999px !important;
	overflow: hidden !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-components-button,
body.kb-woo-enabled.woocommerce-cart .wc-block-cart__submit-button,
body.kb-woo-enabled.woocommerce-cart .wc-block-components-totals-coupon__button {
	min-height: 44px !important;
	border-radius: 999px !important;
	border: 1px solid #e3ccda !important;
	background: #ffffff !important;
	color: #362331 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.03em !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-cart__submit-button,
body.kb-woo-enabled.woocommerce-cart .wc-block-cart__submit-button:hover,
body.kb-woo-enabled.woocommerce-cart .wc-block-components-checkout-place-order-button,
body.kb-woo-enabled.woocommerce-cart .wc-block-components-checkout-place-order-button:hover {
	background: linear-gradient(135deg, #e88faf 0%, #d87698 100%) !important;
	border-color: #d87799 !important;
	color: #ffffff !important;
}

@media (max-width: 900px) {
	body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart td.product-thumbnail img {
		width: 70px !important;
		height: 70px !important;
	}

	body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart .coupon {
		margin-bottom: 10px !important;
	}

	body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart .coupon .input-text {
		width: 100% !important;
	}

	body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart .actions .button {
		width: 100% !important;
	}
}

@keyframes kb-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Global add-to-cart loading state (cards + product detail) */
body.kb-woo-enabled .woocommerce ul.products li.product .button.kb-is-loading,
body.kb-woo-enabled .woocommerce ul.products li.product .add_to_cart_button.kb-is-loading,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_simple.kb-is-loading,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_variable.kb-is-loading,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_grouped.kb-is-loading,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_external.kb-is-loading,
body.kb-woo-enabled .woocommerce ul.products li.product .wc-block-components-product-button__button.kb-is-loading,
body.kb-woo-enabled .woocommerce ul.products li.product .wp-block-button__link.kb-is-loading {
	pointer-events: none !important;
	cursor: wait !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button.kb-is-loading::before,
body.kb-woo-enabled .woocommerce ul.products li.product .add_to_cart_button.kb-is-loading::before,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_simple.kb-is-loading::before,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_variable.kb-is-loading::before,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_grouped.kb-is-loading::before,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_external.kb-is-loading::before,
body.kb-woo-enabled .woocommerce ul.products li.product .wc-block-components-product-button__button.kb-is-loading::before,
body.kb-woo-enabled .woocommerce ul.products li.product .wp-block-button__link.kb-is-loading::before {
	opacity: 0 !important;
}

body.kb-woo-enabled .woocommerce ul.products li.product .button.kb-is-loading::after,
body.kb-woo-enabled .woocommerce ul.products li.product .add_to_cart_button.kb-is-loading::after,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_simple.kb-is-loading::after,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_variable.kb-is-loading::after,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_grouped.kb-is-loading::after,
body.kb-woo-enabled .woocommerce ul.products li.product .product_type_external.kb-is-loading::after,
body.kb-woo-enabled .woocommerce ul.products li.product .wc-block-components-product-button__button.kb-is-loading::after,
body.kb-woo-enabled .woocommerce ul.products li.product .wp-block-button__link.kb-is-loading::after {
	content: "" !important;
	display: block !important;
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	width: 14px !important;
	height: 14px !important;
	margin-left: -7px !important;
	margin-top: -7px !important;
	border: 2px solid rgba(46, 34, 42, 0.26) !important;
	border-top-color: #231923 !important;
	border-radius: 999px !important;
	animation: kb-spin 0.72s linear infinite !important;
}

body.kb-woo-enabled.single-product div.product form.cart .single_add_to_cart_button.kb-is-loading {
	position: relative !important;
	pointer-events: none !important;
	cursor: wait !important;
	color: transparent !important;
}

body.kb-woo-enabled.single-product div.product form.cart .single_add_to_cart_button.kb-is-loading::after {
	content: "" !important;
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	width: 16px !important;
	height: 16px !important;
	margin-left: -8px !important;
	margin-top: -8px !important;
	border: 2px solid rgba(255, 255, 255, 0.4) !important;
	border-top-color: #ffffff !important;
	border-radius: 999px !important;
	animation: kb-spin 0.72s linear infinite !important;
}

/* Cart spacing/border refinement */
body.kb-woo-enabled.woocommerce-cart .woocommerce {
	display: block !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce form.woocommerce-cart-form {
	margin: 0 !important;
	padding: 16px !important;
	background: #ffffff !important;
	border: 1px solid #e9d8e3 !important;
	border-radius: 20px !important;
	box-shadow: 0 10px 24px rgba(73, 37, 57, 0.06) !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart {
	margin: 0 !important;
	border-radius: 14px !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals {
	margin-top: 0 !important;
	padding: 2px !important;
}

body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
	max-width: 100% !important;
}

@media (min-width: 1024px) {
	body.kb-woo-enabled.woocommerce-cart .woocommerce {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(320px, 380px) !important;
		column-gap: 18px !important;
		row-gap: 18px !important;
		align-items: start !important;
	}

	body.kb-woo-enabled.woocommerce-cart .woocommerce form.woocommerce-cart-form {
		grid-column: 1 !important;
		width: auto !important;
		float: none !important;
	}

	body.kb-woo-enabled.woocommerce-cart .woocommerce .cart-collaterals {
		grid-column: 2 !important;
		grid-row: 1 !important;
		width: auto !important;
		float: none !important;
		padding: 0 !important;
	}
}

body.kb-woo-enabled.woocommerce-cart .wc-block-cart {
	display: block !important;
}

body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar-layout {
	gap: 18px !important;
}

@media (min-width: 1024px) {
	body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar-layout,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart .wc-block-components-sidebar-layout {
		display: flex !important;
		flex-wrap: nowrap !important;
		align-items: flex-start !important;
		gap: 20px !important;
	}

	body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart__main,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart .wc-block-cart__main {
		flex: 1 1 auto !important;
		min-width: 0 !important;
		max-width: none !important;
		width: auto !important;
	}

	body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart__sidebar,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar {
		flex: 0 0 360px !important;
		max-width: 360px !important;
		width: 360px !important;
		align-self: flex-start !important;
		margin-top: 0 !important;
	}
}

@media (max-width: 1023px) {
	body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar-layout,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart .wc-block-components-sidebar-layout {
		display: block !important;
	}

	body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart__sidebar,
	body.kb-woo-enabled.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar {
		max-width: 100% !important;
		width: 100% !important;
	}
}

body.kb-woo-enabled.woocommerce-cart .wc-block-cart-items,
body.kb-woo-enabled.woocommerce-cart .wc-block-components-sidebar,
body.kb-woo-enabled.woocommerce-cart .wc-block-components-totals-wrapper {
	padding: 14px !important;
}

@media (max-width: 900px) {
	body.kb-woo-enabled.woocommerce-cart .woocommerce form.woocommerce-cart-form {
		padding: 12px !important;
		border-radius: 16px !important;
	}

	body.kb-woo-enabled.woocommerce-cart .woocommerce table.shop_table.cart {
		border-radius: 12px !important;
	}
}

/* Top strip alignment + WhatsApp display */
.kb-topbar .kb-topbar-inner {
	display: grid !important;
	grid-template-columns: minmax(220px, 1fr) minmax(240px, 1fr) auto !important;
	align-items: center !important;
	column-gap: 18px !important;
	row-gap: 8px !important;
	padding: 9px 0 !important;
}

.kb-topbar .kb-topbar-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kb-topbar .kb-topbar-item-whatsapp {
	justify-content: flex-end;
	font-weight: 700;
	color: #5c3649;
}

.kb-topbar .kb-topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	text-decoration: none;
	color: inherit;
}

.kb-topbar .kb-topbar-link-whatsapp:hover {
	color: #3f2532;
}

.kb-topbar .kb-topbar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #25d366;
	color: #ffffff;
	font-size: 11px;
	flex: 0 0 20px;
	line-height: 1;
}

.kb-topbar .kb-topbar-contact-text {
	display: inline-block;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 1320px) {
	.kb-topbar .kb-topbar-inner {
		grid-template-columns: 1fr 1fr !important;
	}

	.kb-topbar .kb-topbar-item-whatsapp {
		grid-column: 1 / -1;
		justify-content: center;
	}
}

@media (max-width: 1080px) {
	.kb-topbar .kb-topbar-inner {
		grid-template-columns: 1fr !important;
	}

	.kb-topbar .kb-topbar-item,
	.kb-topbar .kb-topbar-item-whatsapp {
		justify-content: center;
	}
}
