.pkcp {
	--pkcp-accent: #f6b100;
	--pkcp-text: #1f2733;
	--pkcp-muted: #6b7280;
	--pkcp-border: #e3e6ea;
	--pkcp-link: #2f6fd0;
	max-width: 1000px;
	margin: 0 auto 60px;
	color: var(--pkcp-text);
}

.pkcp__crumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0 0 18px;
	font-size: 13px;
	color: var(--pkcp-muted);
}

.pkcp__crumbs a {
	color: var(--pkcp-muted);
	text-decoration: none;
}

.pkcp__crumbs a:hover {
	color: var(--pkcp-accent);
}

.pkcp__crumbs-sep {
	opacity: 0.5;
}

.pkcp__crumbs-current {
	color: var(--pkcp-text);
	font-weight: 600;
}

.pkcp__title {
	margin: 0 0 16px;
	text-align: center;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.pkcp__tagline {
	margin: 0 0 32px;
	font-size: 15px;
	color: var(--pkcp-muted);
}

.pkcp__main {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	align-items: start;
}

/* ---------- Media ---------- */

.pkcp__media {
	position: relative;
	border: 1px solid var(--pkcp-border);
	border-radius: 4px;
	overflow: hidden;
	background: #f7f8f9;
	text-align: center;
}

.pkcp__media img {
	display: block;
	width: 100%;
	height: auto;
}

.pkcp__media-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
	padding: 0 16px;
	font-size: 22px;
	font-weight: 700;
	color: var(--pkcp-text);
}

.pkcp__media-label {
	display: block;
	padding: 10px;
	background: #7d7d7d;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

/* ---------- Buy box ---------- */

.pkcp__pick-label {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.pkcp .pkcp__select {
	width: 100%;
	max-width: 520px;
	height: 46px;
	padding: 0 14px;
	border: 2px solid var(--pkcp-accent);
	border-radius: 6px;
	background-color: #fff;
	font-size: 15px;
	color: var(--pkcp-text);
	cursor: pointer;
}

.pkcp .pkcp__select:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(246, 177, 0, 0.2);
}

.pkcp__delivery {
	margin: 14px 0 18px;
	font-size: 14px;
	color: #e0533d;
}

.pkcp__delivery-name {
	color: var(--pkcp-accent);
	font-weight: 600;
}

/* Woodmart styles every bare <button>, so reset ours explicitly. */
.pkcp .pkcp__buy-btn {
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 0;
	margin: 0;
	padding: 13px 24px;
	border: 0;
	border-radius: 4px;
	background-color: var(--pkcp-accent);
	color: #1a1300;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.pkcp .pkcp__buy-btn:hover {
	background-color: var(--pkcp-accent);
	filter: brightness(0.94);
}

.pkcp .pkcp__buy-btn:active {
	transform: translateY(1px);
}

.pkcp__buy-sep {
	opacity: 0.4;
}

.pkcp__empty {
	color: var(--pkcp-muted);
}

/* ---------- Tabs ---------- */

.pkcp__tabs {
	margin-top: 48px;
}

.pkcp__tab-nav {
	display: flex;
	gap: 8px;
	border-bottom: 1px solid var(--pkcp-border);
}

.pkcp .pkcp__tab {
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	min-height: 0;
	margin: 0;
	padding: 14px 24px;
	border: 0;
	border-radius: 0;
	background: none;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	color: var(--pkcp-muted);
	text-transform: none;
	cursor: pointer;
	transition: color 0.2s ease;
}

.pkcp .pkcp__tab:hover {
	background: none;
	color: var(--pkcp-text);
}

.pkcp .pkcp__tab.is-active {
	color: var(--pkcp-text);
}

.pkcp .pkcp__tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--pkcp-text);
}

.pkcp__panel {
	padding: 24px 0;
	font-size: 15px;
	line-height: 1.9;
	color: var(--pkcp-link);
}

.pkcp__panel[hidden] {
	display: none;
}

.pkcp__panel strong {
	color: var(--pkcp-text);
}

.pkcp__panel a {
	color: var(--pkcp-link);
	text-decoration: underline;
}

@media (max-width: 860px) {
	.pkcp__main {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.pkcp__media {
		max-width: 280px;
	}
	.pkcp__title {
		font-size: 26px;
	}
	.pkcp .pkcp__tab {
		padding: 12px 14px;
		font-size: 14px;
	}
}
