/* =================================================================
   BudTruck — main.css
   Ultranowoczesny ciemny motyw dla sklepu z częściami do maszyn.
   Font: Rajdhani. Akcent: przemysłowa żółć (#FFC107).
   ================================================================= */

/* ----------  ZMIENNE  ---------- */
:root {
	--bt-bg:            #0c0c0e;
	--bt-bg-2:          #141417;
	--bt-bg-3:          #1b1b1f;
	--bt-surface:       #18181c;
	--bt-surface-2:     #202026;
	--bt-line:          #2a2a30;
	--bt-line-2:        #34343c;

	--bt-text:          #f4f4f5;
	--bt-text-soft:     #b6b6bd;
	--bt-text-dim:      #7c7c85;

	--bt-accent:        #FFC107;
	--bt-accent-2:      #ffce3a;
	--bt-accent-dark:   #d99e00;
	--bt-accent-ink:    #161618;

	--bt-success:       #36c47a;
	--bt-danger:        #ff5757;

	--bt-radius:        14px;
	--bt-radius-sm:     10px;
	--bt-radius-lg:     22px;

	--bt-shadow:        0 18px 50px -18px rgba(0,0,0,.7);
	--bt-shadow-accent: 0 14px 40px -12px rgba(255,193,7,.45);

	--bt-container:     1320px;
	--bt-gutter:        24px;

	--bt-ease:          cubic-bezier(.22,.61,.36,1);
	--bt-ease-out:      cubic-bezier(.16,1,.3,1);

	--bt-ff:            "Rajdhani", system-ui, sans-serif;
}

/* ----------  RESET  ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	font-family: var(--bt-ff);
	background: var(--bt-bg);
	color: var(--bt-text);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

/* Tekstura tła — subtelna siatka i ziarno */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(900px 600px at 85% -5%, rgba(255,193,7,.06), transparent 60%),
		radial-gradient(700px 500px at -5% 30%, rgba(255,193,7,.03), transparent 60%),
		linear-gradient(180deg, var(--bt-bg) 0%, #08080a 100%);
	pointer-events: none;
}
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0H0V40' fill='none' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='1'/%3E%3C/svg%3E");
	pointer-events: none;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--bt-ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }

::selection { background: var(--bt-accent); color: var(--bt-accent-ink); }

/* Pasek przewijania */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bt-bg-2); }
::-webkit-scrollbar-thumb { background: var(--bt-line-2); border-radius: 8px; border: 3px solid var(--bt-bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--bt-accent-dark); }

.bt-skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--bt-accent); color: var(--bt-accent-ink);
	padding: 12px 20px; font-weight: 600;
}
.bt-skip:focus { left: 12px; top: 12px; border-radius: 8px; }

/* ----------  LAYOUT  ---------- */
.bt-container {
	width: 100%;
	max-width: var(--bt-container);
	margin-inline: auto;
	padding-inline: var(--bt-gutter);
}
.bt-main { display: block; min-height: 40vh; }
.bt-section { padding-block: clamp(48px, 7vw, 96px); }

/* Ikony */
.bt-ico { width: 1.25em; height: 1.25em; flex: none; }

/* ----------  PRZYCISKI  ---------- */
.bt-btn {
	--pad-y: 13px; --pad-x: 24px;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: var(--pad-y) var(--pad-x);
	background: var(--bt-accent);
	color: var(--bt-accent-ink);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .02em;
	text-transform: uppercase;
	border-radius: var(--bt-radius-sm);
	position: relative;
	overflow: hidden;
	transition: transform .3s var(--bt-ease), box-shadow .3s var(--bt-ease), background .3s var(--bt-ease);
	white-space: nowrap;
}
.bt-btn .bt-ico { width: 18px; height: 18px; transition: transform .3s var(--bt-ease); }
.bt-btn::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform .6s var(--bt-ease);
}
.bt-btn:hover { transform: translateY(-2px); box-shadow: var(--bt-shadow-accent); background: var(--bt-accent-2); }
.bt-btn:hover::after { transform: translateX(120%); }
.bt-btn:hover .bt-ico--arrow-right { transform: translateX(4px); }
.bt-btn:active { transform: translateY(0); }

.bt-btn--lg { --pad-y: 16px; --pad-x: 30px; font-size: 16px; }
.bt-btn--block { width: 100%; }

.bt-btn--ghost {
	background: transparent;
	color: var(--bt-text);
	border: 1.5px solid var(--bt-line-2);
}
.bt-btn--ghost:hover {
	background: rgba(255,193,7,.08);
	border-color: var(--bt-accent);
	color: var(--bt-accent);
	box-shadow: none;
}
.bt-btn--dark {
	background: var(--bt-accent-ink);
	color: var(--bt-accent);
}
.bt-btn--dark:hover { background: #000; box-shadow: 0 14px 40px -12px rgba(0,0,0,.6); }

/* Nagłówki sekcji */
.bt-section__head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap;
}
.bt-section__title {
	display: flex; align-items: center; gap: 16px;
	font-size: clamp(26px, 3.4vw, 38px);
	text-transform: uppercase;
}
.bt-section__bar {
	width: 6px; height: 1.1em; border-radius: 3px;
	background: var(--bt-accent);
	box-shadow: 0 0 18px rgba(255,193,7,.6);
}
.bt-section__link {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--bt-accent); font-weight: 600; text-transform: uppercase;
	font-size: 14px; letter-spacing: .04em;
}
.bt-section__link .bt-ico { width: 16px; height: 16px; transition: transform .3s var(--bt-ease); }
.bt-section__link:hover .bt-ico { transform: translateX(5px); }

/* ----------  ANIMACJE WEJŚCIA  ---------- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s var(--bt-ease-out), transform .7s var(--bt-ease-out);
	transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	* { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
	html { scroll-behavior: auto; }
}

/* =================================================================
   HEADER
   ================================================================= */
.bt-header { position: sticky; top: 0; z-index: 100; }

.bt-topbar {
	background: var(--bt-bg-2);
	border-bottom: 1px solid var(--bt-line);
	font-size: 13px;
	color: var(--bt-text-soft);
}
.bt-topbar__inner {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 42px; gap: 20px; flex-wrap: wrap;
}
.bt-topbar__left, .bt-topbar__right { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.bt-topbar__left li, .bt-topbar__right li { display: inline-flex; align-items: center; gap: 8px; }
.bt-topbar__left .bt-ico, .bt-topbar__right .bt-ico { width: 15px; height: 15px; color: var(--bt-accent); }
.bt-topbar__right a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--bt-text); }
.bt-topbar__right a:hover { color: var(--bt-accent); }

.bt-navbar {
	background: rgba(18,18,21,.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--bt-line);
	transition: padding .3s var(--bt-ease), box-shadow .3s var(--bt-ease), background .3s var(--bt-ease);
}
.bt-navbar__inner {
	display: flex; align-items: center; gap: 32px;
	min-height: 80px;
}
[data-bt-header].is-stuck .bt-navbar {
	background: rgba(12,12,14,.94);
	box-shadow: 0 10px 30px -12px rgba(0,0,0,.6);
}
[data-bt-header].is-stuck .bt-navbar__inner { min-height: 80px; }

/* Logo */
.bt-logo { display: inline-flex; align-items: center; }
.bt-logo img { max-height: 80px; width: auto; }
.bt-logo--text { gap: 11px; }
.bt-logo__mark {
	display: grid; place-items: center;
	width: 42px; height: 42px;
	background: var(--bt-accent); color: var(--bt-accent-ink);
	border-radius: 11px;
	box-shadow: 0 8px 22px -8px rgba(255,193,7,.7);
}
.bt-logo__mark .bt-ico { width: 26px; height: 26px; stroke-width: 2.2; }
.bt-logo__word { font-size: 26px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; line-height: 1; }
.bt-logo__word b { color: var(--bt-accent); font-weight: 700; }

/* Nawigacja */
.bt-nav { margin-inline-start: auto; }
.bt-nav__list { display: flex; align-items: center; gap: 4px; }
.bt-nav__list a {
	display: inline-flex; align-items: center;
	padding: 10px 16px;
	font-weight: 600; font-size: 15px; letter-spacing: .03em;
	text-transform: uppercase; color: var(--bt-text-soft);
	border-radius: 9px; position: relative;
}
.bt-nav__list a::after {
	content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
	background: var(--bt-accent); transform: scaleX(0); transform-origin: left;
	transition: transform .3s var(--bt-ease);
}
.bt-nav__list a:hover { color: var(--bt-text); }
.bt-nav__list a:hover::after,
.bt-nav__list .current-menu-item > a::after { transform: scaleX(1); }
.bt-nav__list .current-menu-item > a { color: var(--bt-accent); }

/* Akcje */
.bt-navbar__actions { display: flex; align-items: center; gap: 8px; }
.bt-iconbtn {
	position: relative;
	display: grid; place-items: center;
	width: 46px; height: 46px;
	border-radius: 11px;
	color: var(--bt-text);
	background: var(--bt-surface);
	border: 1px solid var(--bt-line);
	transition: all .25s var(--bt-ease);
}
.bt-iconbtn .bt-ico { width: 21px; height: 21px; }
.bt-iconbtn:hover { color: var(--bt-accent-ink); background: var(--bt-accent); border-color: var(--bt-accent); transform: translateY(-2px); }
.bt-cart-count {
	position: absolute; top: -6px; right: -6px;
	min-width: 20px; height: 20px; padding: 0 5px;
	display: grid; place-items: center;
	background: var(--bt-accent); color: var(--bt-accent-ink);
	font-size: 11px; font-weight: 700; border-radius: 999px;
	border: 2px solid var(--bt-bg);
}
.bt-burger { display: none; }

/* Pasek wyszukiwania (rozwijany) */
.bt-searchbar {
	background: var(--bt-bg-2);
	border-bottom: 1px solid var(--bt-line);
	overflow: hidden;
}
.bt-searchbar[hidden] { display: block; max-height: 0; border-bottom-color: transparent; }
.bt-searchbar { max-height: 0; transition: max-height .4s var(--bt-ease); }
.bt-searchbar.is-open { max-height: 120px; }
.bt-searchbar__form {
	display: flex; align-items: center; gap: 12px;
	padding-block: 18px;
}
.bt-searchbar__form > .bt-ico { width: 22px; height: 22px; color: var(--bt-accent); }
.bt-searchbar__form input[type="search"] {
	flex: 1; background: var(--bt-surface);
	border: 1px solid var(--bt-line); color: var(--bt-text);
	padding: 13px 16px; border-radius: var(--bt-radius-sm); outline: none;
	transition: border-color .25s var(--bt-ease);
}
.bt-searchbar__form input:focus { border-color: var(--bt-accent); }

/* Menu mobilne */
.bt-mobile-menu {
	position: fixed; inset: 0; z-index: 200;
	background: var(--bt-bg-2);
	padding: 22px var(--bt-gutter) 40px;
	transform: translateX(100%);
	transition: transform .4s var(--bt-ease);
	overflow-y: auto;
}
.bt-mobile-menu[hidden] { display: block; }
.bt-mobile-menu.is-open { transform: none; }
.bt-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.bt-mobile-menu__search { display: flex; gap: 8px; margin-bottom: 22px; }
.bt-mobile-menu__search input[type="search"] {
	flex: 1; min-width: 0; height: 52px; padding: 0 16px;
	background: var(--bt-bg); border: 1px solid var(--bt-line-2);
	color: var(--bt-text); font-family: inherit; font-size: 16px; border-radius: var(--bt-radius-sm);
}
.bt-mobile-menu__search input:focus { outline: none; border-color: var(--bt-accent); }
.bt-mobile-menu__search button {
	flex: none; width: 52px; height: 52px; display: grid; place-items: center;
	background: var(--bt-accent); color: var(--bt-accent-ink); border: 0;
	border-radius: var(--bt-radius-sm); cursor: pointer;
}
.bt-mobile-menu__search button .bt-ico { width: 22px; height: 22px; }
.bt-mobile-menu__list { display: flex; flex-direction: column; gap: 4px; }
.bt-mobile-menu__list a {
	display: block; padding: 16px 14px;
	font-size: 19px; font-weight: 600; text-transform: uppercase;
	border-bottom: 1px solid var(--bt-line);
}
.bt-mobile-menu__list a:hover { color: var(--bt-accent); padding-left: 22px; }
body.bt-menu-open { overflow: hidden; }
body.bt-cart-open { overflow: hidden; }

/* =================================================================
   MINI-KOSZYK (wysuwany panel)
   ================================================================= */
.bt-cart-overlay {
	position: fixed; inset: 0; z-index: 1090;
	background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
	opacity: 0; transition: opacity .35s var(--bt-ease);
}
.bt-cart-overlay.is-open { opacity: 1; }

.bt-minicart {
	position: fixed; top: 0; right: 0; z-index: 1100;
	width: min(420px, 92vw); height: 100%;
	background: var(--bt-bg-2);
	border-left: 1px solid var(--bt-line);
	box-shadow: -20px 0 60px rgba(0,0,0,.5);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform .42s var(--bt-ease);
}
.bt-minicart.is-open { transform: translateX(0); }
.bt-minicart.is-busy { opacity: .6; pointer-events: none; }

.bt-minicart__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 22px 24px; border-bottom: 1px solid var(--bt-line); flex: none;
}
.bt-minicart__title {
	display: flex; align-items: center; gap: 11px;
	font-size: 20px; text-transform: uppercase; letter-spacing: .02em;
}
.bt-minicart__title .bt-ico { width: 22px; height: 22px; color: var(--bt-accent); }

.bt-minicart__body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }

.bt-minicart__empty {
	flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 16px; padding: 40px; text-align: center; color: var(--bt-text-dim);
}
.bt-minicart__empty .bt-ico { width: 48px; height: 48px; opacity: .4; }
.bt-minicart__empty p { font-size: 16px; }

.bt-minicart__items { list-style: none; margin: 0; padding: 8px 0; flex: 1; }
.bt-minicart__item {
	display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: start;
	padding: 18px 24px; border-bottom: 1px solid var(--bt-line);
}
.bt-minicart__thumb {
	width: 64px; height: 64px; border-radius: var(--bt-radius-sm); overflow: hidden;
	background: var(--bt-bg-3); border: 1px solid var(--bt-line);
}
.bt-minicart__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bt-minicart__info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bt-minicart__name { font-size: 14.5px; font-weight: 600; line-height: 1.25; color: var(--bt-text); }
.bt-minicart__price { font-size: 13px; color: var(--bt-text-soft); }
.bt-minicart__price .amount { color: var(--bt-accent); font-weight: 700; }

.bt-minicart__qty {
	display: inline-flex; align-items: center; gap: 0; margin-top: 4px;
	border: 1px solid var(--bt-line-2); border-radius: var(--bt-radius-sm); overflow: hidden;
	width: fit-content;
}
.bt-qty__btn {
	width: 32px; height: 32px; display: grid; place-items: center;
	background: var(--bt-bg-3); color: var(--bt-text); border: 0; cursor: pointer;
	font-size: 18px; font-weight: 700; line-height: 1; transition: background .2s, color .2s;
}
.bt-qty__btn:hover { background: var(--bt-accent); color: var(--bt-accent-ink); }
.bt-qty__val { min-width: 38px; text-align: center; font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; }

.bt-minicart__remove {
	background: transparent; border: 0; cursor: pointer; padding: 4px;
	color: var(--bt-text-dim); transition: color .2s, transform .2s;
}
.bt-minicart__remove .bt-ico { width: 18px; height: 18px; }
.bt-minicart__remove:hover { color: var(--bt-danger); transform: scale(1.1); }

.bt-minicart__foot {
	flex: none; padding: 20px 24px 24px;
	border-top: 1px solid var(--bt-line); background: var(--bt-bg);
}
.bt-minicart__row {
	display: flex; align-items: center; justify-content: space-between;
	font-size: 14px; padding: 6px 0;
}
.bt-minicart__row--coupon { color: var(--bt-success); font-weight: 600; }
.bt-minicart__row--coupon span:first-child { display: inline-flex; align-items: center; gap: 7px; }
.bt-minicart__row--coupon .bt-ico { width: 15px; height: 15px; }
.bt-minicart__discount { font-weight: 700; }
.bt-minicart__row--total {
	margin-top: 6px; padding-top: 14px; border-top: 1px dashed var(--bt-line);
	font-size: 16px; text-transform: uppercase; letter-spacing: .02em;
}
.bt-minicart__total { font-size: 22px; font-weight: 700; color: var(--bt-accent); }
.bt-minicart__total .amount { color: var(--bt-accent); }

.bt-minicart__actions { display: grid; gap: 10px; margin-top: 18px; }

/* =================================================================
   HERO
   ================================================================= */
