/**
 * Before Blackout - theme.css
 * Ta sama paleta co wtyczka before-blackout-account (ciemna oliwka +
 * szałwiowa zieleń) - zmienne zdefiniowane raz na :root, żeby całość
 * (motyw + wtyczka) trzymała się jednego źródła kolorów.
 */
:root {
	--bbp-bg: #15150f;
	--bbp-bg-card: #1c1c14;
	--bbp-border: #33332e;
	--bbp-text: #f2efe4;
	--bbp-text-muted: #8c9276;
	--bbp-accent: #b3c48c;
	--bbp-accent-hover: #a3b57a;
	--bbp-accent-text: #20260f;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	background: var( --bbp-bg );
	color: var( --bbp-text );
	font-family: Manrope, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

h1, h2, h3,
.bbp-logo__title,
.bbp-page__title,
.bbp-single__price,
.bbp-archive-card__title {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

a {
	color: inherit;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect( 1px, 1px, 1px, 1px );
}

.bbp-skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	background: var( --bbp-accent );
	color: var( --bbp-accent-text );
	padding: 10px 16px;
	border-radius: 8px;
	z-index: 999;
}

/* ---- Header ---- */

.bbp-header {
	border-bottom: 1px solid var( --bbp-border );
}

.bbp-header__inner {
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
}

.bbp-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.bbp-logo__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var( --bbp-accent );
	display: inline-block;
}

.bbp-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.bbp-logo__title {
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var( --bbp-text );
}

.bbp-logo__sub {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var( --bbp-text-muted );
}

.bbp-nav__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.bbp-nav__list a {
	text-decoration: none;
	font-size: 13px;
	color: var( --bbp-text-muted );
}

.bbp-nav__list a:hover {
	color: var( --bbp-text );
}

.bbp-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bbp-icon-btn {
	position: relative;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: none;
	background: transparent;
	color: var( --bbp-text );
	cursor: pointer;
	font-size: 18px;
	text-decoration: none;
}

.bbp-icon-btn:hover {
	background: var( --bbp-bg-card );
}

.bbp-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var( --bbp-accent );
	color: var( --bbp-accent-text );
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	padding: 2px 5px;
	border-radius: 8px;
}

.bbp-search-panel {
	border-top: 1px solid var( --bbp-border );
	padding: 12px 24px;
}

.bbp-search-form input {
	width: 100%;
	max-width: 480px;
	background: var( --bbp-bg-card );
	border: 1px solid var( --bbp-border );
	border-radius: 8px;
	padding: 10px 14px;
	color: var( --bbp-text );
	font-size: 14px;
}

/* ---- Layout ---- */

.bbp-main {
	min-height: 50vh;
}

.bbp-page {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 24px;
}

.bbp-page__title {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.bbp-page__content {
	font-size: 16px;
	line-height: 1.7;
	color: #cfcabc;
}

.bbp-notice {
	max-width: 700px;
	margin: 60px auto;
	padding: 20px;
	background: var( --bbp-bg-card );
	border: 1px solid var( --bbp-border );
	border-radius: 10px;
	text-align: center;
}

/* ---- Archiwa (sklep, kursy) ---- */

.bbp-archive-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 220px, 1fr ) );
	gap: 20px;
}

.bbp-archive-card {
	display: block;
	background: var( --bbp-bg-card );
	border: 1px solid var( --bbp-border );
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: var( --bbp-text );
}

.bbp-archive-card:hover {
	border-color: var( --bbp-accent );
}

.bbp-archive-card__img {
	height: 140px;
	background-size: cover;
	background-position: center;
}

.bbp-archive-card__title {
	font-weight: 700;
	font-size: 15px;
	margin: 14px 16px 4px;
}

.bbp-archive-card__price {
	color: var( --bbp-accent );
	font-weight: 700;
	font-size: 15px;
	margin: 0 16px 16px;
}

/* ---- Single (kurs / produkt) ---- */

.bbp-single__img {
	height: 280px;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	margin-bottom: 24px;
}

.bbp-video-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border-radius: 10px;
	overflow: hidden;
	background: var( --bbp-bg-card );
	margin-bottom: 24px;
}

