.bkf-pb {
	background: #f3f6fb;
	padding: 24px;
	border-radius: 12px;
}

.bkf-pb__wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

.bkf-pb__media {
	display: none; /* skryje hlavní obrázek vlevo */
}

.bkf-pb__title {
	display: none;
}

.bkf-pb__price {
	display: none;
}

.bkf-pb__desc {
	display: none;
}

.bkf-pb__sections {
	margin-top: 16px;
}

.bkf-pb__section {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bkf-pb__section-toggle {
	width: 100%;
	padding: 14px 16px;
	border: 0;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
}

.bkf-pb__section-body {
	padding: 0 16px 16px;
}

.bkf-pb__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 10px;
}

.bkf-pb__item {
	display: grid;
	grid-template-columns: 26px 64px 1fr;
	align-items: center;
	gap: 8px;
	border: 1px solid #dfe6ef;
	border-radius: 8px;
	padding: 10px;
	cursor: pointer;
	background: #fafbff;
}

.bkf-pb__item input {
	margin: 0;
}

.bkf-pb__item-media img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.bkf-pb__item-title {
	display: block;
	font-weight: 600;
}

.bkf-pb__item-price {
	display: block;
	color: #4c5567;
	font-size: 13px;
}

.bkf-pb__item-action {
	margin-left: auto;
	padding: 4px 10px;
	background: #fecf11;
	color: #010101;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

/* Cena u názvu produktu (mimo builder) */
.single-product .summary .price,
.single-product .summary .price .amount {
	color: #fecf11;
	font-weight: 700;
}

.bkf-pb__footer {
	margin-top: 12px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
}

.bkf-pb__add-to-cart {
	background: #30b08f;
	border-color: #30b08f;
	color: #fff;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 860px) {
	.bkf-pb__wrapper {
		grid-template-columns: 1fr;
	}
}