.bt-hero {
	position: relative;
	padding-block: clamp(48px, 7vw, 90px);
	background-image: var(--bt-hero-bg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.bt-hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(8,8,10,.95) 0%, rgba(8,8,10,.7) 45%, rgba(8,8,10,.35) 100%);
}
.bt-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(32px, 5vw, 70px);
	align-items: center;
}
.bt-hero__kicker {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 8px 16px;
	background: rgba(255,193,7,.12);
	border: 1px solid rgba(255,193,7,.3);
	color: var(--bt-accent);
	border-radius: 999px;
	font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
	margin-bottom: 26px;
}
.bt-hero__kicker .bt-ico { width: 16px; height: 16px; animation: bt-spin 9s linear infinite; }
@keyframes bt-spin { to { transform: rotate(360deg); } }

.bt-hero__title {
	font-size: clamp(40px, 6.5vw, 78px);
	text-transform: uppercase;
	line-height: .98;
	margin-bottom: 24px;
}
.bt-hero__title-1, .bt-hero__title-2 { display: block; }
.bt-hero__title-2 {
	color: var(--bt-accent);
	position: relative;
	width: fit-content;
}
.bt-hero__title-2::after {
	content: ""; position: absolute; left: 0; bottom: -6px; height: 5px; width: 100%;
	background: var(--bt-accent); transform: scaleX(0); transform-origin: left;
	animation: bt-underline 1s var(--bt-ease) .5s forwards;
	box-shadow: 0 0 20px rgba(255,193,7,.7);
}
@keyframes bt-underline { to { transform: scaleX(1); } }

.bt-hero__text {
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--bt-text-soft);
	max-width: 48ch;
	margin-bottom: 34px;
}
.bt-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Finder (wyszukiwarka części) */
.bt-finder {
	background: linear-gradient(180deg, var(--bt-surface) 0%, var(--bt-bg-2) 100%);
	border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg);
	padding: clamp(24px, 3vw, 36px);
	box-shadow: var(--bt-shadow);
	position: relative;
}
.bt-finder::before {
	content: ""; position: absolute; inset: 0;
	border-radius: inherit; padding: 1px;
	background: linear-gradient(140deg, rgba(255,193,7,.5), transparent 40%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	pointer-events: none;
}
.bt-finder__title {
	display: flex; align-items: center; gap: 12px;
	font-size: 22px; text-transform: uppercase; margin-bottom: 24px;
}
.bt-finder__title .bt-ico { color: var(--bt-accent); width: 24px; height: 24px; }
.bt-finder__form { display: flex; flex-direction: column; gap: 16px; }
.bt-finder__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bt-finder__field { display: flex; flex-direction: column; gap: 7px; }
.bt-finder__field > span { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--bt-text-dim); }
.bt-finder__field input[type="search"],
.bt-select select {
	width: 100%;
	background: var(--bt-bg);
	border: 1px solid var(--bt-line-2);
	color: var(--bt-text);
	padding: 14px 16px;
	border-radius: var(--bt-radius-sm);
	outline: none;
	transition: border-color .25s var(--bt-ease), box-shadow .25s var(--bt-ease);
}
.bt-finder__field input:focus,
.bt-select select:focus { border-color: var(--bt-accent); box-shadow: 0 0 0 3px rgba(255,193,7,.15); }
.bt-select { position: relative; }
.bt-select select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.bt-select .bt-ico {
	position: absolute; right: 14px; top: 50%; transform: translateY(-50%) rotate(90deg);
	width: 16px; height: 16px; color: var(--bt-text-dim); pointer-events: none;
}

/* =================================================================
   KATEGORIE
   ================================================================= */
.bt-categories__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}
.bt-cat {
	display: flex; flex-direction: column; align-items: center; gap: 16px;
	padding: 30px 18px;
	background: var(--bt-surface);
	border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius);
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: transform .35s var(--bt-ease), border-color .35s var(--bt-ease), background .35s var(--bt-ease);
}
.bt-cat::before {
	content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
	background: var(--bt-accent); transform: scaleX(0); transform-origin: left;
	transition: transform .35s var(--bt-ease);
}
.bt-cat__icon {
	display: grid; place-items: center;
	width: 64px; height: 64px;
	background: var(--bt-bg-3);
	border: 1px solid var(--bt-line);
	border-radius: 16px;
	color: var(--bt-accent);
	transition: all .35s var(--bt-ease);
}
.bt-cat__icon .bt-ico { width: 30px; height: 30px; }
.bt-cat__name { font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: .02em; }
.bt-cat__arrow { opacity: 0; transform: translateY(6px); transition: all .35s var(--bt-ease); color: var(--bt-accent); }
.bt-cat__arrow .bt-ico { width: 18px; height: 18px; }
.bt-cat:hover { transform: translateY(-6px); border-color: rgba(255,193,7,.4); background: var(--bt-surface-2); }
.bt-cat:hover::before { transform: scaleX(1); }
.bt-cat:hover .bt-cat__icon { background: var(--bt-accent); color: var(--bt-accent-ink); transform: scale(1.06) rotate(-4deg); box-shadow: var(--bt-shadow-accent); }
.bt-cat:hover .bt-cat__arrow { opacity: 1; transform: none; }

/* =================================================================
   PRODUKTY
   ================================================================= */
.bt-tabs__nav {
	display: inline-flex; gap: 8px;
	padding: 6px; margin-bottom: 36px;
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: 999px;
}
.bt-tabs__btn {
	padding: 11px 26px; border-radius: 999px;
	font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .03em;
	color: var(--bt-text-soft);
	transition: all .3s var(--bt-ease);
}
.bt-tabs__btn.is-active { background: var(--bt-accent); color: var(--bt-accent-ink); }
.bt-tabs__btn:not(.is-active):hover { color: var(--bt-text); }
.bt-tabs__panel { animation: bt-fade .5s var(--bt-ease); }
.bt-tabs__panel[hidden] { display: none; }
@keyframes bt-fade { from { opacity: 0; transform: translateY(12px); } }

.bt-products-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.bt-product {
	display: flex; flex-direction: column;
	background: var(--bt-surface);
	border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius);
	overflow: hidden;
	transition: transform .35s var(--bt-ease), border-color .35s var(--bt-ease), box-shadow .35s var(--bt-ease);
}
.bt-product:hover { transform: translateY(-6px); border-color: rgba(255,193,7,.35); box-shadow: var(--bt-shadow); }
.bt-product:focus-visible { outline: 2px solid var(--bt-accent); outline-offset: 2px; }

.bt-product__media {
	position: relative; aspect-ratio: 1/1;
	background: radial-gradient(circle at 50% 35%, var(--bt-bg-3), var(--bt-bg-2));
	overflow: hidden;
}
.bt-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--bt-ease); }
.bt-product:hover .bt-product__media img { transform: scale(1.07); }
.bt-product__badge {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	padding: 5px 12px; border-radius: 7px;
	font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.bt-product__badge--new { background: var(--bt-accent); color: var(--bt-accent-ink); }
.bt-product__badge--fresh { background: var(--bt-success); color: #fff; }
.bt-product__badge--hot { background: var(--bt-danger); color: #fff; }
/* Przycisk serca (lista życzeń) na karcie — prawy górny róg (badge zostaje po lewej) */
.bt-wish-btn {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	display: grid; place-items: center; width: 40px; height: 40px;
	background: rgba(12,12,14,.7); backdrop-filter: blur(6px);
	border: 1px solid var(--bt-line); border-radius: 10px; color: #fff;
	cursor: pointer; transition: all .3s var(--bt-ease);
}
.bt-wish-btn .bt-ico { width: 19px; height: 19px; fill: transparent; transition: fill .2s, color .2s; }
.bt-wish-btn:hover { border-color: var(--bt-accent); color: var(--bt-accent); }
.bt-wish-btn.is-active { color: var(--bt-accent); }
.bt-wish-btn.is-active .bt-ico { fill: var(--bt-accent); }
.bt-wish-btn.is-loading { opacity: .5; pointer-events: none; }
.bt-wish-btn.is-bump { animation: bt-wish-bump .32s var(--bt-ease); }
@keyframes bt-wish-bump { 0%,100% { transform: scale(1); } 40% { transform: scale(1.28); } }

/* Ikona listy życzeń w nagłówku */
.bt-iconbtn--wish { position: relative; }
.bt-wish-count {
	position: absolute; top: -6px; right: -6px;
	min-width: 20px; height: 20px; padding: 0 5px;
	display: grid; place-items: center;
	background: var(--bt-accent); color: var(--bt-accent-ink);
	font-size: 11px; font-weight: 700; border-radius: 999px;
	border: 2px solid var(--bt-bg);
}
.bt-wish-count.is-empty { display: none; }

.bt-product__body { display: flex; flex-direction: column; gap: 9px; padding: 18px; flex: 1; }
.bt-product__cat { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--bt-accent); }
.bt-product__title { font-size: 16px; font-weight: 600; line-height: 1.25; }
.bt-product__title a:hover { color: var(--bt-accent); }
.bt-product__sku { font-size: 12px; color: var(--bt-text-dim); font-weight: 500; }
.bt-product__rating { display: flex; align-items: center; gap: 8px; }
.bt-stars { display: inline-flex; gap: 2px; }
.bt-stars__star { color: var(--bt-line-2); }
.bt-stars__star .bt-ico { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.bt-stars__star.is-on { color: var(--bt-accent); }
.bt-stars__count { font-size: 12px; color: var(--bt-text-dim); }

.bt-product__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 6px; }
.bt-product__price { display: flex; flex-direction: column; line-height: 1.1; }
.bt-product__price del { font-size: 13px; color: var(--bt-text-dim); }
.bt-product__price ins, .bt-product__price .amount { font-size: 21px; font-weight: 700; color: var(--bt-text); text-decoration: none; }
.bt-product__price ins .amount { font-size: inherit; }
.bt-product__stock { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--bt-success); }
.bt-product__stock .bt-ico { width: 14px; height: 14px; }

.bt-product__add { margin-top: 4px; font-size: 14px; --pad-y: 12px; }
.bt-product__add .bt-ico { width: 17px; height: 17px; }
a.bt-product__add { text-decoration: none; }

.bt-featured__more { display: flex; justify-content: center; margin-top: 44px; }

/* =================================================================
   PROMO
   ================================================================= */
.bt-promo {
	background-image: var(--bt-promo-bg);
	background-size: cover; background-position: center;
	color: var(--bt-accent-ink);
	position: relative; overflow: hidden;
	padding-bottom: clamp(40px, 5vw, 64px);
}
.bt-promo__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 40px;
	padding-block: clamp(40px, 5vw, 64px); flex-wrap: wrap;
}
.bt-promo__tag {
	display: inline-block; padding: 6px 14px; margin-bottom: 16px;
	background: var(--bt-accent-ink); color: var(--bt-accent);
	font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 6px;
}
.bt-promo__title { font-size: clamp(28px, 4vw, 48px); text-transform: uppercase; margin-bottom: 12px; }
.bt-promo__text { font-size: clamp(15px, 1.4vw, 18px); font-weight: 500; max-width: 52ch; opacity: .85; }
.bt-promo__side { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

.bt-countdown { display: flex; align-items: center; gap: 8px; }
.bt-countdown__unit {
	display: flex; flex-direction: column; align-items: center;
	background: var(--bt-accent-ink); color: var(--bt-accent);
	border-radius: 12px; padding: 12px 6px; min-width: 64px;
}
.bt-countdown__num { font-size: 30px; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.bt-countdown__lbl { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-top: 5px; }
.bt-countdown__sep { font-size: 26px; font-weight: 700; color: var(--bt-accent-ink); opacity: .4; }

/* Produkty w promocji — ciemny pas pod żółtym banerem */
.bt-promo__products {
	position: relative; z-index: 1;
	margin-top: clamp(32px, 5vw, 56px);
	padding: clamp(28px, 4vw, 40px);
	background: var(--bt-bg);
	border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow);
	color: var(--bt-text);
}
.bt-promo__products-title {
	display: flex; align-items: center; gap: 12px;
	font-size: clamp(20px, 2.4vw, 28px); text-transform: uppercase;
	color: var(--bt-text); margin-bottom: 26px;
}
.bt-promo__products-title .bt-ico { width: 26px; height: 26px; color: var(--bt-accent); }

/* =================================================================
   FEATURES (pasek zaufania)
   ================================================================= */
.bt-features { background: var(--bt-bg-2); border-block: 1px solid var(--bt-line); }
.bt-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bt-feature { display: flex; align-items: flex-start; gap: 16px; }
.bt-feature__icon {
	display: grid; place-items: center; flex: none;
	width: 56px; height: 56px; border-radius: 14px;
	background: var(--bt-bg-3); border: 1px solid var(--bt-line); color: var(--bt-accent);
	transition: all .35s var(--bt-ease);
}
.bt-feature__icon .bt-ico { width: 27px; height: 27px; }
.bt-feature:hover .bt-feature__icon { background: var(--bt-accent); color: var(--bt-accent-ink); transform: translateY(-3px) rotate(-4deg); }
.bt-feature__title { font-size: 17px; text-transform: uppercase; margin-bottom: 4px; }
.bt-feature__text p, .bt-feature p { font-size: 14px; color: var(--bt-text-soft); }

/* =================================================================
   CTA — NEWSLETTER + KONTAKT
   ================================================================= */
.bt-cta__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 28px;
	align-items: stretch;
}

.bt-newsletter, .bt-contact {
	position: relative;
	background: var(--bt-surface);
	border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg);
	padding: 38px;
	overflow: hidden;
}
.bt-newsletter::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(120% 120% at 0% 0%, rgba(255,193,7,.10), transparent 55%);
	pointer-events: none;
}
.bt-newsletter > * { position: relative; z-index: 1; }

.bt-newsletter__title, .bt-contact__title {
	display: flex; align-items: center; gap: 12px;
	font-size: clamp(22px, 2.4vw, 30px);
	text-transform: uppercase; letter-spacing: .01em;
	margin-bottom: 14px;
}
.bt-newsletter__title .bt-ico, .bt-contact__title .bt-ico {
	width: 30px; height: 30px; color: var(--bt-accent); flex: none;
}
.bt-newsletter__text { color: var(--bt-text-soft); font-size: 16px; margin-bottom: 22px; max-width: 46ch; }
.bt-newsletter__text b, .bt-newsletter__text strong { color: var(--bt-accent); }

.bt-newsletter__form { display: flex; gap: 10px; margin-bottom: 12px; }
.bt-newsletter__form input[type="email"] {
	flex: 1; min-width: 0;
	background: var(--bt-bg); border: 1px solid var(--bt-line-2);
	color: var(--bt-text); font-family: inherit; font-size: 16px; font-weight: 500;
	border-radius: var(--bt-radius-sm); padding: 0 18px; height: 56px;
	transition: border-color .25s, box-shadow .25s;
}
.bt-newsletter__form input::placeholder { color: var(--bt-text-dim); }
.bt-newsletter__form input:focus {
	outline: none; border-color: var(--bt-accent);
	box-shadow: 0 0 0 3px rgba(255,193,7,.18);
}
.bt-newsletter__form.is-done input { border-color: var(--bt-success); }
.bt-newsletter__note { color: var(--bt-text-dim); font-size: 13px; }

.bt-newsletter__perks {
	list-style: none; padding: 0; margin: 26px 0 0;
	display: grid; gap: 14px;
	border-top: 1px solid var(--bt-line); padding-top: 24px;
}
.bt-newsletter__perks li {
	display: flex; align-items: center; gap: 14px;
	font-size: 15px; color: var(--bt-text-soft); line-height: 1.4;
}
.bt-newsletter__perks strong { color: var(--bt-text); font-weight: 700; }
.bt-newsletter__perk-ico {
	flex: none; display: grid; place-items: center;
	width: 44px; height: 44px; border-radius: 12px;
	background: rgba(255,193,7,.12); border: 1px solid rgba(255,193,7,.25);
	color: var(--bt-accent);
}
.bt-newsletter__perk-ico .bt-ico { width: 22px; height: 22px; }
.bt-newsletter__msg { display: block; margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--bt-success); }