.bbp-video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.bbp-single__buy {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var( --bbp-border );
}

.bbp-single__price {
	font-size: 24px;
	font-weight: 800;
	color: var( --bbp-accent );
	margin: 0 0 16px;
}

.bbp-single__hint {
	font-size: 13px;
	color: var( --bbp-text-muted );
	margin-top: 10px;
}

.bbp-single__locked {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var( --bbp-bg-card );
	border: 1px solid var( --bbp-border );
	border-radius: 10px;
	padding: 14px 16px;
	color: var( --bbp-text-muted );
	font-size: 14px;
	margin: 16px 0;
}

.bbp-single__owned {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var( --bbp-accent );
	font-weight: 700;
	font-size: 15px;
}

button.bbp-home__cta {
	border: none;
	cursor: pointer;
	font-family: inherit;
}

/* Przyciski CTA - te same klasy co homepage.css z wtyczki, zdefiniowane
   tu ponownie, żeby single.php działał nawet gdy wtyczka nie jest aktywna. */
.bbp-home__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
}

.bbp-home__cta::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.6;
	flex-shrink: 0;
}

.bbp-home__cta--primary {
	background: var( --bbp-accent );
	color: var( --bbp-accent-text );
}

.bbp-home__cta--primary:hover {
	background: var( --bbp-accent-hover );
}

/* ---- Stopka ---- */

.bbp-footer {
	border-top: 1px solid var( --bbp-border );
	background: var( --bbp-bg );
}

.bbp-footer__inner {
	max-width: 100%;
	margin: 0 auto;
	padding: 48px 24px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
}

.bbp-footer__col--brand .bbp-logo {
	margin-bottom: 14px;
}

.bbp-footer__desc {
	font-family: Manrope, sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: var( --bbp-text-muted );
	max-width: 280px;
	margin: 0 0 16px;
}

.bbp-footer__contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: Manrope, sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: var( --bbp-text );
	text-decoration: none;
	border-bottom: 1px solid var( --bbp-border );
	padding-bottom: 8px;
}

.bbp-footer__contact-link:hover {
	color: var( --bbp-accent );
}

.bbp-footer__heading {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var( --bbp-text );
	margin: 0 0 16px;
}

.bbp-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bbp-footer__list a {
	font-size: 13px;
	color: var( --bbp-text-muted );
	text-decoration: none;
}

.bbp-footer__list a:hover {
	color: var( --bbp-accent );
}

.bbp-footer__bottom {
	max-width: 100%;
	margin: 0 auto;
	padding: 20px 24px 32px;
	border-top: 1px solid var( --bbp-border );
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.bbp-footer__payments {
	display: flex;
	gap: 16px;
	font-size: 12px;
	color: var( --bbp-text-muted );
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.bbp-footer__copy {
	font-size: 12px;
	color: var( --bbp-text-muted );
	margin: 0;
}

/* ---- Menu mobilne ---- */

.bbp-icon-btn--menu {
	display: none;
}

@media ( max-width: 700px ) {
	.bbp-nav {
		display: none;
	}

	.bbp-icon-btn--menu {
		display: inline-flex;
	}

	.bbp-nav.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var( --bbp-bg );
		border-bottom: 1px solid var( --bbp-border );
		padding: 8px 24px 20px;
		z-index: 50;
	}

	.bbp-nav.is-open .bbp-nav__list {
		flex-direction: column;
		gap: 4px;
	}

	.bbp-nav.is-open .bbp-nav__list a {
		display: block;
		padding: 12px 0;
		font-size: 15px;
		border-bottom: 1px solid var( --bbp-border );
	}

	.bbp-header {
		position: relative;
	}

	.bbp-header__inner {
		flex-wrap: wrap;
	}

	.bbp-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}
}

@media ( max-width: 480px ) {
	.bbp-footer__inner {
		grid-template-columns: 1fr;
	}
	.bbp-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.bbp-page {
		padding: 28px 18px;
	}
	.bbp-page__title {
		font-size: 22px;
	}
}

