/* ── Base ── */
:root {
	--kfpb-primary: #015BD5;
	--kfpb-primary-dark: #0149aa;
	--kfpb-accent: #0f6b5c;
	--kfpb-text: #111827;
	--kfpb-muted: #6b7280;
	--kfpb-border: #e5e7eb;
	--kfpb-bg-light: #f8faff;
	--kfpb-radius: 10px;
}
.kfpb-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}
.kfpb-landing {
	font-family: inherit;
	color: var(--kfpb-text);
}

/* ── Buttons ── */
.kfpb-button {
	background: var(--kfpb-primary);
	border: none;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 600;
	min-height: 44px;
	padding: 10px 22px;
	text-decoration: none;
	transition: background .18s;
}
.kfpb-button:hover { background: var(--kfpb-primary-dark); color: #fff; }
.kfpb-secondary {
	background: #fff;
	border: 2px solid var(--kfpb-primary);
	color: var(--kfpb-primary);
}
.kfpb-secondary:hover { background: var(--kfpb-bg-light); }

/* ── Hero ── */
.kfpb-hero {
	background: var(--kfpb-bg-light);
	padding: 72px 0 56px;
}
.kfpb-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.kfpb-hero-h1 {
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.1;
	margin: 0 0 16px;
}
.kfpb-hero-line1 { display: block; color: var(--kfpb-text); }
.kfpb-hero-line2 { display: block; color: var(--kfpb-primary); font-weight: 800; }
.kfpb-hero-tagline {
	color: var(--kfpb-muted);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 480px;
}
.kfpb-hero-cta { margin-bottom: 32px; }
.kfpb-hero-perks {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.kfpb-perk {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.kfpb-perk-icon {
	background: #e8eeff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--kfpb-primary);
}
.kfpb-perk strong { display: block; font-size: 14px; }
.kfpb-perk span { color: var(--kfpb-muted); font-size: 13px; }
.kfpb-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
}
.kfpb-hero-img-wrap {
	border-radius: 50%;
	overflow: hidden;
	width: 420px;
	height: 420px;
	background: #dce8ff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kfpb-hero-img-placeholder { opacity: .4; }
.kfpb-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kfpb-hero-badge-bubble {
	position: absolute;
	top: 24px;
	right: 0;
	background: #fff;
	border: 2px solid var(--kfpb-primary);
	border-radius: 50%;
	width: 110px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--kfpb-primary);
	line-height: 1.3;
	padding: 10px;
}

/* ── Category Scroll ── */
.kfpb-cat-scroll {
	border-top: 1px solid var(--kfpb-border);
	border-bottom: 1px solid var(--kfpb-border);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.kfpb-cat-scroll::-webkit-scrollbar { display: none; }
.kfpb-cat-track {
	display: flex;
	gap: 8px;
	padding: 18px 20px;
	justify-content: center;
	flex-wrap: wrap;
}
.kfpb-cat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--kfpb-muted);
	padding: 8px 12px;
	border-radius: var(--kfpb-radius);
	transition: background .15s;
	min-width: 80px;
}
.kfpb-cat-item:hover { background: var(--kfpb-bg-light); color: var(--kfpb-text); }
.kfpb-cat-item.is-active { color: var(--kfpb-primary); }
.kfpb-cat-item.is-active .kfpb-cat-img-wrap { border-color: var(--kfpb-primary); }
.kfpb-cat-img-wrap {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--kfpb-border);
	background: var(--kfpb-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.kfpb-cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kfpb-cat-letter {
	font-size: 22px;
	font-weight: 700;
	color: var(--kfpb-primary);
}
.kfpb-cat-all { color: var(--kfpb-primary); }
.kfpb-cat-name { font-size: 12px; font-weight: 600; text-align: center; line-height: 1.2; }

/* ── Featured Bundles ── */
.kfpb-featured { padding: 60px 0; }
.kfpb-section-hd {
	text-align: center;
	margin-bottom: 36px;
}
.kfpb-eyebrow {
	display: block;
	color: var(--kfpb-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.kfpb-section-hd h2 {
	font-size: clamp(24px, 3.5vw, 36px);
	margin: 0 0 10px;
}
.kfpb-section-hd p { color: var(--kfpb-muted); margin: 0; }
.kfpb-bundle-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}
.kfpb-bcard {
	border: 1px solid var(--kfpb-border);
	border-radius: var(--kfpb-radius);
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s;
}
.kfpb-bcard:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.kfpb-bcard-img { position: relative; }
.kfpb-bcard-img a { display: block; }
.kfpb-bcard-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.kfpb-save-chip {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--kfpb-primary);
	color: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	z-index: 1;
}
.kfpb-bcard-body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.kfpb-bcard-name { margin: 0; font-size: 16px; }
.kfpb-bcard-name a { color: var(--kfpb-text); text-decoration: none; }
.kfpb-bcard-name a:hover { color: var(--kfpb-primary); }
.kfpb-bcard-desc { color: var(--kfpb-muted); font-size: 13px; margin: 0; }
.kfpb-bcard-footer {
	margin-top: auto;
	padding-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.kfpb-bcard-prices { display: flex; align-items: baseline; gap: 8px; }
.kfpb-bcard-prices strong { font-size: 18px; color: var(--kfpb-text); }
.kfpb-bcard-prices del { color: var(--kfpb-muted); font-size: 13px; }
.kfpb-bcard-footer .kfpb-button { font-size: 13px; padding: 8px 14px; min-height: 36px; }
.kfpb-no-bundles { text-align: center; color: var(--kfpb-muted); padding: 40px 0; }
.kfpb-placeholder {
	aspect-ratio: 4/3;
	background: var(--kfpb-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--kfpb-primary);
	font-weight: 700;
}

/* ── Savings Tiers Banner ── */
.kfpb-tiers-banner {
	background: var(--kfpb-primary);
	padding: 48px 0;
	color: #fff;
}
.kfpb-tiers-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}
.kfpb-tiers-msg {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 1;
	min-width: 240px;
}
.kfpb-tiers-icon {
	background: rgba(255,255,255,.15);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.kfpb-tiers-headline { display: block; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.kfpb-tiers-msg p { margin: 0; font-size: 14px; opacity: .85; }
.kfpb-tiers-bubbles { display: flex; gap: 12px; flex-wrap: wrap; }
.kfpb-tier-bubble {
	background: rgba(255,255,255,.18);
	border-radius: 50%;
	width: 90px;
	height: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	text-align: center;
}
.kfpb-tier-label { font-size: 13px; opacity: .9; }
.kfpb-tier-savings { font-size: 15px; font-weight: 800; }
.kfpb-tier-bubble--featured {
	width: 120px;
	height: 120px;
	background: rgba(255,255,255,.28);
	border: 2px solid rgba(255,255,255,.5);
}
.kfpb-tier-bubble--featured .kfpb-tier-label { font-size: 15px; }
.kfpb-tier-bubble--featured .kfpb-tier-savings { font-size: 20px; }
.kfpb-tiers-cta {
	background: #fff;
	color: var(--kfpb-primary);
	white-space: nowrap;
}
.kfpb-tiers-cta:hover { background: var(--kfpb-bg-light); color: var(--kfpb-primary); }

/* ── Why Section ── */
.kfpb-why { padding: 64px 0; text-align: center; }
.kfpb-why-h2 { font-size: clamp(22px, 3vw, 32px); margin: 0 0 36px; }
.kfpb-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}
.kfpb-why-card { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.kfpb-why-icon {
	background: var(--kfpb-bg-light);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--kfpb-primary);
}
.kfpb-why-card strong { font-size: 16px; }
.kfpb-why-card p { color: var(--kfpb-muted); font-size: 13px; margin: 0; }

/* ── Footer Banner ── */
.kfpb-footer-bar {
	background: var(--kfpb-text);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 40px;
	flex-wrap: wrap;
}
.kfpb-footer-bar p { margin: 0; font-size: 15px; font-weight: 500; }
.kfpb-footer-bar .kfpb-button { background: var(--kfpb-primary); }
.kfpb-footer-bar .kfpb-button:hover { background: var(--kfpb-primary-dark); }

/* ── Builder section ── */
.kfpb-builder-section { padding: 48px 0; }

/* ══════════════ BUNDLE DETAIL PAGE ══════════════ */
.kfpb-detail-page { padding: 24px 0 60px; }

/* Breadcrumb */
.kfpb-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 13px;
	color: var(--kfpb-muted);
	margin-bottom: 24px;
}
.kfpb-breadcrumb a {
	color: var(--kfpb-muted);
	text-decoration: none;
}
.kfpb-breadcrumb a:hover { color: var(--kfpb-primary); text-decoration: underline; }
.kfpb-breadcrumb-sep { color: #d1d5db; }
.kfpb-breadcrumb-current { color: var(--kfpb-text); font-weight: 500; }

/* Detail layout */
.kfpb-detail {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 40px;
	align-items: start;
}

/* Carousel */
.kfpb-carousel-main { margin-bottom: 12px; }
.kfpb-carousel-main img { width: 100%; height: auto; display: block; border-radius: 8px; }
.kfpb-carousel-main .kfpb-placeholder { aspect-ratio: 4/3; border-radius: 8px; }
.kfpb-gallery { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.kfpb-gallery-thumb {
	background: none;
	border: 2px solid transparent;
	padding: 2px;
	cursor: pointer;
	border-radius: 6px;
	display: inline-block;
}
.kfpb-gallery-thumb img { width: 72px; height: 72px; object-fit: cover; display: block; border-radius: 4px; }
.kfpb-gallery-thumb:hover, .kfpb-gallery-thumb.is-active { border-color: var(--kfpb-primary); }

/* Badge */
.kfpb-badge {
	display: inline-block;
	background: #fef3c7;
	color: #92400e;
	border-radius: 999px;
	padding: 5px 14px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
}

/* Title & category */
.kfpb-detail-title { font-size: clamp(22px, 3vw, 32px); margin: 8px 0 4px; }
.kfpb-detail-category { color: var(--kfpb-muted); font-size: 14px; margin: 0 0 16px; }

/* Price panel */
.kfpb-price-panel {
	border: 1px solid var(--kfpb-border);
	border-radius: 8px;
	padding: 16px 18px;
	margin: 18px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.kfpb-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.kfpb-price-label { color: var(--kfpb-muted); font-size: 14px; }
.kfpb-price-value { font-size: 26px; color: var(--kfpb-text); }
.kfpb-price-orig { font-size: 16px; color: var(--kfpb-muted); }
.kfpb-price-savings { font-size: 22px; color: #059669; }

/* Includes list */
.kfpb-includes-heading { font-size: 20px; margin: 20px 0 12px; }
.kfpb-products { list-style: none; padding: 0; margin: 0 0 20px; }
.kfpb-product-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--kfpb-border);
}
.kfpb-product-item:first-child { border-top: 1px solid var(--kfpb-border); }
.kfpb-product-link {
	color: var(--kfpb-text);
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	flex: 1;
}
.kfpb-product-link:hover { color: var(--kfpb-primary); text-decoration: underline; }
.kfpb-product-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--kfpb-muted);
	font-size: 13px;
	white-space: nowrap;
}
.kfpb-product-price { color: var(--kfpb-text); font-weight: 600; display: flex; align-items: baseline; gap: 5px; }
.kfpb-product-regular { color: var(--kfpb-muted); font-weight: 400; font-size: 12px; text-decoration: line-through; }
.kfpb-product-sale { color: #059669; font-weight: 700; text-decoration: none; font-style: normal; }

/* Actions */
.kfpb-detail-actions { margin: 20px 0; }
.kfpb-btn-cart {
	width: 100%;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	min-height: 52px;
	border-radius: 8px;
}

/* Share buttons */
.kfpb-share {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 4px;
}
.kfpb-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1.5px solid var(--kfpb-border);
	border-radius: 8px;
	color: var(--kfpb-text);
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	min-height: 40px;
	padding: 8px 16px;
	text-decoration: none;
	transition: border-color .15s, color .15s;
}
.kfpb-share-btn:hover { border-color: var(--kfpb-primary); color: var(--kfpb-primary); }
.kfpb-copy-link { letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }

.kfpb-unavailable { border-left: 4px solid #b3261e; background: #fff1f0; padding: 10px 14px; border-radius: 4px; margin: 16px 0; }

/* ══════════════ BUNDLE BUILDER ══════════════ */
.kfpb-builder-split {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--kfpb-border);
}
.kfpb-builder-split h2 { margin: 0 0 20px; font-size: clamp(20px, 2.5vw, 28px); }
.kfpb-builder-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

/* Left column */
.kfpb-builder-left { display: flex; flex-direction: column; gap: 16px; }
.kfpb-builder-search-wrap { position: relative; }
.kfpb-builder-search-wrap input[type="search"] {
	width: 100%;
	box-sizing: border-box;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid var(--kfpb-border);
	border-radius: 8px;
	font-size: 14px;
}
.kfpb-builder-results {
	position: absolute;
	top: calc(100% + 4px);
	left: 0; right: 0;
	background: #fff;
	border: 1px solid var(--kfpb-border);
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0,0,0,.1);
	z-index: 100;
	max-height: 260px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}
.kfpb-builder-result {
	background: none;
	border: none;
	border-bottom: 1px solid var(--kfpb-border);
	color: var(--kfpb-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	font-size: 14px;
	text-align: left;
}
.kfpb-builder-result:last-child { border-bottom: none; }
.kfpb-builder-result:hover { background: var(--kfpb-bg-light); }
.kfpb-result-price { color: var(--kfpb-muted); font-size: 13px; margin-left: auto; white-space: nowrap; }
.kfpb-sr-regular { color: var(--kfpb-muted); font-weight: 400; font-size: 12px; text-decoration: line-through; }
.kfpb-sr-sale { color: #059669; font-weight: 700; }
.kfpb-builder-qty-row {
	display: flex;
	align-items: center;
	gap: 10px;
}
.kfpb-builder-qty-row label { font-size: 13px; font-weight: 600; color: var(--kfpb-muted); white-space: nowrap; }
.kfpb-builder-qty-row input[type="number"] {
	width: 64px;
	min-height: 40px;
	padding: 7px 10px;
	border: 1px solid var(--kfpb-border);
	border-radius: 8px;
	font-size: 14px;
}
.kfpb-builder-qty-row .kfpb-button { flex: 1; justify-content: center; }
.kfpb-builder-suggestions-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--kfpb-muted); margin: 0 0 8px; }
.kfpb-suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.kfpb-suggestion {
	background: #fff;
	border: 1px solid var(--kfpb-border);
	border-radius: 999px;
	color: var(--kfpb-text);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 5px 14px;
	font-size: 13px;
	transition: border-color .15s, color .15s;
}
.kfpb-suggestion:hover { border-color: var(--kfpb-primary); color: var(--kfpb-primary); }

/* Right column */
.kfpb-builder-right {
	background: var(--kfpb-bg-light);
	border: 1px solid var(--kfpb-border);
	border-radius: var(--kfpb-radius);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.kfpb-builder-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.kfpb-bitem {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--kfpb-border);
}
.kfpb-bitem:first-child { border-top: 1px solid var(--kfpb-border); }
.kfpb-builder-thumb {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border: 1px solid var(--kfpb-border);
	border-radius: 6px;
	flex-shrink: 0;
}
.kfpb-bitem-info { flex: 1; min-width: 0; }
.kfpb-bitem-name {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--kfpb-text);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.kfpb-bitem-name:hover { color: var(--kfpb-primary); }
.kfpb-bitem-price { font-size: 12px; color: var(--kfpb-muted); }
.kfpb-bitem-line { font-size: 14px; white-space: nowrap; }
.kfpb-builder-remove {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--kfpb-muted);
	padding: 4px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	transition: color .15s;
}
.kfpb-builder-remove:hover { color: #b3261e; }
.kfpb-builder-empty { color: var(--kfpb-muted); font-size: 14px; padding: 12px 0; text-align: center; }

/* Totals */
.kfpb-builder-totals {
	border-top: 2px solid var(--kfpb-border);
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.kfpb-btotal-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 14px;
	color: var(--kfpb-muted);
}
.kfpb-btotal-savings .kfpb-savings-green { color: #059669; font-weight: 600; }
.kfpb-btotal-final { border-top: 1px solid var(--kfpb-border); padding-top: 8px; margin-top: 4px; }
.kfpb-btotal-final strong { font-size: 18px; color: var(--kfpb-text); }
.kfpb-builder-min-note { font-size: 12px; color: var(--kfpb-muted); margin: 4px 0 0; }

/* Save form */
.kfpb-builder-save-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 1px solid var(--kfpb-border);
	padding-top: 14px;
}
.kfpb-builder-save-form input {
	width: 100%;
	box-sizing: border-box;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid var(--kfpb-border);
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
}
.kfpb-btn-save-bundle { width: 100%; justify-content: center; }

/* Post-save actions */
.kfpb-builder-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 1px solid var(--kfpb-border);
	padding-top: 14px;
}
.kfpb-builder-actions[hidden] { display: none; }
.kfpb-btn-cart { width: 100%; justify-content: center; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.kfpb-builder-share { display: flex; flex-wrap: wrap; gap: 8px; }
.kfpb-builder-saved-msg { color: #059669; font-weight: 600; margin: 0; }
.kfpb-builder-message { font-size: 13px; }

/* ══════════════ MY BUNDLES ══════════════ */
.kfpb-my-bundles {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 2px solid var(--kfpb-border);
}
.kfpb-myb-heading {
	font-size: clamp(18px, 2.5vw, 24px);
	margin: 0 0 20px;
}
.kfpb-myb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.kfpb-myb-card {
	background: #fff;
	border: 1px solid var(--kfpb-border);
	border-radius: var(--kfpb-radius);
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: box-shadow .2s;
}
.kfpb-myb-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.kfpb-myb-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
}
.kfpb-myb-name { font-size: 15px; font-weight: 700; color: var(--kfpb-text); }
.kfpb-myb-total { font-size: 16px; font-weight: 700; color: var(--kfpb-primary); white-space: nowrap; }
.kfpb-myb-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	color: var(--kfpb-muted);
	border-top: 1px solid var(--kfpb-border);
	padding-top: 10px;
}
.kfpb-myb-items li { display: flex; justify-content: space-between; }
.kfpb-myb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 4px;
	border-top: 1px solid var(--kfpb-border);
}
.kfpb-myb-actions .kfpb-button { flex: 1; justify-content: center; font-size: 13px; min-height: 38px; padding: 8px 14px; }
.kfpb-myb-loading, .kfpb-myb-empty { color: var(--kfpb-muted); font-size: 14px; padding: 8px 0; }