/* ---- Formularz wtyczki TS Newsletter (shortcode) w sekcji motywu ---- */
.bt-newsletter .ts-newsletter-form { max-width: 100%; margin-bottom: 12px; }
.bt-newsletter .ts-newsletter-subscribe-form {
	display: flex; flex-wrap: wrap; gap: 10px;
}
.bt-newsletter .ts-newsletter-input {
	flex: 1; min-width: 200px;
	background: var(--bt-bg); border: 1px solid var(--bt-line-2);
	color: var(--bt-text); font-family: inherit; font-size: 16px; font-weight: 500;
	border-radius: var(--bt-radius-sm); padding: 0 18px; height: 56px;
	transition: border-color .25s, box-shadow .25s;
}
.bt-newsletter .ts-newsletter-input::placeholder { color: var(--bt-text-dim); }
.bt-newsletter .ts-newsletter-input:focus {
	outline: none; border-color: var(--bt-accent);
	box-shadow: 0 0 0 3px rgba(255,193,7,.18);
}
.bt-newsletter .ts-newsletter-name { flex-basis: 100%; }
/* Układ pól: zawsze jeden pod drugim, pełna szerokość. */
.bt-newsletter .ts-newsletter-subscribe-form,
.bt-newsletter .ts-newsletter-form form,
.bt-newsletter form {
	display: flex !important; flex-direction: column !important; align-items: stretch !important;
	gap: 12px !important; width: 100% !important;
}
/* Wymuś spójny, wysoki wygląd KAŻDEGO pola tekstowego (HTML pochodzi z wtyczki). */
.bt-newsletter input[type="text"],
.bt-newsletter input[type="email"],
.bt-newsletter input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]) {
	width: 100% !important; min-width: 0 !important; box-sizing: border-box !important;
	height: 58px !important; min-height: 58px !important; line-height: 58px !important;
	padding: 0 18px !important; margin: 0 !important; display: block !important;
	background: var(--bt-bg) !important; border: 1px solid var(--bt-line-2) !important;
	color: var(--bt-text) !important; font-family: inherit !important; font-size: 16px !important; font-weight: 500 !important;
	border-radius: var(--bt-radius-sm) !important;
}
.bt-newsletter input::placeholder { color: var(--bt-text-dim); }
.bt-newsletter input:not([type="checkbox"]):not([type="radio"]):focus {
	outline: none; border-color: var(--bt-accent) !important; box-shadow: 0 0 0 3px rgba(255,193,7,.18);
}
.bt-newsletter .ts-newsletter-btn {
	flex: none !important; width: 100% !important;
	display: inline-flex; align-items: center; justify-content: center;
	height: 58px !important; min-height: 58px !important; padding: 0 30px !important;
	background: var(--bt-accent); color: var(--bt-accent-ink);
	border: 0; border-radius: var(--bt-radius-sm);
	font-family: inherit; font-size: 15px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .04em; cursor: pointer;
	transition: background .25s, transform .25s, box-shadow .25s;
}
.bt-newsletter .ts-newsletter-btn:hover {
	background: var(--bt-accent-2); transform: translateY(-2px);
	box-shadow: var(--bt-shadow-accent);
}
.bt-newsletter .ts-newsletter-btn:disabled { background: var(--bt-line-2); color: var(--bt-text-dim); cursor: not-allowed; transform: none; box-shadow: none; }
.bt-newsletter .ts-newsletter-message {
	margin-top: 12px; padding: 13px 16px; border-radius: var(--bt-radius-sm);
	font-size: 14px; font-weight: 600;
}
.bt-newsletter .ts-newsletter-success { background: rgba(54,196,122,.14); color: var(--bt-success); border: 1px solid rgba(54,196,122,.4); }
.bt-newsletter .ts-newsletter-error { background: rgba(255,87,87,.12); color: var(--bt-danger); border: 1px solid rgba(255,87,87,.4); }

@media (max-width: 620px) {
	.bt-newsletter .ts-newsletter-subscribe-form { flex-direction: column; }
	.bt-newsletter .ts-newsletter-btn { width: 100%; }
	.bt-single__nav { grid-template-columns: 1fr; }
	.bt-single__nav-link--next { text-align: left; }
	.bt-single__nav-link--next .bt-single__nav-dir { justify-content: flex-start; }
	.bt-contact-form__row { grid-template-columns: 1fr; }
	.bt-cookie__inner { flex-direction: column; align-items: stretch; gap: 16px; }
	.bt-cookie__actions { flex-direction: column; }
	.bt-cookie__actions .bt-btn { width: 100%; justify-content: center; }
	.bt-logo--text .bt-logo__word { display: none; }
	.bt-acc__form-grid { grid-template-columns: 1fr; }
	.bt-acc__order-grid, .bt-acc__addresses { grid-template-columns: 1fr; }
	.bt-acc__stats { grid-template-columns: 1fr; }
	/* Ostatnie zamówienia: karta z numerem+sumą u góry, datą+statusem niżej. */
	.bt-acc__order {
		display: grid; grid-template-columns: 1fr auto; grid-template-areas: "num total" "date status";
		gap: 6px 12px; align-items: center;
	}
	.bt-acc__order-num { grid-area: num; font-size: 16px; }
	.bt-acc__order-total { grid-area: total; text-align: right; font-size: 16px; }
	.bt-acc__order-date { grid-area: date; }
	.bt-acc__order .bt-acc__status { grid-area: status; justify-self: end; }
	.bt-checkout__grid { grid-template-columns: 1fr; }
	.bt-ty__grid { grid-template-columns: 1fr; }
	.bt-pdp__features { grid-template-columns: 1fr; }

	/* Toolbar sklepu/promocji: zawijanie, by się mieścił. */
	.bt-shop-toolbar { flex-wrap: wrap; gap: 12px; }
	.bt-shop-toolbar__right { flex-wrap: wrap; gap: 10px; width: 100%; }
	.bt-shop-toolbar__right .woocommerce-ordering,
	.bt-shop-toolbar__right .bt-promo-ordering { flex: 1; min-width: 0; }
	.bt-shop-toolbar__right .woocommerce-ordering select,
	.bt-shop-toolbar__right .bt-promo-ordering select { width: 100%; }
}

/* Kontakt */
.bt-contact { display: flex; flex-direction: column; gap: 22px; }
.bt-contact__list { display: grid; gap: 16px; }
.bt-contact__list > div {
	display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: start;
	padding-bottom: 14px; border-bottom: 1px dashed var(--bt-line);
}
.bt-contact__list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.bt-contact__list dt {
	font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
	color: var(--bt-text-dim); font-weight: 600; padding-top: 2px;
}
.bt-contact__list dd { font-size: 16px; font-weight: 500; color: var(--bt-text); }
.bt-contact__list dd a { color: var(--bt-accent); text-decoration: none; }
.bt-contact__list dd a:hover { text-decoration: underline; }
.bt-contact__map {
	margin-top: auto;
	border-radius: var(--bt-radius); overflow: hidden;
	border: 1px solid var(--bt-line); aspect-ratio: 16 / 7; background: var(--bt-bg-3);
}
.bt-contact__map iframe, .bt-contact__map img {
	width: 100%; height: 100%; display: block; border: 0; object-fit: cover;
	filter: grayscale(1) contrast(1.05);
}

/* =================================================================
   FOOTER
   ================================================================= */
.bt-footer {
	background: var(--bt-bg-2);
	border-top: 1px solid var(--bt-line);
	margin-top: 0;
}
.bt-footer__top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding: 64px var(--bt-gutter) 48px;
}
.bt-footer__brand .bt-logo, .bt-footer__brand .bt-logo-text { margin-bottom: 18px; }
.bt-footer__brand .bt-logo img { max-height: 120px; }
.bt-footer__about { color: var(--bt-text-soft); font-size: 14.5px; max-width: 40ch; margin-bottom: 22px; }
.bt-footer__company {
	display: flex; flex-direction: column; gap: 3px;
	margin-bottom: 22px; padding: 14px 16px;
	background: var(--bt-bg-3); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-sm);
	font-size: 13px; color: var(--bt-text-dim); line-height: 1.5;
}
.bt-footer__company-name { color: var(--bt-text-soft); font-weight: 600; }

.bt-footer__social { list-style: none; padding: 0; display: flex; gap: 10px; }
.bt-footer__social a {
	display: grid; place-items: center; width: 42px; height: 42px;
	border-radius: 11px; background: var(--bt-bg-3); border: 1px solid var(--bt-line);
	color: var(--bt-text-soft); transition: all .3s var(--bt-ease);
}
.bt-footer__social a .bt-ico { width: 19px; height: 19px; }
.bt-footer__social a:hover {
	background: var(--bt-accent); color: var(--bt-accent-ink);
	border-color: var(--bt-accent); transform: translateY(-3px);
	box-shadow: var(--bt-shadow-accent);
}

.bt-footer__title {
	font-size: 16px; text-transform: uppercase; letter-spacing: .06em;
	margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.bt-footer__title::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 28px; height: 3px; background: var(--bt-accent); border-radius: 2px;
}
.bt-footer__title--pay { margin-top: 28px; }

.bt-footer__menu { list-style: none; padding: 0; display: grid; gap: 11px; }
.bt-footer__menu a {
	color: var(--bt-text-soft); text-decoration: none; font-size: 15px; font-weight: 500;
	display: inline-flex; align-items: center; gap: 8px; transition: color .2s, transform .2s;
}
.bt-footer__menu a::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--bt-line-2); transition: background .2s, transform .2s;
}
.bt-footer__menu a:hover { color: var(--bt-accent); transform: translateX(3px); }
.bt-footer__menu a:hover::before { background: var(--bt-accent); }

.bt-footer__pay { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.bt-footer__pay img { height: 30px; width: auto; border-radius: 6px; }
.bt-footer__pay-fallback {
	display: grid; place-items: center; height: 32px; min-width: 50px; padding: 0 10px;
	background: var(--bt-bg-3); border: 1px solid var(--bt-line-2); border-radius: 7px;
	font-size: 12px; font-weight: 700; letter-spacing: .05em; color: var(--bt-text-soft);
}

.bt-footer__bar { border-top: 1px solid var(--bt-line); background: var(--bt-bg); }
.bt-footer__bar-inner {
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 22px var(--bt-gutter); flex-wrap: wrap;
}
.bt-footer__copy, .bt-footer__made { font-size: 13.5px; color: var(--bt-text-dim); }
.bt-footer__made strong { color: var(--bt-accent); }
.bt-footer__made a { color: var(--bt-text-dim); text-decoration: none; transition: color .2s; }
.bt-footer__made a:hover strong { color: var(--bt-accent-2); }

/* =================================================================
   STRONY: blog / wpis / strona / 404
   ================================================================= */
.bt-page { padding-block: 64px; min-height: 50vh; }

/* Lista wpisów */
.bt-posts {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.bt-post-card {
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg); overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .35s var(--bt-ease), border-color .35s, box-shadow .35s;
}
.bt-post-card:hover { transform: translateY(-6px); border-color: var(--bt-line-2); box-shadow: var(--bt-shadow); }
.bt-post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bt-bg-3); display: block; }
.bt-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--bt-ease); }
.bt-post-card:hover .bt-post-card__media img { transform: scale(1.06); }
.bt-post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bt-post-card__date {
	font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
	color: var(--bt-accent); font-weight: 600;
}
.bt-post-card__title { font-size: 21px; line-height: 1.2; }
.bt-post-card__title a { color: var(--bt-text); text-decoration: none; transition: color .2s; }
.bt-post-card__title a:hover { color: var(--bt-accent); }
.bt-post-card__excerpt { color: var(--bt-text-soft); font-size: 14.5px; flex: 1; }
.bt-post-card__more {
	display: inline-flex; align-items: center; gap: 7px;
	margin-top: 4px; color: var(--bt-accent); text-decoration: none;
	font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em;
}
.bt-post-card__more .bt-ico { width: 16px; height: 16px; transition: transform .25s var(--bt-ease); }
.bt-post-card:hover .bt-post-card__more .bt-ico { transform: translateX(4px); }
.bt-news { background: var(--bt-bg); }

/* Pojedynczy wpis — hero */
.bt-single-hero { margin-bottom: 0; }
.bt-single-hero__title { text-transform: none; max-width: 22ch; }
.bt-single__meta {
	display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px;
}
.bt-single__meta-item {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 14px; color: var(--bt-text-soft);
}
.bt-single__meta-item .bt-ico { width: 16px; height: 16px; color: var(--bt-accent); }

/* Pojedynczy wpis — treść */
.bt-single__wrap { padding-block: clamp(40px, 6vw, 72px); }
.bt-single__content { max-width: none; margin: 0; font-size: 17.5px; line-height: 1.75; color: var(--bt-text-soft); }
.bt-single__content > * + * { margin-top: 1.2em; }
.bt-single__content h2, .bt-single__content h3, .bt-single__content h4 { color: var(--bt-text); text-transform: uppercase; margin-top: 1.7em; line-height: 1.2; }
.bt-single__content h2 { font-size: 28px; }
.bt-single__content h3 { font-size: 23px; }
.bt-single__content a { color: var(--bt-accent); text-underline-offset: 3px; }
.bt-single__content img { border-radius: var(--bt-radius); max-width: 100%; height: auto; }
.bt-single__content ul, .bt-single__content ol { padding-left: 1.4em; }
.bt-single__content li { margin-top: .5em; }
.bt-single__content blockquote {
	border-left: 3px solid var(--bt-accent); padding: 4px 0 4px 22px; margin-left: 0;
	font-size: 20px; font-style: italic; color: var(--bt-text);
}
.bt-single__content code {
	background: var(--bt-bg-3); padding: 2px 7px; border-radius: 5px; font-size: .9em;
}

/* Tagi */
.bt-single__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.bt-single__tag {
	font-size: 13px; font-weight: 600; color: var(--bt-text-soft); text-decoration: none;
	padding: 7px 14px; border-radius: 100px; background: var(--bt-bg-3);
	border: 1px solid var(--bt-line); transition: all .2s;
}
.bt-single__tag:hover { border-color: var(--bt-accent); color: var(--bt-accent); }

/* Udostępnianie */
.bt-single__share { display: flex; align-items: center; gap: 10px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--bt-line); }
.bt-single__share-label { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--bt-text-dim); font-weight: 600; }
.bt-single__share-btn {
	display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
	background: var(--bt-bg-3); border: 1px solid var(--bt-line); color: var(--bt-text-soft);
	transition: all .25s var(--bt-ease);
}
.bt-single__share-btn .bt-ico { width: 18px; height: 18px; }
.bt-single__share-btn:hover { background: var(--bt-accent); color: var(--bt-accent-ink); border-color: var(--bt-accent); transform: translateY(-3px); }

/* Nawigacja poprzedni / następny */
.bt-single__nav {
	display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
	max-width: none; margin: 44px 0 0; padding-top: 32px; border-top: 1px solid var(--bt-line);
}
.bt-single__nav-link {
	display: flex; flex-direction: column; gap: 8px; text-decoration: none;
	padding: 20px; background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius); transition: border-color .25s, transform .25s;
}
.bt-single__nav-link:hover { border-color: var(--bt-line-2); transform: translateY(-3px); }
.bt-single__nav-link--next { text-align: right; }
.bt-single__nav-dir {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--bt-accent); font-weight: 700;
}
.bt-single__nav-link--next .bt-single__nav-dir { justify-content: flex-end; }
.bt-single__nav-dir .bt-ico { width: 15px; height: 15px; }
.bt-single__nav-link--prev .bt-single__nav-dir .bt-ico { transform: rotate(180deg); }
.bt-single__nav-title { font-size: 15.5px; font-weight: 600; color: var(--bt-text); }

/* Powiązane wpisy */
.bt-related { background: var(--bt-bg-2); border-top: 1px solid var(--bt-line); }

/* Archiwum aktualności */
.bt-news-archive { padding-block: clamp(40px, 5vw, 64px); }
.bt-news-pagination { margin-top: 44px; }

/* =================================================================
   STRONA KONTAKT
   ================================================================= */
.bt-contact-page { padding-block: clamp(40px, 5vw, 64px); }
.bt-contact-page__grid {
	display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start;
}
.bt-contact-page__info,
.bt-contact-page__form-wrap {
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg); padding: clamp(24px, 3vw, 38px);
}
.bt-contact-page__map { margin-top: 24px; aspect-ratio: 16 / 10; }
.bt-contact-page__nip { font-size: 13px; color: var(--bt-text-dim); }

/* Formularz */
.bt-contact-form { display: grid; gap: 16px; }
.bt-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bt-field { display: flex; flex-direction: column; gap: 7px; }
.bt-field > span { font-size: 13px; font-weight: 600; color: var(--bt-text-soft); letter-spacing: .02em; }
.bt-field input,
.bt-field textarea {
	background: var(--bt-bg); border: 1px solid var(--bt-line-2);
	color: var(--bt-text); font-family: inherit; font-size: 15px;
	border-radius: var(--bt-radius-sm); padding: 13px 16px; width: 100%;
	transition: border-color .2s, box-shadow .2s;
}
.bt-field textarea { resize: vertical; min-height: 130px; }
.bt-field input:focus,
.bt-field textarea:focus { outline: none; border-color: var(--bt-accent); box-shadow: 0 0 0 3px rgba(255,193,7,.15); }
.bt-contact-form .bt-btn { margin-top: 6px; }

/* Komunikaty formularza */
.bt-form-notice {
	display: flex; align-items: center; gap: 12px;
	padding: 16px 18px; border-radius: var(--bt-radius-sm); font-size: 15px; font-weight: 500; margin-bottom: 4px;
}
.bt-form-notice .bt-ico { width: 20px; height: 20px; flex: none; }
.bt-form-notice--ok { background: rgba(54,196,122,.14); border: 1px solid rgba(54,196,122,.4); color: var(--bt-success); }
.bt-form-notice--err { background: rgba(255,87,87,.12); border: 1px solid rgba(255,87,87,.4); color: var(--bt-danger); }
.bt-form-notice-area { margin-bottom: 18px; }

/* =================================================================
   STRONA TREŚCI (regulamin, polityka)
   ================================================================= */