/* ---- Nagłówek archiwum (sklep/kursy) ---- */

.bbp-archive-hero {
	position: relative;
	overflow: hidden;
	padding: 48px 24px 40px;
	border-bottom: 1px solid var( --bbp-border );
}

.bbp-archive-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness( 0.35 ) saturate( 0.8 );
}

.bbp-archive-hero__bg::after {
	content: "";
}

.bbp-archive-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient( 180deg, rgba( 21, 21, 15, 0.55 ) 0%, rgba( 21, 21, 15, 0.9 ) 100% );
}

.bbp-archive-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1000px;
}

.bbp-archive-hero__crumbs {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var( --bbp-text-muted );
	margin: 0 0 16px;
}

.bbp-archive-hero__crumbs a {
	color: var( --bbp-text-muted );
	text-decoration: none;
}

.bbp-archive-hero__crumbs a:hover {
	color: var( --bbp-accent );
}

.bbp-archive-hero__title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 56px;
	text-transform: uppercase;
	color: var( --bbp-text );
	margin: 0 0 16px;
}

.bbp-archive-hero__desc {
	font-family: Manrope, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #cfcabc;
	max-width: 620px;
	margin: 0;
}

@media ( max-width: 480px ) {
	.bbp-archive-hero__title {
		font-size: 38px;
	}
}

/* ---- Sklep: filtry + siatka produktów ---- */

.bbp-page--shop {
	max-width: 100%;
	margin: 0;
	padding: 0;
	background: #efe9db;
}

.bbp-shop-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 24px;
}

.bbp-shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	align-items: start;
}

.bbp-shop-filters {
	background: #fdfbf5;
	border: 1px solid #d8d0ba;
	border-radius: 12px;
	padding: 20px;
	position: sticky;
	top: 20px;
}

.bbp-shop-filters__group {
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid #d8d0ba;
}

.bbp-shop-filters__group--last {
	border-bottom: none;
	margin-bottom: 8px;
}

.bbp-shop-filters__title {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #8a8371;
	margin: 0 0 12px;
}

.bbp-shop-filters__check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: Manrope, sans-serif;
	font-size: 13px;
	color: #3a3527;
	margin-bottom: 10px;
	cursor: pointer;
}

.bbp-shop-filters__check:last-child {
	margin-bottom: 0;
}

.bbp-shop-filters__price {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bbp-shop-filters__price input {
	width: 100%;
	background: #fff;
	border: 1px solid #d8d0ba;
	border-radius: 6px;
	padding: 8px 10px;
	color: #262319;
	font-family: Manrope, sans-serif;
	font-size: 13px;
}

.bbp-shop-filters__price span {
	font-size: 12px;
	color: #8a8371;
	flex-shrink: 0;
}

.bbp-shop-filters__clear {
	width: 100%;
	background: transparent;
	border: 1px solid #d8d0ba;
	color: #8a8371;
	border-radius: 8px;
	padding: 10px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

.bbp-shop-filters__clear:hover {
	border-color: var( --bbp-accent-hover );
	color: #262319;
}

.bbp-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 12px;
}

.bbp-shop-toolbar__count {
	font-family: Manrope, sans-serif;
	font-size: 13px;
	color: #8a8371;
	margin: 0;
}

.bbp-shop-toolbar__sort {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #8a8371;
}

.bbp-shop-toolbar__sort select {
	background: #fdfbf5;
	border: 1px solid #d8d0ba;
	border-radius: 8px;
	padding: 8px 12px;
	color: #262319;
	font-family: Manrope, sans-serif;
	font-size: 13px;
}

.bbp-shop-grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 20px;
}

.bbp-shop-card {
	display: flex;
	flex-direction: column;
	background: #fdfbf5;
	border: 1px solid #d8d0ba;
	border-radius: 12px;
	overflow: hidden;
}

.bbp-shop-card__img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 0.8;
	background-size: cover;
	background-position: center;
	background-color: #ddd5be;
}

.bbp-shop-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bbp-shop-card__category {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #8a8371;
	margin: 0 0 8px;
}