/* ══════════════ FILTERS (category pages) ══════════════ */
.kfpb-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.kfpb-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.kfpb-filters a {
	background: var(--kfpb-bg-light);
	border: 1px solid var(--kfpb-border);
	border-radius: 999px;
	color: var(--kfpb-text);
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 6px 16px;
	text-decoration: none;
	font-size: 13px;
}
.kfpb-filters a.is-active { background: var(--kfpb-primary); border-color: var(--kfpb-primary); color: #fff; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 860px) {
	.kfpb-hero-inner { grid-template-columns: 1fr; }
	.kfpb-hero-visual { order: -1; }
	.kfpb-hero-img-wrap { width: 280px; height: 280px; }
	.kfpb-detail { grid-template-columns: 1fr; }
	.kfpb-tiers-inner { flex-direction: column; align-items: flex-start; }
	.kfpb-footer-bar { flex-direction: column; text-align: center; }
	.kfpb-btn-cart { width: 100%; }
	.kfpb-builder-cols { grid-template-columns: 1fr; }
	.kfpb-builder-right { order: -1; }

	/* ── Bundle grid → list view on tablet/mobile ── */
	.kfpb-bundle-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.kfpb-bcard {
		flex-direction: row;
		align-items: stretch;
		border-radius: 8px;
	}
	.kfpb-bcard-img {
		width: 110px;
		flex-shrink: 0;
	}
	.kfpb-bcard-img a { height: 100%; display: flex; }
	.kfpb-bcard-img img {
		aspect-ratio: unset;
		height: 100%;
		width: 110px;
		object-fit: cover;
	}
	.kfpb-placeholder { aspect-ratio: unset; height: 100%; width: 110px; }
	.kfpb-bcard-body { padding: 12px; gap: 4px; }
	.kfpb-bcard-name { font-size: 14px; }
	.kfpb-bcard-desc { display: none; }
	.kfpb-bcard-footer { padding-top: 8px; }
	.kfpb-bcard-prices strong { font-size: 15px; }
	.kfpb-bcard-footer .kfpb-button { font-size: 12px; padding: 6px 12px; min-height: 32px; }

	/* ── My Bundles grid → list view ── */
	.kfpb-myb-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}
@media (max-width: 540px) {
	.kfpb-hero { padding: 40px 0 32px; }
	.kfpb-tiers-bubbles { justify-content: center; width: 100%; }
	.kfpb-why-grid { grid-template-columns: 1fr 1fr; }
	.kfpb-wrap { padding: 0 8px; }
	.kfpb-footer-bar { padding: 16px 8px; }
}