.bt-doc { padding-block: clamp(40px, 5vw, 64px); }
.bt-doc__content { max-width: none; font-size: 16.5px; line-height: 1.75; color: var(--bt-text-soft); }
.bt-doc__content > * + * { margin-top: 1.1em; }
.bt-doc__content h2, .bt-doc__content h3, .bt-doc__content h4 { color: var(--bt-text); text-transform: uppercase; margin-top: 1.6em; line-height: 1.2; }
.bt-doc__content h2 { font-size: 26px; }
.bt-doc__content h3 { font-size: 21px; }
.bt-doc__content a { color: var(--bt-accent); text-underline-offset: 3px; }
.bt-doc__content ul, .bt-doc__content ol { padding-left: 1.4em; }
.bt-doc__content li { margin-top: .5em; }
.bt-doc__content blockquote {
	border-left: 3px solid var(--bt-accent); padding: 4px 0 4px 22px; margin-left: 0;
	font-style: italic; color: var(--bt-text);
}
.bt-doc__content img { border-radius: var(--bt-radius); max-width: 100%; height: auto; }
.bt-doc__content table { width: 100%; border-collapse: collapse; }
.bt-doc__content th, .bt-doc__content td { border: 1px solid var(--bt-line); padding: 10px 14px; text-align: left; }
.bt-doc__updated { margin-top: 32px; font-size: 13px; color: var(--bt-text-dim); font-style: italic; }

/* =================================================================
   STRONA LISTY ŻYCZEŃ
   ================================================================= */
.bt-wishlist-page { padding-block: clamp(40px, 5vw, 64px); }
.bt-shop-hero__kicker .bt-ico { width: 14px; height: 14px; }

/* =================================================================
   COOKIE — banner, modal, przełączniki (Consent Mode v2)
   ================================================================= */
.bt-cookie__banner {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
	background: var(--bt-bg-2); border-top: 2px solid var(--bt-accent);
	box-shadow: 0 -20px 50px rgba(0,0,0,.5);
	animation: bt-cookie-up .45s var(--bt-ease);
}
@keyframes bt-cookie-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
.bt-cookie__inner {
	max-width: var(--bt-container); margin: 0 auto; padding: 22px var(--bt-gutter);
	display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between;
}
.bt-cookie__text { flex: 1; min-width: 280px; }
.bt-cookie__title { display: flex; align-items: center; gap: 10px; font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.bt-cookie__title .bt-ico { width: 20px; height: 20px; color: var(--bt-accent); }
.bt-cookie__text p { color: var(--bt-text-soft); font-size: 14.5px; line-height: 1.55; max-width: 90ch; }
.bt-cookie__text a { color: var(--bt-accent); }
.bt-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Modal */
.bt-cookie__modal { position: fixed; inset: 0; z-index: 1210; display: grid; place-items: center; padding: 20px; }
.bt-cookie__modal[hidden] { display: none; }
.bt-cookie__modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); opacity: 0; transition: opacity .3s; }
.bt-cookie__modal.is-open .bt-cookie__modal-overlay { opacity: 1; }
.bt-cookie__modal-box {
	position: relative; width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
	background: var(--bt-bg-2); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg);
	padding: 28px; transform: translateY(16px) scale(.98); opacity: 0;
	transition: transform .32s var(--bt-ease), opacity .32s;
}
.bt-cookie__modal.is-open .bt-cookie__modal-box { transform: none; opacity: 1; }
.bt-cookie__modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.bt-cookie__groups { display: grid; gap: 12px; margin-bottom: 24px; }
.bt-cookie__group {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	padding: 16px; background: var(--bt-surface); border: 1px solid var(--bt-line); border-radius: var(--bt-radius);
	cursor: pointer;
}
.bt-cookie__group.is-locked { cursor: default; opacity: .9; }
.bt-cookie__group-name { display: block; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.bt-cookie__group-desc { display: block; font-size: 13px; color: var(--bt-text-dim); line-height: 1.5; }
.bt-cookie__modal-foot { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* Przełącznik (switch) */
.bt-switch { position: relative; flex: none; width: 48px; height: 28px; }
.bt-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.bt-switch__track {
	position: absolute; inset: 0; border-radius: 100px; background: var(--bt-line-2);
	transition: background .25s;
}
.bt-switch__track::after {
	content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px;
	border-radius: 50%; background: #fff; transition: transform .25s var(--bt-ease);
}
.bt-switch.is-on .bt-switch__track { background: var(--bt-accent); }
.bt-switch.is-on .bt-switch__track::after { transform: translateX(20px); }
.bt-switch.is-disabled { opacity: .6; }
.bt-switch.is-disabled input { cursor: default; }

/* Przycisk ponownego otwarcia ustawień */
.bt-cookie__reopen {
	position: fixed; left: 18px; bottom: 18px; z-index: 1100;
	width: 46px; height: 46px; display: grid; place-items: center;
	background: var(--bt-bg-3); border: 1px solid var(--bt-line); border-radius: 50%;
	color: var(--bt-accent); cursor: pointer; box-shadow: var(--bt-shadow);
	transition: transform .25s, border-color .25s;
}
.bt-cookie__reopen .bt-ico { width: 22px; height: 22px; }
.bt-cookie__reopen:hover { transform: translateY(-3px); border-color: var(--bt-accent); }
/* Ukryj przycisk reopen dopóki użytkownik nie podjął decyzji (widać banner) */
.bt-cookie:not([data-decided]) .bt-cookie__reopen { display: none; }
.bt-cookie-link { color: var(--bt-accent); cursor: pointer; }

/* =================================================================
   CENA + OMNIBUS
   ================================================================= */
.bt-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.bt-price__old { color: var(--bt-text-dim); text-decoration: line-through; font-size: .85em; font-weight: 600; }
.bt-price__now { color: var(--bt-danger); font-weight: 800; }
.bt-price__now--regular { color: var(--bt-text); }
.bt-price__now .woocommerce-Price-amount,
.bt-price__old .woocommerce-Price-amount { color: inherit; }
.bt-price__omnibus { display: block; margin-top: 3px; font-size: 10px; line-height: 1.3; color: var(--bt-text-dim); font-weight: 500; opacity: .8; }
.bt-price__omnibus .woocommerce-Price-amount { font-size: inherit; font-weight: 600; }
/* Domyślne ceny WooCommerce w naszym bloku */
.bt-product__price del { color: var(--bt-text-dim); opacity: 1; }
.bt-product__price ins { text-decoration: none; color: var(--bt-danger); }

/* =================================================================
   NAGŁÓWEK PROCESU ZAKUPOWEGO (breadcrumbs + oś etapów)
   ================================================================= */
.bt-steps-head { padding-bottom: 8px; }
.bt-steps-head .bt-breadcrumb { margin-bottom: 24px; }
.bt-steps { list-style: none; margin: 0 0 8px; padding: 0; display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.bt-steps__item { display: flex; align-items: center; gap: 12px; flex: none; }
.bt-steps__num { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--bt-bg-3); border: 2px solid var(--bt-line-2); color: var(--bt-text-dim); font-weight: 800; font-size: 16px; flex: none; transition: all .2s; }
.bt-steps__num .bt-ico { width: 18px; height: 18px; }
.bt-steps__label { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .03em; color: var(--bt-text-dim); white-space: nowrap; }
.bt-steps__item.is-active .bt-steps__num { background: var(--bt-accent); border-color: var(--bt-accent); color: var(--bt-accent-ink); }
.bt-steps__item.is-active .bt-steps__label { color: var(--bt-text); }
.bt-steps__item.is-done .bt-steps__num { background: var(--bt-success); border-color: var(--bt-success); color: #fff; }
.bt-steps__item.is-done .bt-steps__label { color: var(--bt-text-soft); }
.bt-steps__line { flex: 1 1 auto; min-width: 24px; height: 2px; background: var(--bt-line-2); margin: 0 16px; }
.bt-steps__line.is-done { background: var(--bt-success); }
.bt-cart__heading { font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; margin: 28px 0 24px; }
.bt-cart__heading .bt-cart__count { color: var(--bt-text-dim); font-weight: 600; }

/* Rabat ukryty gdy zerowy */
.bt-cart__row[hidden] { display: none !important; }

/* =================================================================
   WYNIKI WYSZUKIWANIA — pasek szukania
   ================================================================= */
.bt-search { padding-block: clamp(32px, 4vw, 52px); }
.bt-search__form { display: flex; gap: 10px; margin-bottom: 36px; max-width: 720px; }
.bt-search__field { position: relative; flex: 1; display: flex; align-items: center; }
.bt-search__field > .bt-ico { position: absolute; left: 16px; width: 20px; height: 20px; color: var(--bt-text-dim); pointer-events: none; }
.bt-search__field input[type="search"] { width: 100%; background: var(--bt-surface); border: 1px solid var(--bt-line-2); color: var(--bt-text); border-radius: var(--bt-radius); padding: 14px 16px 14px 46px; font-size: 15px; font-family: inherit; }
.bt-search__field input[type="search"]:focus { border-color: var(--bt-accent); outline: none; }
.bt-search__form .bt-btn { flex: none; }
.bt-search__products { margin: 0; }

/* =================================================================
   QTY — przyciski +/- bez osobnego tła
   ================================================================= */
.bt-cart__qty-btn { width: 36px; height: 38px; background: transparent; border: 0; color: var(--bt-text); font-size: 18px; cursor: pointer; transition: color .2s; }
.bt-cart__qty-btn:hover { background: transparent; color: var(--bt-accent); }

/* =================================================================
   TOAST (powiadomienia o dodaniu do koszyka)
   ================================================================= */
.bt-toast-wrap { position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 1200; display: flex; flex-direction: column; align-items: center; gap: 10px; width: max-content; max-width: calc(100vw - 32px); }
.bt-toast { padding: 14px 22px; border-radius: var(--bt-radius); background: var(--bt-surface); border: 1px solid var(--bt-line); color: var(--bt-text); font-weight: 600; font-size: 14px; box-shadow: var(--bt-shadow); transform: translateY(-18px); opacity: 0; transition: transform .35s var(--bt-ease), opacity .35s; border-left: 4px solid var(--bt-accent); text-align: center; }
.bt-toast.is-in { transform: translateY(0); opacity: 1; }
.bt-toast--ok { border-left-color: var(--bt-success); }
.bt-toast--err { border-left-color: var(--bt-danger); }

/* =================================================================
   LISTA ŻYCZEŃ — kafelki z akcjami
   ================================================================= */
.bt-wishlist { padding-bottom: 20px; }
.bt-wishlist__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 16px 0 22px; border-bottom: 1px solid var(--bt-line); margin-bottom: 24px; }
.bt-wishlist__count { color: var(--bt-text-soft); font-size: 15px; }
.bt-wishlist__count strong { color: var(--bt-accent); }
.bt-wishlist__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.bt-wish-tile { position: relative; display: flex; flex-direction: column; background: var(--bt-surface); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg); overflow: hidden; transition: border-color .2s, transform .2s; }
.bt-wish-tile:hover { border-color: var(--bt-line-2); transform: translateY(-3px); }
.bt-wish-tile__remove { position: absolute; top: 10px; right: 10px; z-index: 2; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(12,12,14,.7); border: 1px solid var(--bt-line); color: var(--bt-text); cursor: pointer; transition: all .2s; }
.bt-wish-tile__remove:hover { background: var(--bt-danger); border-color: var(--bt-danger); color: #fff; }
.bt-wish-tile__remove .bt-ico { width: 16px; height: 16px; }
.bt-wish-tile__media { display: block; aspect-ratio: 1/1; background: var(--bt-bg-3); }
.bt-wish-tile__media img { width: 100%; height: 100%; object-fit: cover; }
.bt-wish-tile__body { display: flex; flex-direction: column; gap: 10px; padding: 16px; flex: 1; }
.bt-wish-tile__title { font-size: 15px; line-height: 1.35; margin: 0; }
.bt-wish-tile__title a { color: var(--bt-text); }
.bt-wish-tile__title a:hover { color: var(--bt-accent); }
.bt-wish-tile__price { margin-top: auto; }
.bt-wish-tile__stock { font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.bt-wish-tile__stock .bt-ico { width: 15px; height: 15px; }
.bt-wish-tile__stock.is-in { color: var(--bt-success); }
.bt-wish-tile__stock.is-out { color: var(--bt-text-dim); }

/* =================================================================
   POJEDYNCZY PRODUKT (PDP)
   ================================================================= */
.bt-pdp { padding-block: clamp(28px, 4vw, 52px); }
.bt-pdp__main { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; margin-bottom: 44px; }

/* Galeria (lewo) */
.bt-pdp__gallery { position: sticky; top: 100px; }
.bt-pdp__image { position: relative; display: block; width: 100%; aspect-ratio: 1 / 1; padding: 0; border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg); overflow: hidden; background: var(--bt-bg-3); cursor: zoom-in; }
.bt-pdp__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bt-pdp__zoom { position: absolute; bottom: 14px; right: 14px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(12,12,14,.7); backdrop-filter: blur(6px); border: 1px solid var(--bt-line); color: #fff; opacity: 0; transition: opacity .25s; }
.bt-pdp__zoom .bt-ico { width: 18px; height: 18px; }
.bt-pdp__image:hover .bt-pdp__zoom { opacity: 1; }
.bt-pdp__badge { position: absolute; top: 16px; left: 16px; background: var(--bt-danger); color: #fff; font-weight: 800; font-size: 16px; padding: 7px 13px; border-radius: var(--bt-radius-sm); }
.bt-pdp__badge--fresh { background: var(--bt-success); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.bt-pdp__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.bt-pdp__thumb { width: 78px; height: 78px; border-radius: var(--bt-radius-sm); overflow: hidden; border: 2px solid var(--bt-line); background: var(--bt-bg-3); cursor: pointer; padding: 0; transition: border-color .2s; }
.bt-pdp__thumb.is-active, .bt-pdp__thumb:hover { border-color: var(--bt-accent); }
.bt-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Informacje (prawo) */
.bt-pdp__breadcrumb { margin-bottom: 16px; }
.bt-pdp__title { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.12; text-transform: uppercase; margin-bottom: 8px; }
.bt-pdp__sku { display: block; color: var(--bt-text-dim); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.bt-pdp__price { margin-bottom: 14px; }
.bt-pdp__price .bt-price__now { font-size: 32px; }
.bt-pdp__price .bt-price__old { font-size: 21px; }
.bt-pdp__stock { margin-bottom: 22px; }
.bt-pdp__qty-info { color: var(--bt-text-dim); font-size: 14px; }
.bt-pdp__buy { display: flex; gap: 12px; align-items: stretch; margin-bottom: 18px; flex-wrap: wrap; }
.bt-pdp__buy .bt-cart__qty { flex: none; }
.bt-pdp__buy .bt-cart__qty-input { width: 56px; }
.bt-pdp__add { flex: 1; min-width: 220px; }
.bt-pdp__unavailable { color: var(--bt-danger); font-weight: 600; margin-bottom: 18px; }
.bt-pdp__variable { margin-bottom: 18px; }

.bt-pdp__wish-link { display: inline-flex; align-items: center; gap: 9px; background: transparent; border: 0; padding: 0; margin-bottom: 22px; color: var(--bt-text-soft); font-family: inherit; font-size: 14.5px; cursor: pointer; transition: color .2s; }
.bt-pdp__wish-link .bt-ico { width: 19px; height: 19px; fill: transparent; transition: fill .2s, color .2s; }
.bt-pdp__wish-link:hover { color: var(--bt-accent); }
.bt-pdp__wish-link[aria-pressed="true"] { color: var(--bt-accent); }
.bt-pdp__wish-link[aria-pressed="true"] .bt-ico { fill: var(--bt-accent); }
.bt-pdp__wish-link.is-bump { animation: bt-wish-bump .32s var(--bt-ease); }

.bt-pdp__meta-row { display: flex; gap: 8px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--bt-line); font-size: 14px; }
.bt-pdp__meta-label { color: var(--bt-text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 12.5px; }
.bt-pdp__meta-val { color: var(--bt-text-soft); }
.bt-pdp__meta-val a { color: var(--bt-text-soft); }
.bt-pdp__meta-val a:hover { color: var(--bt-accent); }

.bt-pdp__share { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-top: 1px solid var(--bt-line); flex-wrap: wrap; }
.bt-pdp__share-btn { display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--bt-radius-sm); border: 1px solid var(--bt-line); color: var(--bt-text-soft); transition: all .2s; }
.bt-pdp__share-btn .bt-ico { width: 17px; height: 17px; }
.bt-pdp__share-btn:hover { border-color: var(--bt-accent); color: var(--bt-accent); }

.bt-pdp__features { list-style: none; margin: 6px 0 0; padding: 18px 0 0; border-top: 1px solid var(--bt-line); display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bt-pdp__features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--bt-text-soft); }
.bt-pdp__features .bt-ico { width: 19px; height: 19px; color: var(--bt-accent); flex: none; }

/* Zakładki */
.bt-pdp__tabs { border-top: 1px solid var(--bt-line); padding-top: 8px; }
.bt-pdp__tabnav { display: flex; gap: 6px; border-bottom: 1px solid var(--bt-line); margin-bottom: 24px; flex-wrap: wrap; }
.bt-pdp__tab { background: transparent; border: 0; border-bottom: 3px solid transparent; color: var(--bt-text-dim); font-family: inherit; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; padding: 14px 18px; cursor: pointer; transition: color .2s, border-color .2s; }
.bt-pdp__tab:hover { color: var(--bt-text); }
.bt-pdp__tab.is-active { color: var(--bt-accent); border-bottom-color: var(--bt-accent); }
.bt-pdp__panel { display: none; }
.bt-pdp__panel.is-active { display: block; }
.bt-pdp__empty { color: var(--bt-text-dim); font-style: italic; }
.bt-pdp__spec-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.bt-pdp__spec-table th, .bt-pdp__spec-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--bt-line); font-size: 15px; }
.bt-pdp__spec-table th { width: 38%; color: var(--bt-text-dim); font-weight: 700; background: var(--bt-bg-3); }

/* Lightbox galerii produktu */
.bt-lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 32px; background: rgba(8,8,10,.92); opacity: 0; transition: opacity .3s; }
.bt-lightbox.is-open { opacity: 1; }
.bt-lightbox__fig { margin: 0; cursor: zoom-out; }
.bt-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--bt-radius); box-shadow: var(--bt-shadow); transform: scale(.96); transition: transform .3s var(--bt-ease); }
.bt-lightbox.is-open img { transform: scale(1); }
.bt-lightbox__close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; transition: background .2s; }
.bt-lightbox__close:hover { background: var(--bt-accent); color: var(--bt-accent-ink); border-color: var(--bt-accent); }
.bt-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.bt-lightbox__nav:hover { background: var(--bt-accent); color: var(--bt-accent-ink); border-color: var(--bt-accent); }
.bt-lightbox__nav--prev { left: 24px; }
.bt-lightbox__nav--next { right: 24px; }
.bt-lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; letter-spacing: .05em; }
@media (max-width: 620px) {
	.bt-lightbox { padding: 16px; }
	.bt-lightbox img { max-width: calc(100vw - 32px); max-height: 78vh; width: auto; height: auto; }
	/* Na telefonie nawigacja palcem — strzałki ukryte. */
	.bt-lightbox__nav { display: none; }
	.bt-lightbox__counter { bottom: 64px; }
	.bt-lightbox__hint { display: flex; }
}
/* Podpowiedź „przesuń palcem" — widoczna tylko na telefonie przy wielu zdjęciach. */
.bt-lightbox__hint {
	display: none; position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
	align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px;
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
	color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; white-space: nowrap;
	backdrop-filter: blur(6px); animation: bt-hint-fade 4s ease forwards;
}
.bt-lightbox__hint svg { width: 18px; height: 18px; animation: bt-hint-swipe 1.6s var(--bt-ease) infinite; }
@keyframes bt-hint-swipe { 0%,100% { transform: translateX(-5px); } 50% { transform: translateX(5px); } }
@keyframes bt-hint-fade { 0%,70% { opacity: 1; } 100% { opacity: 0; visibility: hidden; } }