.bbp-shop-card__title {
	display: block;
	font-family: Manrope, sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #262319;
	text-decoration: none;
	margin: 0 0 8px;
}

.bbp-shop-card__desc {
	font-family: Manrope, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #55503f;
	margin: 0 0 12px;
	flex: 1;
}

.bbp-shop-card__status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: Manrope, sans-serif;
	font-size: 12px;
	color: #55503f;
	margin: 0 0 10px;
}

.bbp-shop-card__status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #5a8f5a;
	flex-shrink: 0;
}

.bbp-shop-card__price {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #262319;
	margin: 0 0 12px;
}

.bbp-shop-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background: #1c1c14;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 14px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

.bbp-shop-card__btn:hover {
	background: #33332b;
}

.bbp-shop-card__btn:disabled {
	opacity: 0.5;
	cursor: default;
}

.bbp-shop-card__btn-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var( --bbp-accent );
	display: inline-block;
	flex-shrink: 0;
}

.bbp-shop-loadmore {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

@media ( max-width: 980px ) {
	.bbp-shop-layout {
		grid-template-columns: 1fr;
	}
	.bbp-shop-filters {
		position: static;
	}
	.bbp-shop-grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( max-width: 560px ) {
	.bbp-shop-grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Archiwum kursów (siatka kart + pakiet) ---- */

.bbp-courses-archive {
	padding: 56px 24px;
}

.bbp-courses-archive__inner {
	max-width: 1400px;
	margin: 0 auto;
}

.bbp-courses-archive__grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 20px;
	margin-bottom: 20px;
}

.bbp-course-card {
	display: flex;
	flex-direction: column;
	background: var( --bbp-bg-card );
	border: 1px solid var( --bbp-border );
	border-radius: 12px;
	padding: 24px;
}

.bbp-course-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.bbp-course-card__num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var( --bbp-border );
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var( --bbp-accent );
	flex-shrink: 0;
}

.bbp-course-card__category {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var( --bbp-text-muted );
}

.bbp-course-card__title {
	font-family: Manrope, sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-transform: none;
	letter-spacing: normal;
	margin: 0 0 10px;
	line-height: 1.3;
}

.bbp-course-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var( --bbp-text-muted );
	margin-bottom: 18px;
}

.bbp-course-card__bullets {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.bbp-course-card__bullets li {
	position: relative;
	padding-left: 16px;
	font-family: Manrope, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #cfcabc;
}

.bbp-course-card__bullets li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var( --bbp-accent );
}

.bbp-course-card__desc {
	font-family: Manrope, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #cfcabc;
	margin: 0 0 18px;
	flex: 1;
}

.bbp-course-card__presenter {
	font-family: Manrope, sans-serif;
	font-size: 12px;
	color: var( --bbp-text-muted );
	margin: 0 0 16px;
}

.bbp-course-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var( --bbp-border );
	padding-top: 16px;
}

.bbp-course-card__price {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var( --bbp-text );
}

.bbp-course-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var( --bbp-border );
	border-radius: 8px;
	padding: 10px 18px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var( --bbp-text );
	text-decoration: none;
}

.bbp-course-card__btn:hover {
	border-color: var( --bbp-accent );
	color: var( --bbp-accent );
}

.bbp-package-card {
	display: flex;
	background: var( --bbp-bg-card );
	border: 1px solid var( --bbp-border );
	border-radius: 14px;
	overflow: hidden;
}

.bbp-package-card__img {
	width: 280px;
	flex-shrink: 0;
	background: linear-gradient( 135deg, #2a2a1e 0%, #1c1c14 100% );
}

.bbp-package-card__body {
	padding: 32px;
	flex: 1;
}

.bbp-package-card__label {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var( --bbp-text-muted );
	margin: 0 0 12px;
}

.bbp-package-card__title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 26px;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.bbp-package-card__text {
	font-family: Manrope, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #cfcabc;
	max-width: 560px;
	margin: 0 0 18px;
}

.bbp-package-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var( --bbp-text-muted );
	margin-bottom: 24px;
}