/* =================================================================
   KOSZYK
   ================================================================= */
.bt-cart, .bt-checkout, .bt-ty { padding-bottom: clamp(56px, 8vw, 96px); }
.bt-cart__count { color: var(--bt-text-dim); font-weight: 600; }
.bt-cart__layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.bt-cart__products { background: var(--bt-surface); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg); overflow: hidden; }
.bt-cart__head { display: grid; grid-template-columns: 1fr 120px 140px 120px 50px; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--bt-line); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--bt-text-dim); font-weight: 700; }
.bt-cart__items { position: relative; transition: opacity .2s; }
.bt-cart__items.is-busy { opacity: .55; pointer-events: none; }
.bt-cart__item { display: grid; grid-template-columns: 1fr 120px 140px 120px 50px; gap: 12px; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--bt-line); transition: opacity .25s; }
.bt-cart__item:last-child { border-bottom: 0; }
.bt-cart__col-product { display: flex; align-items: center; gap: 14px; }
.bt-cart__thumb { width: 64px; height: 64px; border-radius: var(--bt-radius-sm); overflow: hidden; background: var(--bt-bg-3); flex: none; }
.bt-cart__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bt-cart__name { font-weight: 600; color: var(--bt-text); text-decoration: none; line-height: 1.3; }
.bt-cart__name:hover { color: var(--bt-accent); }
.bt-cart__sku { display: block; font-size: 12px; color: var(--bt-text-dim); margin-top: 4px; }
.bt-cart__col-price, .bt-cart__col-total { font-weight: 700; }
.bt-cart__qty { display: inline-flex; align-items: center; border: 1px solid var(--bt-line-2); border-radius: var(--bt-radius-sm); overflow: hidden; }
.bt-cart__qty-btn { width: 36px; height: 38px; background: var(--bt-bg-3); border: 0; color: var(--bt-text); font-size: 18px; cursor: pointer; transition: background .2s; }
.bt-cart__qty-btn:hover { background: var(--bt-accent); color: var(--bt-accent-ink); }
.bt-cart__qty-input { width: 48px; height: 38px; text-align: center; background: var(--bt-bg); border: 0; border-left: 1px solid var(--bt-line); border-right: 1px solid var(--bt-line); color: var(--bt-text); font-size: 15px; -moz-appearance: textfield; }
.bt-cart__qty-input::-webkit-outer-spin-button, .bt-cart__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bt-cart__remove { display: grid; place-items: center; width: 38px; height: 38px; background: transparent; border: 1px solid var(--bt-line); border-radius: var(--bt-radius-sm); color: var(--bt-text-dim); cursor: pointer; transition: all .2s; }
.bt-cart__remove:hover { border-color: var(--bt-danger); color: var(--bt-danger); }
.bt-cart__remove .bt-ico { width: 17px; height: 17px; }
.bt-cart__actions { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 18px 22px; }

.bt-cart__summary-box { background: var(--bt-surface); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg); padding: 24px; position: sticky; top: 100px; }
.bt-cart__summary-title { font-size: 18px; text-transform: uppercase; margin-bottom: 18px; }
.bt-cart__coupon { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--bt-line); }
.bt-cart__coupon-form { display: flex; gap: 8px; margin-top: 7px; }
.bt-cart__coupon-form input { flex: 1; background: var(--bt-bg); border: 1px solid var(--bt-line-2); color: var(--bt-text); border-radius: var(--bt-radius-sm); padding: 11px 14px; font-size: 14px; }
.bt-cart__coupons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.bt-cart__coupon-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 100px; background: rgba(54,196,122,.14); border: 1px solid rgba(54,196,122,.4); color: var(--bt-success); font-size: 13px; font-weight: 700; }
.bt-cart__coupon-tag .bt-ico { width: 14px; height: 14px; }
.bt-cart__coupon-remove { background: transparent; border: 0; color: inherit; cursor: pointer; display: grid; place-items: center; padding: 0; }
.bt-cart__coupon-remove .bt-ico { width: 13px; height: 13px; }
.bt-cart__rows { display: grid; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--bt-line); }
.bt-cart__row { display: flex; justify-content: space-between; font-size: 15px; color: var(--bt-text-soft); }
.bt-cart__row--discount { color: var(--bt-success); }
.bt-cart__total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: nowrap; font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.bt-cart__total > span:last-child { white-space: nowrap; text-align: right; }
.bt-cart__total .woocommerce-Price-amount { white-space: nowrap; }
.bt-cart__total [data-bt-total], .bt-cart__total [data-bt-co-total] { color: var(--bt-accent); }
.bt-cart__guarantees { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--bt-line); display: grid; gap: 12px; }
.bt-cart__guarantees li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--bt-text-soft); }
.bt-cart__guarantees .bt-ico { width: 18px; height: 18px; color: var(--bt-accent); flex: none; }

/* =================================================================
   CHECKOUT
   ================================================================= */
.bt-checkout { padding-block: clamp(40px, 5vw, 64px); }
.bt-checkout__layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.bt-checkout__box { background: var(--bt-surface); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg); padding: clamp(22px, 3vw, 32px); margin-bottom: 20px; }
.bt-checkout__box-title { display: flex; align-items: center; gap: 12px; font-size: 18px; text-transform: uppercase; margin-bottom: 20px; }
.bt-checkout__num { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--bt-accent); color: var(--bt-accent-ink); font-size: 15px; flex: none; }
.bt-checkout__optional { font-size: 13px; color: var(--bt-text-dim); text-transform: none; font-weight: 400; }
.bt-checkout__login { background: var(--bt-bg-3); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-sm); padding: 12px 16px; font-size: 14px; color: var(--bt-text-soft); margin-bottom: 18px; }
.bt-checkout__login a { color: var(--bt-accent); }
.bt-checkout__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bt-checkout__form .bt-field { margin-bottom: 16px; }
.bt-checkout__grid .bt-field { margin-bottom: 0; }
.bt-checkout__invoice { margin-top: 14px; }

.bt-checkout__methods { display: grid; gap: 12px; }
.bt-checkout__method { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--bt-bg-3); border: 1px solid var(--bt-line); border-radius: var(--bt-radius); cursor: pointer; transition: border-color .2s; }
.bt-checkout__method:hover { border-color: var(--bt-line-2); }
.bt-checkout__method.is-selected { border-color: var(--bt-accent); background: rgba(255,193,7,.07); }
.bt-checkout__method input { position: absolute; opacity: 0; }
.bt-checkout__radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--bt-line-2); flex: none; position: relative; transition: border-color .2s; }
.bt-checkout__method.is-selected .bt-checkout__radio { border-color: var(--bt-accent); }
.bt-checkout__method.is-selected .bt-checkout__radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--bt-accent); }
.bt-checkout__method-name { flex: 1; font-weight: 600; }
.bt-checkout__method-price { font-weight: 700; color: var(--bt-accent); }
.bt-checkout__method-icon img { max-height: 24px; width: auto; }
.bt-checkout__pay-wrap { display: grid; }
.bt-checkout__pay-fields { padding: 14px 18px; font-size: 14px; color: var(--bt-text-soft); background: var(--bt-bg); border: 1px solid var(--bt-line); border-top: 0; border-radius: 0 0 var(--bt-radius) var(--bt-radius); }
.bt-checkout__pay-fields p { margin: 0 0 8px; }

.bt-checkout__summary { background: var(--bt-surface); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg); padding: 24px; position: sticky; top: 100px; }
.bt-checkout__products { display: grid; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--bt-line); }
.bt-checkout__product { display: flex; align-items: center; gap: 12px; }
.bt-checkout__product-thumb { position: relative; width: 48px; height: 48px; border-radius: var(--bt-radius-sm); overflow: hidden; background: var(--bt-bg-3); flex: none; }
.bt-checkout__product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bt-checkout__product-qty { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px; display: grid; place-items: center; background: var(--bt-accent); color: var(--bt-accent-ink); font-size: 11px; font-weight: 700; border-radius: 100px; border: 2px solid var(--bt-surface); }
.bt-checkout__product-name { flex: 1; font-size: 13.5px; line-height: 1.35; }
.bt-checkout__product-price { font-weight: 700; font-size: 14px; white-space: nowrap; }
.bt-checkout__agreements { margin: 18px 0; }
.bt-checkout__edit { display: block; text-align: center; margin-top: 14px; color: var(--bt-text-dim); font-size: 14px; }
.bt-checkout__edit:hover { color: var(--bt-accent); }

/* Checkbox (zgody/faktura) */
.bt-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: var(--bt-text-soft); line-height: 1.5; margin-top: 8px; }
.bt-check input { width: 20px; height: 20px; margin: 0; flex: none; accent-color: var(--bt-accent); cursor: pointer; }
.bt-check a { color: var(--bt-accent); }

/* =================================================================
   PODZIĘKOWANIE
   ================================================================= */
.bt-ty { padding-block: clamp(48px, 6vw, 80px); max-width: 920px; }
/* Gwarantowany odstęp przed stopką (po padding-block powyżej). */
.bt-cart, .bt-checkout, .bt-ty { padding-bottom: clamp(72px, 9vw, 120px) !important; }
.bt-ty__head { text-align: center; margin-bottom: 40px; }
.bt-ty__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; margin-bottom: 20px; }
.bt-ty__icon .bt-ico { width: 34px; height: 34px; }
.bt-ty__icon--ok { background: rgba(54,196,122,.16); color: var(--bt-success); }
.bt-ty__title { font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; margin-bottom: 12px; }
.bt-ty__sub { font-size: 17px; color: var(--bt-text-soft); }
.bt-ty__email { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 14px; color: var(--bt-text-dim); }
.bt-ty__email .bt-ico { width: 16px; height: 16px; }
.bt-ty__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.bt-ty__total-row td { border-top: 1px solid var(--bt-line); padding-top: 16px; font-size: 17px; }
.bt-ty__total-row td strong { color: var(--bt-accent); }
.bt-ty__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* =================================================================
   MOJE KONTO
   ================================================================= */
.bt-acc { padding-block: clamp(40px, 5vw, 64px); }

/* --- Logowanie / rejestracja --- */
.bt-acc__auth { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.bt-acc__box {
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg); padding: clamp(24px, 3vw, 38px);
}
.bt-acc__box-title { display: flex; align-items: center; gap: 10px; font-size: 20px; text-transform: uppercase; margin-bottom: 18px; }
.bt-acc__box-title .bt-ico { width: 22px; height: 22px; color: var(--bt-accent); }
.bt-acc__box-sub { color: var(--bt-text-soft); font-size: 14.5px; margin-bottom: 18px; }
.bt-acc__benefits { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.bt-acc__benefits li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--bt-text-soft); }
.bt-acc__benefits .bt-ico { width: 18px; height: 18px; color: var(--bt-success); flex: none; }
.bt-acc__form { display: grid; gap: 16px; }
.bt-acc__form-row { display: flex; justify-content: flex-end; }
.bt-acc__link { color: var(--bt-accent); font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.bt-acc__link .bt-ico { width: 15px; height: 15px; }
.bt-acc__hint { font-size: 13px; color: var(--bt-text-dim); line-height: 1.5; }
.bt-acc__hint a { color: var(--bt-accent); }

/* --- Panel zalogowanego --- */
.bt-acc__panel { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.bt-acc__sidebar {
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg); padding: 22px; position: sticky; top: 100px;
}
.bt-acc__user { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--bt-line); }
.bt-acc__avatar img { width: 52px; height: 52px; border-radius: 50%; display: block; }
.bt-acc__greeting { display: block; font-size: 13px; color: var(--bt-text-dim); }
.bt-acc__name { display: block; font-size: 17px; font-weight: 700; }
.bt-acc__nav { display: grid; gap: 4px; }
.bt-acc__nav-item {
	display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--bt-radius-sm);
	color: var(--bt-text-soft); text-decoration: none; font-weight: 600; font-size: 14.5px; transition: all .2s;
}
.bt-acc__nav-item .bt-ico { width: 19px; height: 19px; flex: none; }
.bt-acc__nav-item:hover { background: var(--bt-bg-3); color: var(--bt-text); }
.bt-acc__nav-item.is-active { background: var(--bt-accent); color: var(--bt-accent-ink); }
.bt-acc__nav-item--logout { color: var(--bt-danger); margin-top: 6px; border-top: 1px solid var(--bt-line); border-radius: 0 0 var(--bt-radius-sm) var(--bt-radius-sm); padding-top: 14px; }
.bt-acc__nav-item--logout:hover { background: rgba(255,87,87,.1); color: var(--bt-danger); }

.bt-acc__content {
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg); padding: clamp(24px, 3vw, 38px); min-height: 400px;
}
.bt-acc__title { font-size: clamp(24px, 3vw, 32px); text-transform: uppercase; margin-bottom: 10px; }
.bt-acc__lead { color: var(--bt-text-soft); margin-bottom: 28px; }

/* Statystyki */
.bt-acc__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.bt-acc__stat { background: var(--bt-bg-3); border: 1px solid var(--bt-line); border-radius: var(--bt-radius); padding: 22px; text-align: center; }
.bt-acc__stat-ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,193,7,.14); color: var(--bt-accent); margin-bottom: 10px; }
.bt-acc__stat-ico .bt-ico { width: 22px; height: 22px; }
.bt-acc__stat-val { display: block; font-size: 30px; font-weight: 800; line-height: 1; }
.bt-acc__stat-lbl { display: block; font-size: 13px; color: var(--bt-text-dim); text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }

/* Sekcje / nagłówki */
.bt-acc__section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bt-acc__section-head h3 { font-size: 18px; text-transform: uppercase; }

/* Lista zamówień (dashboard) */
.bt-acc__orders { display: grid; gap: 10px; }
.bt-acc__order {
	display: grid; grid-template-columns: auto auto 1fr auto; gap: 14px; align-items: center;
	padding: 16px; background: var(--bt-bg-3); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius); text-decoration: none; transition: border-color .2s, transform .2s;
}
.bt-acc__order:hover { border-color: var(--bt-line-2); transform: translateX(3px); }
.bt-acc__order-num { font-weight: 700; }
.bt-acc__order-date { color: var(--bt-text-dim); font-size: 14px; }
.bt-acc__order-total { font-weight: 700; color: var(--bt-accent); }

/* Status zamówienia */
.bt-acc__status { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--bt-bg-3); border: 1px solid var(--bt-line); }
.bt-acc__status--completed { background: rgba(54,196,122,.16); color: var(--bt-success); border-color: rgba(54,196,122,.4); }
.bt-acc__status--processing { background: rgba(255,193,7,.16); color: var(--bt-accent); border-color: rgba(255,193,7,.4); }
.bt-acc__status--on-hold { background: rgba(255,140,0,.16); color: #ff8c00; border-color: rgba(255,140,0,.4); }
.bt-acc__status--cancelled,
.bt-acc__status--failed { background: rgba(255,87,87,.14); color: var(--bt-danger); border-color: rgba(255,87,87,.4); }

/* Tabele */
.bt-acc__table-wrap { overflow-x: auto; }
.bt-acc__table { width: 100%; border-collapse: collapse; }
.bt-acc__table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--bt-text-dim); padding: 12px 14px; border-bottom: 1px solid var(--bt-line); }
.bt-acc__table td { padding: 14px; border-bottom: 1px solid var(--bt-line); font-size: 14.5px; }
.bt-acc__table tfoot td { border-bottom: 0; padding-top: 18px; }

/* Karty (zamówienie, adresy) */
.bt-acc__order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.bt-acc__card { background: var(--bt-bg-3); border: 1px solid var(--bt-line); border-radius: var(--bt-radius); padding: 22px; }
.bt-acc__card h3 { font-size: 16px; text-transform: uppercase; margin-bottom: 14px; }
.bt-acc__card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bt-acc__card-head h3 { margin-bottom: 0; }
.bt-acc__info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.bt-acc__info-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; padding-bottom: 10px; border-bottom: 1px dashed var(--bt-line); }
.bt-acc__info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.bt-acc__info-list span { color: var(--bt-text-dim); }
.bt-acc__address { font-style: normal; line-height: 1.7; color: var(--bt-text-soft); }
.bt-acc__addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bt-acc__muted { color: var(--bt-text-dim); font-size: 14px; }
.bt-acc__back { display: inline-flex; align-items: center; gap: 8px; color: var(--bt-accent); font-weight: 600; font-size: 14px; margin-bottom: 14px; text-decoration: none; }
.bt-acc__back .bt-ico { width: 16px; height: 16px; transform: rotate(180deg); }

/* Formularze konta */
.bt-acc__form--wide { max-width: 640px; }
.bt-acc__fieldset { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--bt-line); }
.bt-acc__fieldset:last-of-type { border-bottom: 0; }
.bt-acc__fieldset h3 { font-size: 17px; text-transform: uppercase; margin-bottom: 16px; }
.bt-acc__form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Modale konta */
.bt-acc__modal { position: fixed; inset: 0; z-index: 1210; display: grid; place-items: center; padding: 20px; }
.bt-acc__modal[hidden] { display: none; }
.bt-acc__modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); opacity: 0; transition: opacity .3s; }
.bt-acc__modal.is-open .bt-acc__modal-overlay { opacity: 1; }
.bt-acc__modal-box {
	position: relative; width: min(520px, 100%); max-height: 88vh; overflow-y: auto;
	background: var(--bt-bg-2); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg);
	padding: 28px; transform: translateY(16px) scale(.98); opacity: 0;
	transition: transform .32s var(--bt-ease), opacity .32s;
}
.bt-acc__modal.is-open .bt-acc__modal-box { transform: none; opacity: 1; }
.bt-acc__modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bt-acc__modal-foot { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; margin-top: 6px; }

/* Back to top */
.bt-totop {
	position: fixed; right: 18px; bottom: 18px; z-index: 1100;
	width: 48px; height: 48px; display: grid; place-items: center;
	background: var(--bt-accent); color: var(--bt-accent-ink);
	border: 0; border-radius: 50%; cursor: pointer;
	box-shadow: var(--bt-shadow-accent);
	opacity: 0; visibility: hidden; transform: translateY(12px);
	transition: opacity .3s, visibility .3s, transform .3s var(--bt-ease), background .2s;
}
.bt-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.bt-totop .bt-ico { width: 22px; height: 22px; }
.bt-totop:hover { background: var(--bt-accent-2); transform: translateY(-3px); }

/* Pusto */
.bt-empty {
	grid-column: 1 / -1; text-align: center; padding: 80px 20px;
	color: var(--bt-text-dim); font-size: 18px; font-weight: 500;
}

/* 404 */
.bt-404 { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.bt-404__code {
	font-size: clamp(90px, 22vw, 220px); font-weight: 700; line-height: .9;
	color: transparent; -webkit-text-stroke: 2px var(--bt-accent);
	letter-spacing: .02em;
}
.bt-404__title { font-size: clamp(24px, 4vw, 40px); text-transform: uppercase; }
.bt-404 p { color: var(--bt-text-soft); max-width: 44ch; margin-bottom: 12px; }

/* =================================================================
   WOOCOMMERCE — STRONA SKLEPU / KATEGORII
   ================================================================= */
.bt-shop-wrap { padding-block: 0; }
.bt-shop-wrap.bt-shop-wrap--steps { padding-top: clamp(40px, 6vw, 72px); }

/* HERO sklepu / kategorii / promocji */
.bt-shop-hero {
	position: relative; overflow: hidden;
	background: var(--bt-bg-2);
	padding-block: clamp(48px, 7vw, 96px);
	margin-bottom: 8px;
	border-bottom: 1px solid var(--bt-line);
}
.bt-shop-hero--bg { background-image: var(--bt-shop-hero-bg); background-size: cover; background-position: center; }
.bt-shop-hero__overlay {
	position: absolute; inset: 0; pointer-events: none;
	background:
		linear-gradient( to right, rgba(12,12,14,.96) 0%, rgba(12,12,14,.82) 45%, rgba(12,12,14,.62) 100% ),
		linear-gradient( to bottom, rgba(12,12,14,.5), rgba(12,12,14,.88) );
}
.bt-shop-hero--bg .bt-shop-hero__overlay {
	/* mocniejsze przyciemnienie gdy jest zdjęcie */
	background:
		linear-gradient( to right, rgba(8,8,10,.92) 0%, rgba(8,8,10,.78) 50%, rgba(8,8,10,.62) 100% ),
		radial-gradient( 120% 140% at 0% 0%, rgba(255,193,7,.10), transparent 55% );
}
.bt-shop-hero__inner { position: relative; z-index: 1; }
.bt-breadcrumb { font-size: 13px; color: var(--bt-text-dim); margin-bottom: 22px; }
.bt-breadcrumb a { color: var(--bt-text-soft); text-decoration: none; transition: color .2s; }
.bt-breadcrumb a:hover { color: var(--bt-accent); }
.bt-breadcrumb__sep { margin: 0 8px; opacity: .5; }
.bt-shop-hero__kicker {
	display: inline-flex; align-items: center; gap: 7px;
	margin-bottom: 14px; padding: 6px 14px;
	background: rgba(255,193,7,.14); border: 1px solid rgba(255,193,7,.3);
	color: var(--bt-accent); font-size: 12px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase; border-radius: 6px;
}
.bt-shop-hero__title {
	font-size: clamp(38px, 6vw, 72px); text-transform: uppercase; line-height: .98; margin-bottom: 16px;
	text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.bt-accent-text { color: var(--bt-accent); }
.bt-shop-hero__desc { color: var(--bt-text-soft); font-size: clamp(15px, 1.4vw, 18px); max-width: 60ch; }
.bt-shop-hero--wide .bt-shop-hero__desc { max-width: none; }

/* Grid: sidebar + treść */
.bt-shop { padding-top: 40px; padding-bottom: 64px; }
.bt-shop--listing {
	display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start;
}
.bt-shop__main { min-width: 0; }

/* --- SIDEBAR FILTRÓW --- */
.bt-shop__sidebar {
	position: sticky; top: 96px;
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg); padding: 22px;
	max-height: calc(100vh - 120px); overflow-y: auto;
}
.bt-filters__head {
	display: flex; align-items: center; justify-content: space-between;
	padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--bt-line);
}
.bt-filters__title {
	display: flex; align-items: center; gap: 9px;
	font-size: 17px; text-transform: uppercase; letter-spacing: .04em;
}
.bt-filters__title .bt-ico { width: 18px; height: 18px; color: var(--bt-accent); }
.bt-filters__clear { font-size: 12.5px; color: var(--bt-accent); text-decoration: none; }
.bt-filters__clear:hover { text-decoration: underline; }
.bt-filters__close { display: none; }
.bt-filters-overlay {
	position: fixed; inset: 0; z-index: 1090; background: rgba(0,0,0,.6);
	opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.bt-filters-overlay.is-open { opacity: 1; visibility: visible; }
body.bt-filters-open { overflow: hidden; }

.bt-filter { padding: 18px 0; border-bottom: 1px solid var(--bt-line); }
.bt-filter:last-child { border-bottom: 0; }
.bt-filter__heading {
	font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
	color: var(--bt-text-dim); font-weight: 700; margin-bottom: 14px;
}
.bt-filter__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 3px; }
.bt-filter__list--child { margin: 4px 0 4px 16px; padding-left: 10px; border-left: 1px solid var(--bt-line); }
.bt-filter__check {
	display: flex; align-items: center; gap: 10px;
	padding: 7px 8px; border-radius: var(--bt-radius-sm);
	text-decoration: none; color: var(--bt-text-soft); font-size: 14px;
	transition: background .2s, color .2s;
}
.bt-filter__check:hover { background: var(--bt-bg-3); color: var(--bt-text); }
.bt-filter__box {
	flex: none; width: 18px; height: 18px; border-radius: 5px;
	border: 1.5px solid var(--bt-line-2); display: grid; place-items: center;
	transition: background .2s, border-color .2s;
}
.bt-filter__box .bt-ico { width: 13px; height: 13px; color: var(--bt-accent-ink); }
.bt-filter__check.is-checked .bt-filter__box { background: var(--bt-accent); border-color: var(--bt-accent); }
.bt-filter__check.is-checked { color: var(--bt-text); font-weight: 600; }
.bt-filter__name { flex: 1; }
.bt-filter__count { font-size: 12px; color: var(--bt-text-dim); font-variant-numeric: tabular-nums; }

.bt-filter__price-row { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 12px; }
.bt-filter__price-row label { flex: 1; display: flex; flex-direction: column; gap: 5px; font-size: 12px; color: var(--bt-text-dim); }
.bt-filter__price-row input {
	width: 100%; height: 42px; padding: 0 12px;
	background: var(--bt-bg); border: 1px solid var(--bt-line-2);
	color: var(--bt-text); font-family: inherit; font-size: 14px; border-radius: var(--bt-radius-sm);
}
.bt-filter__price-row input:focus { outline: none; border-color: var(--bt-accent); }
.bt-filter__price-sep { padding-bottom: 12px; color: var(--bt-text-dim); }

/* --- PASEK NARZĘDZI --- */
.bt-shop-toolbar {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 14px 18px; margin-bottom: 24px;
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius); flex-wrap: wrap;
}
.bt-shop-toolbar__left { color: var(--bt-text-soft); font-size: 14px; display: flex; align-items: center; gap: 14px; }
.bt-filters-toggle { display: none; }
.bt-shop-toolbar__right { display: flex; align-items: center; gap: 14px; }
.bt-shop-toolbar .woocommerce-result-count { margin: 0; }
.bt-shop-toolbar .woocommerce-ordering, .bt-shop-toolbar .bt-promo-ordering { margin: 0; }
.bt-shop-toolbar .woocommerce-ordering select,
.bt-shop-toolbar .bt-promo-ordering select {
	background: var(--bt-bg); color: var(--bt-text);
	border: 1px solid var(--bt-line-2); border-radius: var(--bt-radius-sm);
	padding: 9px 36px 9px 14px; font-family: inherit; font-size: 14px; cursor: pointer;
	-webkit-appearance: none; appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center;
}
.bt-shop-toolbar .woocommerce-ordering select:focus,
.bt-shop-toolbar .bt-promo-ordering select:focus { outline: none; border-color: var(--bt-accent); }

.bt-view-toggle { display: flex; gap: 4px; background: var(--bt-bg); border: 1px solid var(--bt-line-2); border-radius: var(--bt-radius-sm); padding: 3px; }
.bt-view-toggle__btn {
	width: 36px; height: 36px; display: grid; place-items: center;
	background: transparent; border: 0; border-radius: 6px; cursor: pointer;
	color: var(--bt-text-dim); transition: background .2s, color .2s;
}
.bt-view-toggle__btn .bt-ico { width: 18px; height: 18px; }
.bt-view-toggle__btn.is-active { background: var(--bt-accent); color: var(--bt-accent-ink); }

/* Siatka produktów w sklepie (WooCommerce <ul.products>) */
.woocommerce ul.products,
ul.products {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	list-style: none; margin: 0; padding: 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; display: none; }
ul.products li.product {
	width: auto !important; margin: 0 !important; float: none !important; padding: 0;
}

/* Front: siatka produktów (zachowana) */
.woocommerce .bt-products-grid,
.bt-products-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

/* Widok LISTA */
ul.products.bt-view-list { grid-template-columns: 1fr; gap: 16px; }
ul.products.bt-view-list li.product .bt-product { display: grid; grid-template-columns: 220px 1fr; align-items: stretch; }
ul.products.bt-view-list .bt-product__media { aspect-ratio: auto; }
ul.products.bt-view-list .bt-product__body { padding: 24px; }

/* Status na zamówienie / brak */
.bt-product__stock--back { color: var(--bt-accent); }
.bt-product__stock--out { color: var(--bt-text-dim); }

/* --- PAGINACJA --- */
.bt-shop nav.woocommerce-pagination ul,
nav.woocommerce-pagination ul { display: flex; gap: 8px; list-style: none; padding: 0; justify-content: center; margin-top: 44px; border: 0; }
nav.woocommerce-pagination ul li { border: 0; margin: 0; }
nav.woocommerce-pagination a, nav.woocommerce-pagination span {
	display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
	background: var(--bt-surface); border: 1px solid var(--bt-line); border-radius: var(--bt-radius-sm);
	color: var(--bt-text); text-decoration: none; font-weight: 600; transition: all .2s;
}
nav.woocommerce-pagination a:hover { border-color: var(--bt-accent); color: var(--bt-accent); }
nav.woocommerce-pagination .current { background: var(--bt-accent); color: var(--bt-accent-ink); border-color: var(--bt-accent); }

/* --- KOMUNIKAT "BRAK PRODUKTÓW" --- */
.bt-no-products {
	grid-column: 1 / -1;
	display: flex; flex-direction: column; align-items: center; text-align: center;
	gap: 16px; padding: clamp(40px, 7vw, 80px) 24px;
	background: var(--bt-surface); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg);
}
.bt-no-products__icon {
	display: grid; place-items: center; width: 76px; height: 76px;
	border-radius: 20px; background: var(--bt-bg-3); border: 1px solid var(--bt-line);
	color: var(--bt-accent);
}
.bt-no-products__icon .bt-ico { width: 34px; height: 34px; }
.bt-no-products__title { font-size: clamp(22px, 3vw, 30px); text-transform: uppercase; }
.bt-no-products__text { color: var(--bt-text-soft); font-size: 16px; max-width: 52ch; }
.bt-no-products .bt-btn { margin-top: 8px; }

/* --- BANER "NIE ZNALAZŁEŚ CZĘŚCI?" --- */
.bt-shop-cta-wrap { padding-top: 0; }
.bt-shop-cta {
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
	padding: clamp(28px, 4vw, 44px);
	background: linear-gradient(120% 120% at 0% 0%, rgba(255,193,7,.10), transparent 60%), var(--bt-surface);
	border: 1px solid var(--bt-line); border-radius: var(--bt-radius-lg);
	flex-wrap: wrap;
}
.bt-shop-cta__title {
	display: flex; align-items: center; gap: 12px;
	font-size: clamp(22px, 2.6vw, 30px); text-transform: uppercase; margin-bottom: 10px;
}
.bt-shop-cta__title .bt-ico { width: 28px; height: 28px; color: var(--bt-accent); }
.bt-shop-cta__text p { color: var(--bt-text-soft); font-size: 15px; max-width: 64ch; }
.bt-shop-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Karta produktu na stronie pojedynczego produktu — wrapper */
.bt-shop:not(.bt-shop--listing) .bt-shop__main { width: 100%; }


/* =================================================================
   RESPONSYWNOŚĆ
   ================================================================= */