.bbp-package-card__footer {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.bbp-package-card__price {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: var( --bbp-accent );
}

@media ( max-width: 980px ) {
	.bbp-courses-archive__grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( max-width: 700px ) {
	.bbp-courses-archive__grid {
		grid-template-columns: 1fr;
	}
	.bbp-package-card {
		flex-direction: column;
	}
	.bbp-package-card__img {
		width: 100%;
		height: 140px;
	}
}

/* ---- Strona produktu: galeria + szczegóły ---- */

.bbp-product-page {
	background: #efe9db;
	padding: 48px 24px;
}

.bbp-product-layout {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.bbp-product-gallery__main {
	width: 100%;
	aspect-ratio: 1 / 0.78;
	border-radius: 12px;
	overflow: hidden;
	background-color: #ddd5be;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bbp-product-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bbp-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 14px;
	margin-top: 14px;
}

.bbp-product-gallery__thumb {
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	background-color: #ddd5be;
	border: 1px solid #d8d0ba;
}

.bbp-product-details__eyebrow {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #8a8371;
	margin: 0 0 12px;
}

.bbp-product-details__title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 29px;
	text-transform: uppercase;
	color: #262319;
	margin: 0 0 16px;
}

.bbp-product-details__desc {
	font-family: Manrope, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #55503f;
	max-width: 560px;
	margin: 0 0 24px;
}

.bbp-product-details__price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-top: 20px;
	border-top: 1px solid #d8d0ba;
	margin-bottom: 12px;
}

.bbp-product-details__price {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 40px;
	color: #262319;
}

.bbp-product-details__vat {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #8a8371;
}

.bbp-product-details__status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: Manrope, sans-serif;
	font-size: 13px;
	color: #55503f;
	margin: 0 0 28px;
}

.bbp-product-details__status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #5a8f5a;
	flex-shrink: 0;
}

.bbp-product-details__qty {
	margin-bottom: 20px;
}

.bbp-product-details__qty label {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #8a8371;
	margin-bottom: 8px;
}

.bbp-qty-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid #d8d0ba;
	border-radius: 8px;
	background: #fdfbf5;
	overflow: hidden;
}

.bbp-qty-stepper__btn {
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	font-size: 18px;
	color: #262319;
	cursor: pointer;
}

.bbp-qty-stepper__btn:hover {
	background: #efe9db;
}

.bbp-qty-stepper__input {
	width: 40px;
	height: 40px;
	border: none;
	border-left: 1px solid #d8d0ba;
	border-right: 1px solid #d8d0ba;
	text-align: center;
	font-family: Manrope, sans-serif;
	font-size: 14px;
	color: #262319;
	background: transparent;
}

.bbp-product-details__qty-hint {
	margin-left: 14px;
	font-family: Manrope, sans-serif;
	font-size: 13px;
	color: #8a8371;
}

.bbp-product-details__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 28px;
}

.bbp-product-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: 10px;
	border: none;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

.bbp-product-btn--dark {
	background: #1c1c14;
	color: #fff;
}

.bbp-product-btn--dark:hover {
	background: #33332b;
}

.bbp-product-btn--accent {
	background: #7a9163;
	color: #fff;
}

.bbp-product-btn--accent:hover {
	background: #6a7f56;
}

.bbp-product-trust {
	list-style: none;
	margin: 0;
	padding: 20px 0 0;
	border-top: 1px solid #d8d0ba;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bbp-product-trust li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: Manrope, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #55503f;
}

.bbp-product-trust li i {
	margin-top: 2px;
	color: #8a8371;
	font-size: 15px;
	flex-shrink: 0;
}

.bbp-product-trust li a {
	color: #262319;
	text-decoration: underline;
}

@media ( max-width: 860px ) {
	.bbp-product-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

/* ---- Zakładki opisowe produktu ---- */

.bbp-product-tabs {
	max-width: 1200px;
	margin: 56px auto 0;
}

.bbp-product-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	border-bottom: 1px solid #d8d0ba;
	padding-bottom: 20px;
	margin-bottom: 32px;
}

.bbp-product-tabs__btn {
	background: none;
	border: none;
	padding: 0;
	font-family: "Barlow Condensed", monospace, sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #8a8371;
	cursor: pointer;
	position: relative;
	padding-bottom: 8px;
}