/* ---- <= 1100px : tablet poziomy ---- */
@media (max-width: 1100px) {
	.bt-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.bt-hero__finder { max-width: 560px; }
	.bt-categories__grid { grid-template-columns: repeat(3, 1fr); }
	.bt-products-grid, .woocommerce .bt-products-grid { grid-template-columns: repeat(2, 1fr); }
	.bt-features__grid { grid-template-columns: repeat(2, 1fr); }
	.bt-cta__grid { grid-template-columns: 1fr; }
	.bt-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
	.bt-posts { grid-template-columns: repeat(2, 1fr); }
	.bt-shop--listing { grid-template-columns: 220px 1fr; gap: 22px; }
	.woocommerce ul.products, ul.products { grid-template-columns: repeat(2, 1fr); }
	.bt-contact-page__grid { grid-template-columns: 1fr; }
	.bt-acc__panel { grid-template-columns: 1fr; }
	.bt-acc__sidebar { position: static; }
	.bt-acc__auth { grid-template-columns: 1fr; }
	.bt-cart__layout { grid-template-columns: 1fr; }
	.bt-checkout__layout { grid-template-columns: 1fr; }
	.bt-checkout__grid { grid-template-columns: 1fr; }
	.bt-cart__summary-box, .bt-checkout__summary { position: static; }
	.bt-pdp__main { grid-template-columns: 1fr; }
	.bt-pdp__gallery { position: static; }
}

/* ---- <= 860px : tablet / duży telefon — chowamy desktopową nawigację ---- */
@media (max-width: 860px) {
	:root { --bt-gutter: 18px; }

	.bt-nav { display: none; }
	.bt-burger { display: inline-grid; }
	.bt-search-toggle { display: inline-grid; } /* szukanie dostępne także jako ikona */

	/* Ikony (szukaj, konto, lista życzeń, koszyk) wyśrodkowane, hamburger dopchnięty do prawej. */
	.bt-navbar__actions { flex: 1; justify-content: center; gap: 8px; }
	.bt-logo img { max-height: 45px; }
	/* Mniejsze ikony, by zmieściły się na wąskim ekranie. */
	.bt-iconbtn { width: 40px; height: 40px; border-radius: 9px; }
	.bt-iconbtn .bt-ico { width: 18px; height: 18px; }

	.bt-topbar__left { gap: 14px; }
	.bt-topbar__left li:nth-child(n+2) { display: none; } /* zostaw 1 info na wąskim */
	.bt-topbar { font-size: 12px; }

	.bt-promo__inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
	.bt-promo__side { align-items: flex-start; }

	/* Szczegóły zamówienia: kafle adres/informacje jeden pod drugim (nie ściśnięte). */
	.bt-acc__order-grid, .bt-acc__addresses { grid-template-columns: 1fr; }
	.bt-ty__grid { grid-template-columns: 1fr; }

	.bt-section { padding-block: 56px; }
	.bt-hero { padding-block: 56px 64px; }

	/* Sklep: sidebar → panel wysuwany od lewej */
	.bt-shop--listing { grid-template-columns: 1fr; }
	.bt-filters-toggle { display: inline-flex !important; }
	.bt-shop__sidebar {
		position: fixed; top: 0; left: 0; z-index: 1100;
		width: min(340px, 88vw); height: 100%; max-height: none;
		overflow-y: auto; -webkit-overflow-scrolling: touch;
		border-radius: 0; border-left: 0; border-right: 1px solid var(--bt-line);
		transform: translateX(-100%); transition: transform .4s var(--bt-ease);
		box-shadow: 20px 0 60px rgba(0,0,0,.5);
	}
	body.bt-filters-open .bt-shop__sidebar { transform: translateX(0); }
	.bt-filters__close { display: inline-grid; }
	.woocommerce ul.products, ul.products { grid-template-columns: repeat(2, 1fr); }

	/* Koszyk: pozycje jako karty (już od tabletu, by qty się nie ucinało). */
	.bt-cart__layout { grid-template-columns: 1fr; }
	.bt-cart__summary-box { position: static; }
	.bt-cart__head { display: none; }
	.bt-cart__item { display: flex !important; flex-direction: column; gap: 0; padding: 16px; grid-template-columns: none !important; }
	.bt-cart__col-product { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; width: 100%; }
	.bt-cart__thumb { width: 56px; height: 56px; }
	.bt-cart__col-price, .bt-cart__col-qty, .bt-cart__col-total {
		display: flex !important; align-items: center; justify-content: space-between;
		padding: 10px 0; border-top: 1px solid var(--bt-line); width: 100%; margin: 0;
	}
	.bt-cart__col-price::before, .bt-cart__col-qty::before, .bt-cart__col-total::before {
		content: attr(data-label); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--bt-text-dim); font-weight: 700;
	}
	.bt-cart__col-qty .bt-cart__qty { flex: none; }
	.bt-cart__col-remove { width: 100%; margin-top: 12px; }
	.bt-cart__col-remove .bt-cart__remove { display: inline-flex; flex-direction: row; align-items: center; justify-content: center; width: 100%; height: 44px; gap: 8px; border: 1px solid var(--bt-line); border-radius: var(--bt-radius-sm); }
	.bt-cart__col-remove .bt-cart__remove .bt-ico { width: 18px; height: 18px; flex: none; }
	.bt-cart__col-remove .bt-cart__remove::after { content: "Usuń produkt"; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; line-height: 1; }
	.bt-cart__actions { flex-direction: column; }
	.bt-cart__actions .bt-btn { width: 100%; justify-content: center; }

	/* Konto: tabele (zamówienia, pozycje) jako karty — bez rozjeżdżania. */
	.bt-acc__table-wrap { overflow-x: visible; }
	.bt-acc__table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.bt-acc__table, .bt-acc__table tbody, .bt-acc__table tr, .bt-acc__table td { display: block; width: 100%; }
	.bt-acc__table tr { background: var(--bt-bg-3); border: 1px solid var(--bt-line); border-radius: var(--bt-radius); padding: 6px 14px; margin-bottom: 12px; }
	.bt-acc__table td { border-bottom: 1px solid var(--bt-line); padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: right; }
	.bt-acc__table td:last-child { border-bottom: 0; }
	.bt-acc__table td::before { content: attr(data-label); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--bt-text-dim); font-weight: 700; text-align: left; }
	.bt-acc__table td[data-label=""]::before { display: none; }
	.bt-acc__table td[data-label=""] .bt-btn { width: 100%; justify-content: center; }
	.bt-acc__table td[data-label=""] { padding-top: 12px; }
	/* Stopka tabeli (Razem): etykieta i wartość w jednej linii. */
	.bt-acc__table tfoot { display: block; }
	.bt-acc__table tfoot tr { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; background: transparent; border: 0; border-top: 1px solid var(--bt-line); border-radius: 0; padding: 12px 0 0; margin: 0; }
	.bt-acc__table tfoot td { display: inline; width: auto; border: 0; padding: 0; text-align: left; }
	.bt-acc__table tfoot td::before { display: none; }
	.bt-acc__table tfoot td:last-child { text-align: right; white-space: nowrap; font-weight: 800; }

	/* Szczegóły zamówienia: kafle „Informacje" i „Adres dostawy" jeden pod drugim. */
	.bt-acc__order-grid, .bt-acc__addresses { grid-template-columns: 1fr; }
}

/* ---- <= 620px : telefon ---- */
@media (max-width: 620px) {
	.bt-hero__title { font-size: clamp(34px, 11vw, 52px); }
	.bt-hero__actions { flex-direction: column; align-items: stretch; }
	.bt-hero__actions .bt-btn { width: 100%; justify-content: center; }

	.bt-finder__row { grid-template-columns: 1fr; }

	.bt-categories__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	/* Wszystkie siatki produktów: 1 w rzędzie na telefonie. */
	.bt-products-grid, .woocommerce .bt-products-grid { grid-template-columns: 1fr; }
	.woocommerce ul.products, ul.products, .bt-search__products { grid-template-columns: 1fr; }
	.bt-wishlist__grid { grid-template-columns: 1fr; }
	.bt-features__grid { grid-template-columns: 1fr; }
	.bt-posts { grid-template-columns: 1fr; }
	.bt-footer__top { grid-template-columns: 1fr; }

	.bt-newsletter, .bt-contact { padding: 26px 22px; }
	.bt-newsletter__form { flex-direction: column; }
	.bt-newsletter__form .bt-btn { width: 100%; justify-content: center; }

	.bt-contact__list > div { grid-template-columns: 1fr; gap: 4px; }

	.bt-section__head { flex-direction: column; align-items: flex-start; gap: 14px; }

	.bt-footer__bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }

	.bt-topbar__right li:last-child { display: none; } /* ukryj e-mail, zostaw telefon */

	/* Header: jeszcze mniejsze ikony i hamburger, by nie ucinało na wąskim ekranie. */
	.bt-iconbtn { width: 36px; height: 36px; border-radius: 8px; }
	.bt-iconbtn .bt-ico { width: 17px; height: 17px; }
	.bt-navbar__actions { gap: 5px; }
	.bt-navbar__inner { gap: 8px; }
	.bt-cart-count, .bt-wish-count { min-width: 17px; height: 17px; font-size: 10px; top: -5px; right: -5px; }

	/* Oś etapów: tylko numerki, etykiety ukryte na telefonie. */
	.bt-steps__label { display: none; }
	.bt-steps__num { width: 34px; height: 34px; font-size: 15px; }
	.bt-steps__line { margin: 0 8px; }

	/* Karta/koszyk/checkout — drobne korekty. */
	.bt-checkout__features, .bt-pdp__features { grid-template-columns: 1fr; }
	.bt-search__form { flex-wrap: wrap; }
}

/* ---- bardzo wąskie ---- */
@media (max-width: 380px) {
	.bt-categories__grid { grid-template-columns: 1fr; }
	.bt-countdown__unit { min-width: 54px; }
}
/* =================================================================
   FURGONETKA — mapa / punkt odbioru w customowym checkoucie
   DOKLEJ TEN BLOK NA KOŃCU pliku assets/css/main.css
   (jeśli wgrywałeś poprzednią wersję tego bloku — ZASTĄP ją tą)
   ================================================================= */

/*
 * Wtyczka wstrzykuje markup przez hook woocommerce_after_shipping_rate
 * WEWNĄTRZ <label class="bt-checkout__method">. Wybijamy go do osobnego
 * wiersza pełnej szerokości (pod input) i stylujemy dyskretnie.
 *
 * WAŻNE: kontener (#select-point-container) ma być PRZEZROCZYSTY —
 * żółty jest TYLKO sam przycisk #select-point.
 */

/* Label metody dostawy: pozwól treści punktu zejść do nowej linii. */
.bt-checkout__method { flex-wrap: wrap; }

/* Wstrzyknięty kontener — osobny wiersz, pełna szerokość, BEZ tła. */
.bt-checkout__method #select-point-container,
.bt-checkout__method .furgonetka-map-container,
.bt-checkout__method .furgonetka_select_point {
	flex-basis: 100%;
	width: 100%;
	order: 99;                 /* zawsze pod nazwą i ceną */
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--bt-line);
	background: transparent;   /* żadnego żółtego tła na kontenerze */
	box-shadow: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

/* Etykieta („Zmień / wybierz punkt odbioru”) — drobny, przygaszony tekst. */
.bt-checkout__method #select-point-label,
.bt-checkout__method .furgonetka-point-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: black;
	margin: 0;
	background: transparent;
	cursor: pointer;
}

/* Sam przycisk wyboru punktu — kompaktowy, żółty (jak w motywie). */
.bt-checkout__method #select-point,
.bt-checkout__method a#select-point,
.bt-checkout__method button#select-point,
.bt-checkout__method .furgonetka-select-point-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;               /* NIE pełna szerokość */
	max-width: max-content;
	padding: 10px 18px;
	background: var(--bt-accent);
	color: var(--bt-accent-ink);
	font-family: var(--bt-ff);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .03em;
	text-transform: uppercase;
	line-height: 1.2;
	border: 0;
	border-radius: var(--bt-radius-sm);
	cursor: pointer;
	text-decoration: none;
	transition: background .25s var(--bt-ease), transform .25s var(--bt-ease), box-shadow .25s var(--bt-ease);
}
.bt-checkout__method #select-point:hover,
.bt-checkout__method a#select-point:hover,
.bt-checkout__method button#select-point:hover,
.bt-checkout__method .furgonetka-select-point-btn:hover {
	background: var(--bt-accent-2);
	transform: translateY(-1px);
	box-shadow: var(--bt-shadow-accent);
}

/* Nazwa/adres wybranego punktu — czytelny „chip” na ciemnym tle. */
.bt-checkout__method #selected-point,
.bt-checkout__method .furgonetka-selected-point {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	background: var(--bt-bg);
	border: 1px solid var(--bt-line-2);
	border-radius: var(--bt-radius-sm);
	color: var(--bt-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	word-break: break-word;
}
.bt-checkout__method #selected-point:empty { display: none; }

.bt-checkout__method.is-selected #selected-point,
.bt-checkout__method.is-selected .furgonetka-selected-point {
	border-color: rgba(255,193,7,.4);
}

/* Modal/mapa Furgonetki renderowana w body — nad wszystkim. */
.furgonetka-map-modal,
#furgonetka-map-modal,
.furgonetka-modal,
div[class*="furgonetka"][class*="modal"] {
	z-index: 2200 !important;
}

/* Zajętość formularza podczas AJAX (zmiana dostawy). */
.bt-checkout__form.is-busy { opacity: .6; pointer-events: none; transition: opacity .2s; }

/* =================================================================
   FURGONETKA — modal mapy na mobile (dopasowanie do ekranu)
   ================================================================= */

/*
 * Mapa (map.js) renderuje się jako iframe/overlay w <body>. Na mobile bywa
 * rozjechana, bo nie ma narzuconych wymiarów. Wymuszamy pełnoekranowy,
 * przewijalny kontener i iframe wypełniający go w 100%.
 *
 * Selektory celują w typowe kontenery mapy Furgonetki; są szerokie celowo,
 * bo markup map.js bywa różny między wersjami.
 */

/* Overlay / kontener mapy renderowany w body. */
body > div[class*="furgonetka"][class*="map"],
body > div[id*="furgonetka"][id*="map"],
.furgonetka-map-widget,
#furgonetka-map,
.furgonetka-map-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2200 !important;
	max-width: 100vw !important;
	max-height: 100dvh !important;
	width: 100vw !important;
	height: 100dvh !important;
	margin: 0 !important;
	overflow: auto !important;
	-webkit-overflow-scrolling: touch;
}

/* iframe z mapą — ma wypełnić kontener. */
body > div[class*="furgonetka"][class*="map"] iframe,
body > div[id*="furgonetka"][id*="map"] iframe,
.furgonetka-map-widget iframe,
#furgonetka-map iframe,
.furgonetka-map-modal iframe {
	width: 100% !important;
	height: 100% !important;
	min-height: 100dvh !important;
	border: 0 !important;
	display: block !important;
}

@media (max-width: 620px) {
	/* Na telefonie: mapa zawsze pełny ekran, bez marginesów. */
	body > div[class*="furgonetka"][class*="map"],
	body > div[id*="furgonetka"][id*="map"],
	.furgonetka-map-widget,
	#furgonetka-map,
	.furgonetka-map-modal {
		border-radius: 0 !important;
		padding: 0 !important;
	}
}

/* =================================================================
   STRONY INFORMACYJNE (Zwroty i reklamacje, Dostawa i płatność)
   ================================================================= */
.bt-info { padding-block: clamp(40px, 5vw, 64px); }

/* Kafelki skrótu najważniejszych zasad */
.bt-info__highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px; }
.bt-info__hl {
	display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
	padding: 24px; background: var(--bt-bg-3); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg);
}
.bt-info__hl-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--bt-radius); background: rgba(255,193,7,.12); color: var(--bt-accent); margin-bottom: 8px; }
.bt-info__hl-ico .bt-ico { width: 24px; height: 24px; }
.bt-info__hl strong { font-size: 19px; color: var(--bt-text); text-transform: uppercase; letter-spacing: .01em; }
.bt-info__hl span:not(.bt-info__hl-ico) { font-size: 14px; color: var(--bt-text-soft); line-height: 1.5; }

/* Tytuł sekcji z ikoną */
.bt-info__section-title { display: flex; align-items: center; gap: 12px; font-size: clamp(22px, 2.6vw, 30px); text-transform: uppercase; margin: 48px 0 24px; }
.bt-info__section-title:first-child { margin-top: 0; }
.bt-info__section-title .bt-ico { width: 28px; height: 28px; color: var(--bt-accent); flex: none; }