.bbp-product-tabs__btn.is-active {
	color: #262319;
	font-weight: 700;
	border-bottom: 2px solid #262319;
}

.bbp-product-tabs__bracket {
	opacity: 0;
	transition: opacity 0.15s ease;
	margin: 0 4px;
}

.bbp-product-tabs__btn.is-active .bbp-product-tabs__bracket {
	opacity: 1;
}

.bbp-product-tabs__panel {
	display: none;
}

.bbp-product-tabs__panel.is-active {
	display: block;
}

.bbp-product-tabs__panel p {
	font-family: Manrope, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: #262319;
	max-width: 900px;
	margin: 0 0 20px;
}

.bbp-product-tabs__checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	gap: 16px 32px;
}

.bbp-product-tabs__checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: Manrope, sans-serif;
	font-size: 16px;
	color: #262319;
}

.bbp-product-tabs__checklist li i {
	color: #7a9163;
	margin-top: 4px;
	flex-shrink: 0;
}

.bbp-product-tabs__spec {
	border: 1px solid #d8d0ba;
	border-radius: 12px;
	overflow: hidden;
	max-width: 900px;
	background: #fdfbf5;
}

.bbp-product-tabs__spec-row {
	display: grid;
	grid-template-columns: 240px 1fr;
	padding: 18px 24px;
	border-bottom: 1px solid #d8d0ba;
}

.bbp-product-tabs__spec-row:last-child {
	border-bottom: none;
}

.bbp-product-tabs__spec-label {
	font-family: "Barlow Condensed", monospace, sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	color: #8a8371;
}

.bbp-product-tabs__spec-value {
	font-family: Manrope, sans-serif;
	font-size: 16px;
	color: #262319;
}

.bbp-product-tabs__safety-box {
	border: 1px solid #d8d0ba;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
	max-width: 900px;
}

.bbp-product-tabs__safety-title {
	font-family: "Barlow Condensed", monospace, sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #a3742f;
	font-weight: 700;
	margin: 0 0 14px;
}

.bbp-product-tabs__safety-box ul {
	margin: 0;
	padding-left: 18px;
}

.bbp-product-tabs__safety-box li {
	font-family: Manrope, sans-serif;
	font-size: 15px;
	color: #262319;
	margin-bottom: 8px;
}

.bbp-product-tabs__gpsr-box {
	border: 1px dashed #c9bfa5;
	border-radius: 12px;
	padding: 24px;
	max-width: 900px;
}

.bbp-product-tabs__gpsr-title {
	font-family: Manrope, sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #262319;
	margin: 0 0 12px;
}

.bbp-product-tabs__gpsr-box p {
	font-size: 15px;
	color: #55503f;
}

.bbp-product-tabs__faq {
	max-width: 900px;
}

.bbp-product-tabs__faq-item {
	border-top: 1px solid #d8d0ba;
	padding: 20px 0;
}

.bbp-product-tabs__faq-item:last-child {
	border-bottom: 1px solid #d8d0ba;
}

.bbp-product-tabs__faq-q {
	width: 100%;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-family: Manrope, sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: #262319;
	text-align: left;
	cursor: pointer;
	padding: 0;
}

.bbp-product-tabs__faq-icon {
	flex-shrink: 0;
	font-size: 20px;
	color: #8a8371;
}

.bbp-product-tabs__faq-a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.bbp-product-tabs__faq-item.is-open .bbp-product-tabs__faq-a {
	grid-template-rows: 1fr;
}

.bbp-product-tabs__faq-a p {
	overflow: hidden;
	margin: 0;
	padding-top: 0;
	font-size: 15px;
	color: #55503f;
}

.bbp-product-tabs__faq-item.is-open .bbp-product-tabs__faq-a p {
	padding-top: 14px;
}

@media ( max-width: 700px ) {
	.bbp-product-tabs__nav {
		gap: 16px 20px;
	}
	.bbp-product-tabs__checklist {
		grid-template-columns: 1fr;
	}
	.bbp-product-tabs__spec-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}