/* Karty metod (dostawa / płatność) */
.bt-info__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
.bt-info__card {
	padding: 26px; background: var(--bt-bg-3); border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg); transition: border-color .25s var(--bt-ease), transform .25s var(--bt-ease);
}
.bt-info__card:hover { border-color: var(--bt-accent); transform: translateY(-3px); }
.bt-info__card-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: var(--bt-radius); background: rgba(255,193,7,.12); color: var(--bt-accent); margin-bottom: 16px; }
.bt-info__card-ico .bt-ico { width: 26px; height: 26px; }
.bt-info__card h3 { font-size: 19px; color: var(--bt-text); text-transform: uppercase; margin-bottom: 10px; }
.bt-info__card p { font-size: 14.5px; color: var(--bt-text-soft); line-height: 1.6; }

/* Numer konta w karcie przelewu */
.bt-info__bank { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--bt-line); }
.bt-info__bank-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--bt-text-dim); font-weight: 700; margin-bottom: 4px; }
.bt-info__bank-number { font-size: 17px; color: var(--bt-accent); letter-spacing: .02em; }

/* Treść opisowa */
.bt-info__content { margin-bottom: 8px; }
.bt-info__steps-list { counter-reset: bt-step; list-style: none; padding-left: 0; }
.bt-info__steps-list li { position: relative; padding-left: 46px; margin-top: 16px; }
.bt-info__steps-list li::before {
	counter-increment: bt-step; content: counter(bt-step);
	position: absolute; left: 0; top: -2px; display: grid; place-items: center;
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--bt-accent); color: var(--bt-accent-ink); font-weight: 800; font-size: 15px;
}
.bt-info__legal-note { margin-top: 40px; padding: 18px 22px; background: var(--bt-bg-3); border-left: 3px solid var(--bt-accent); border-radius: var(--bt-radius-sm); font-size: 14px; color: var(--bt-text-dim); font-style: italic; }

@media (max-width: 1100px) {
	.bt-info__highlights, .bt-info__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
	.bt-info__highlights, .bt-info__cards { grid-template-columns: 1fr; }
}

/* =================================================================
   PAGINACJA — wymuszenie spójnego wyglądu (sklep / kategorie / promocje)
   Wysoka specyficzność + !important, by przebić style wtyczek/bloków,
   które wygrywały kaskadę. Celuje w realny HTML:
     <nav class="woocommerce-pagination"><ul class="page-numbers"><li><a|span class="page-numbers">
     oraz samo <ul class="page-numbers"> (promocje, bez nav).
   DOKLEJ NA SAMYM KOŃCU assets/css/main.css
   ================================================================= */

nav.woocommerce-pagination ul.page-numbers,
ul.page-numbers {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 44px 0 0 !important;
	justify-content: center !important;
	border: 0 !important;
}

nav.woocommerce-pagination ul.page-numbers li,
ul.page-numbers li {
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	background: transparent !important;
}

/* Każdy element (numer, strzałka, kropki) — link LUB span */
nav.woocommerce-pagination ul.page-numbers li a.page-numbers,
nav.woocommerce-pagination ul.page-numbers li span.page-numbers,
ul.page-numbers li a.page-numbers,
ul.page-numbers li span.page-numbers {
	display: grid !important;
	place-items: center !important;
	min-width: 44px !important;
	height: 44px !important;
	padding: 0 12px !important;
	background: var(--bt-surface) !important;
	border: 1px solid var(--bt-line) !important;
	border-radius: var(--bt-radius-sm) !important;
	color: var(--bt-text) !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	box-shadow: none !important;
	transition: all .2s !important;
}

/* Hover na klikalnych */
nav.woocommerce-pagination ul.page-numbers li a.page-numbers:hover,
ul.page-numbers li a.page-numbers:hover {
	border-color: var(--bt-accent) !important;
	color: var(--bt-accent) !important;
	background: var(--bt-surface) !important;
}

/* Aktualna strona — pełne żółte tło, ciemny tekst */
nav.woocommerce-pagination ul.page-numbers li span.page-numbers.current,
nav.woocommerce-pagination ul.page-numbers li .page-numbers.current,
ul.page-numbers li .page-numbers.current {
	background: var(--bt-accent) !important;
	color: var(--bt-accent-ink) !important;
	border-color: var(--bt-accent) !important;
}

/* Wielokropek „…" — bez ramki/tła */
nav.woocommerce-pagination ul.page-numbers li span.page-numbers.dots,
ul.page-numbers li .page-numbers.dots {
	background: transparent !important;
	border-color: transparent !important;
	color: var(--bt-text-dim) !important;
	min-width: auto !important;
}

/* =================================================================
   ORDER-PAY (Przelewy24) — BLIK i karta w stylu motywu (v2)
   ================================================================= */
.bt-checkout--endpoint { max-width: 640px; margin-inline: auto; padding-block: clamp(40px, 5vw, 72px); }
.bt-checkout--endpoint .woocommerce { width: 100%; }

/* Podsumowanie zamówienia — nadpisujemy floaty i separatory z woocommerce.css */
.bt-checkout--endpoint ul.order_details {
	list-style: none !important;
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 24px;
	margin: 0 0 24px !important;
	padding: 22px 24px !important;
	background: var(--bt-surface);
	border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg);
	overflow: hidden;
}
.bt-checkout--endpoint .order_details::before,
.bt-checkout--endpoint .order_details::after { content: none !important; }
.bt-checkout--endpoint .order_details li {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;            /* wycina przerywane kreski z woocommerce.css */
	display: flex; flex-direction: column; gap: 4px;
	font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
	color: var(--bt-text-dim); font-weight: 700;
	min-width: 0;
}
.bt-checkout--endpoint .order_details li strong {
	font-size: 17px; letter-spacing: 0; text-transform: none;
	color: var(--bt-text); font-weight: 700; line-height: 1.3;
	overflow-wrap: anywhere;
}
.bt-checkout--endpoint .order_details li.total strong,
.bt-checkout--endpoint .order_details li.total strong .amount { color: var(--bt-accent); }

/* Kontener płatności P24 */
.bt-checkout--endpoint .p24-payment-container {
	width: 100%;
	background: var(--bt-surface);
	border: 1px solid var(--bt-line);
	border-radius: var(--bt-radius-lg);
	padding: clamp(22px, 3vw, 32px);
	display: grid; gap: 18px;
	margin: 0;
}

/* Pole kodu BLIK — bez letter-spacing (wtyczka sama wstawia spację w kodzie) */
.bt-checkout--endpoint .p24-payment-input label { display: block; margin: 0; }
.bt-checkout--endpoint .p24-payment-input input {
	width: 100%; height: 60px; padding: 0 18px;
	background: var(--bt-bg);
	border: 1px solid var(--bt-line-2);
	color: var(--bt-text);
	font-family: inherit; font-size: 26px; font-weight: 700;
	letter-spacing: .08em; text-align: center;
	font-variant-numeric: tabular-nums;
	border-radius: var(--bt-radius-sm);
	transition: border-color .25s, box-shadow .25s;
	box-shadow: none; outline: none;
}
.bt-checkout--endpoint .p24-payment-input input:focus {
	border-color: var(--bt-accent);
	box-shadow: 0 0 0 3px rgba(255,193,7,.18);
}
.bt-checkout--endpoint .p24-payment-input input::placeholder {
	letter-spacing: .02em; font-size: 15px; font-weight: 500; color: var(--bt-text-dim);
}

/* Tokenizer karty — iframe P24 na jasnej karcie */
.bt-checkout--endpoint #p24-new-card-block {
	background: #fff; border-radius: var(--bt-radius-sm);
	padding: 16px; min-height: 220px;
}
.bt-checkout--endpoint #card-tokenizer iframe { width: 100% !important; border: 0; display: block; }

/* Zgoda na regulamin */
.bt-checkout--endpoint .p24-checkbox label {
	display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
	font-size: 14px; color: var(--bt-text-soft); line-height: 1.55; margin: 0;
}
.bt-checkout--endpoint .p24-checkbox input {
	width: 20px; height: 20px; margin: 1px 0 0; flex: none;
	accent-color: var(--bt-accent); cursor: pointer;
}
.bt-checkout--endpoint .p24-checkbox a { color: var(--bt-accent); text-underline-offset: 3px; }

/* Komunikat "Potwierdź transakcję w aplikacji" */
.bt-checkout--endpoint .p24-waiting {
	padding: 14px 18px; border-radius: var(--bt-radius-sm);
	background: rgba(255,193,7,.1); border: 1px solid rgba(255,193,7,.35);
	color: var(--bt-accent); font-weight: 600; text-align: center;
}
.bt-checkout--endpoint .p24-waiting.hidden { display: none; }

/* Przycisk płatności */
.bt-checkout--endpoint .p24-payment-container button#submit {
	display: inline-flex; align-items: center; justify-content: center;
	width: 100%; padding: 17px 30px; margin: 0;
	background: var(--bt-accent) !important; color: var(--bt-accent-ink) !important;
	font-family: inherit; font-size: 16px; font-weight: 700;
	letter-spacing: .03em; text-transform: uppercase;
	border: 0 !important; border-radius: var(--bt-radius-sm) !important;
	cursor: pointer;
	transition: background .25s var(--bt-ease), transform .25s var(--bt-ease), box-shadow .25s var(--bt-ease);
}
.bt-checkout--endpoint .p24-payment-container button#submit:hover {
	background: var(--bt-accent-2) !important; transform: translateY(-2px);
	box-shadow: var(--bt-shadow-accent);
}

/* Overlay 3DS / loader nad wszystkim */
#p24-3ds-loader, #p24-3ds-modal { z-index: 2300 !important; }
#p24-3ds-modal .modal-content { background: #fff; border-radius: var(--bt-radius); overflow: hidden; width: min(520px, 94vw); }
#p24-3ds-iframe-wrapper iframe { width: 100%; min-height: 480px; border: 0; display: block; }

@media (max-width: 520px) {
	.bt-checkout--endpoint ul.order_details { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   TS Returns — style dopasowane do motywu BudTruck
   Ciemny motyw, akcent przemysłowa żółć (#FFC107), font Rajdhani,
   prefiks bt-. Używa zmiennych :root motywu (--bt-accent, --bt-surface,
   --bt-line, --bt-radius itd.).

   Wklej na końcu assets/css/main.css motywu BudTruck.
   ============================================ */

/* ============================================================
   1) PRZYCISK ZWROTU
   ============================================================ */
.ts-return-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	background: var(--bt-accent, #FFC107);
	color: var(--bt-accent-ink, #161618);
	border: 0;
	border-radius: var(--bt-radius-sm, 10px);
	font-family: var(--bt-ff, "Rajdhani", sans-serif);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .03em;
	text-transform: uppercase;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
	transition: background .3s var(--bt-ease, ease), transform .3s var(--bt-ease, ease), box-shadow .3s var(--bt-ease, ease);
}
.ts-return-btn:hover {
	background: var(--bt-accent-2, #ffce3a);
	transform: translateY(-2px);
	box-shadow: var(--bt-shadow-accent, 0 14px 40px -12px rgba(255,193,7,.45));
}
.ts-return-btn--small { padding: 8px 14px; font-size: 13px; }
.ts-return-btn__icon { font-size: 16px; line-height: 1; }
.ts-return-btn__days {
	font-size: 11px;
	font-weight: 600;
	opacity: .85;
	padding-left: 8px;
	border-left: 1px solid rgba(22, 22, 24, .35);
}
.ts-return-btn--guest { font-size: 15px; padding: 14px 26px; }

.ts-guest-return { margin: 0; }
.ts-guest-return__info { margin-bottom: 12px; color: var(--bt-text-soft, #b6b6bd); }

/* ============================================================
   2) MOJE KONTO — akcje, karta zamówienia, sekcja zwrotu
   ============================================================ */

/* Akcje w wierszu tabeli zamówień (Szczegóły + Zwróć) */
.bt-acc__order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
}

/* Karta ostatniego zamówienia (dashboard) + przycisk zwrotu obok */
.bt-acc__order-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.bt-acc__order-wrap .bt-acc__order { flex: 1 1 auto; }
.bt-acc__order-wrap .ts-return-btn { flex-shrink: 0; }

/* Sekcja zwrotu w szczegółach zamówienia */
.bt-acc__return {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 18px;
	padding: 24px 26px;
	background: var(--bt-bg-3, #1b1b1f);
	border: 1px solid var(--bt-line, #2a2a30);
	border-left: 3px solid var(--bt-accent, #FFC107);
	border-radius: var(--bt-radius, 14px);
}
.bt-acc__return-text h3 {
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: var(--bt-text, #f4f4f5);
}
.bt-acc__return-text h3 .bt-ico { width: 20px; height: 20px; color: var(--bt-accent, #FFC107); }
.bt-acc__return-text p {
	margin: 0;
	color: var(--bt-text-soft, #b6b6bd);
	font-size: 14px;
	line-height: 1.6;
	max-width: 560px;
}
.bt-acc__return-action { flex-shrink: 0; }

/* ============================================================
   3) STRONA "ZWROTY I REKLAMACJE" — sekcja funkcji odstąpienia
   ============================================================ */
.bt-info__return-action {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	margin-bottom: 48px;
	padding: 30px;
	background: linear-gradient(120% 120% at 0% 0%, rgba(255,193,7,.10), transparent 60%), var(--bt-surface, #18181c);
	border: 1px solid var(--bt-line, #2a2a30);
	border-left: 3px solid var(--bt-accent, #FFC107);
	border-radius: var(--bt-radius-lg, 22px);
}
.bt-info__return-action-icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: var(--bt-radius, 14px);
	background: rgba(255, 193, 7, .12);
	border: 1px solid rgba(255, 193, 7, .3);
	color: var(--bt-accent, #FFC107);
}
.bt-info__return-action-icon .bt-ico { width: 28px; height: 28px; }
.bt-info__return-action-content { flex: 1; min-width: 0; }
.bt-info__return-action-content h2 {
	margin: 0 0 10px;
	font-size: clamp(22px, 2.6vw, 28px);
	text-transform: uppercase;
	color: var(--bt-text, #f4f4f5);
}
.bt-info__return-action-content > p {
	margin: 0 0 18px;
	color: var(--bt-text-soft, #b6b6bd);
	font-size: 15px;
	line-height: 1.65;
}
.bt-info__return-action-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 14px 0 0;
	font-size: 13.5px;
	color: var(--bt-text-dim, #7c7c85);
}
.bt-info__return-action-note .bt-ico { width: 16px; height: 16px; color: var(--bt-accent, #FFC107); flex: none; }

.bt-info__cta-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

@media (max-width: 620px) {
	.bt-info__return-action { flex-direction: column; padding: 24px; }
	.bt-acc__return { flex-direction: column; align-items: stretch; }
	.bt-acc__return-action .ts-return-btn { width: 100%; justify-content: center; }
	.bt-acc__order-wrap .ts-return-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   4) MODAL WTYCZKI — override zmiennych --tsr-* na ciemny motyw
   Modal wtyczki używa własnych zmiennych --tsr-* (domyślnie jasne).
   Tu nadpisujemy je na ciemne wartości BudTruck — biały dialog
   zamieniamy na ciemną powierzchnię, akcent na żółty.
   ============================================================ */
:root {
	--tsr-dialog-bg: var(--bt-bg-2, #141417);
	--tsr-field-bg: var(--bt-bg, #0c0c0e);
	--tsr-border: var(--bt-line-2, #34343c);
	--tsr-text: var(--bt-text, #f4f4f5);
	--tsr-text-muted: var(--bt-text-soft, #b6b6bd);
	--tsr-accent: var(--bt-accent, #FFC107);
	--tsr-accent-hover: var(--bt-accent-2, #ffce3a);
	--tsr-radius: var(--bt-radius-sm, 10px);
	--tsr-radius-lg: var(--bt-radius-lg, 22px);
}

/* Przyciski modala (.ts-btn) z żółtym akcentem mają ciemny tekst — czytelność */
.ts-btn--primary,
.ts-btn--secondary { color: var(--bt-accent-ink, #161618) !important; font-weight: 700; }
.ts-btn--primary:disabled { color: var(--bt-text-dim, #7c7c85) !important; }

/* Loader na ciemnym tle */
.ts-loader { background: rgba(12, 12, 14, .82) !important; }

/* Font modala spójny z motywem */
.ts-modal,
.ts-modal__dialog,
.ts-return-btn { font-family: var(--bt-ff, "Rajdhani", sans-serif); }

/* Tytuł modala — wielkie litery jak reszta nagłówków motywu */
.ts-modal__title { text-transform: uppercase; letter-spacing: .01em; }

/* ============================================================
   5) MOBILE — akcje w komórce tabeli zamówień (Szczegóły + Zwróć)
   Motyw na <=860px renderuje wiersze tabeli jako karty i rozciąga
   .bt-btn do 100%. Porządkujemy kontener akcji, by oba przyciski
   układały się w pełnej szerokości jeden pod drugim.
   ============================================================ */
@media (max-width: 860px) {
	.bt-acc__table td[data-label=""] .bt-acc__order-actions {
		display: flex;
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}
	.bt-acc__table td[data-label=""] .bt-acc__order-actions .bt-btn,
	.bt-acc__table td[data-label=""] .bt-acc__order-actions .ts-return-btn {
		width: 100%;
		justify-content: center;
	}
}