*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
	background: #fff;
	color: var(--dark-text);
	font-size: var(--p);
	line-height: 1.5;
}

.product-page {
	max-width: 1320px;
	margin: 0 auto;
	padding: 24px 20px 48px;
	overflow-x: clip;
}

/* View switcher */
.view-switcher {
	display: flex;
	gap: 0;
	background: var(--light-bg);
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	padding: 4px;
	margin: 0 auto 28px;
	max-width: 520px;
}
.view-switch {
	flex: 1;
	padding: 10px 20px;
	border: none;
	border-radius: calc(var(--panel-radius) - 4px);
	background: transparent;
	color: var(--dark-text);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: var(--transition);
	text-decoration: none;
	text-align: center;
}
.view-switch.active {
	background: var(--brand-secondary-bg);
	color: #fff;
	box-shadow: 0 2px 8px rgba(55, 73, 151, 0.25);
}

/* Layout 5:4 – zdjęcie | informacje */
.product-layout {
	display: grid;
	grid-template-columns: 5fr 4fr;
	gap: 28px;
	align-items: start;
}
.product-layout > *,
.gallery,
.gallery-main,
.why-grid,
.promo-banner-img {
	min-width: 0;
}
.product-page img {
	max-width: 100%;
}

/* Breadcrumbs – w pierwszej kolumnie, zwinięte */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 6px;
	font-size: 12px;
	color: #6b7a99;
	margin-bottom: 16px;
	line-height: 1.4;
}
.breadcrumbs a {
	color: var(--brand-secondary-bg);
	text-decoration: none;
	white-space: nowrap;
}
.breadcrumbs a:hover { color: var(--brand-primary-bg); }
.breadcrumbs .sep { color: #aab4cc; font-size: 9px; flex-shrink: 0; }
.breadcrumbs .current {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* Gallery */
.gallery {
	display: flex;
	gap: 12px;
	align-items: stretch;
}
.gallery-thumbs {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-shrink: 0;
}
.gallery-thumb {
	width: 72px;
	height: 72px;
	border: 2px solid var(--panel-border);
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	padding: 0;
}
.gallery-thumb.active { border-color: var(--brand-secondary-bg); }
.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gallery-thumb-more {
	width: 72px;
	height: 72px;
	border: 2px dashed var(--panel-border);
	border-radius: 12px;
	font-size: 10px;
	color: var(--brand-secondary-bg);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	line-height: 1.15;
	text-align: center;
	background: #fff;
	padding: 4px;
}
.gallery-thumb-more strong {
	font-size: 15px;
	line-height: 1;
}
.gallery-thumb-more span {
	font-weight: 600;
}
.gallery-main {
	flex: 1;
	position: relative;
	min-width: 0;
	border-radius: 16px;
	overflow: hidden;
	min-height: 480px;
	aspect-ratio: 1;
}
.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	color: var(--dark-text);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-arrow:hover {
	background: var(--brand-primary-bg);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.gallery-arrow i {
	font-size: 16px;
	pointer-events: none;
}
.gallery-main-zoom {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: zoom-in;
}
.gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.badge-extra {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: var(--brand-primary-bg);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 20px;
}
.badge-extra span { font-weight: 400; }
.gallery-badges {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	pointer-events: none;
}
.gallery-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 11px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(0, 39, 105, 0.1);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: var(--dark-text);
	line-height: 1.2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(4px);
}
.gallery-badge i {
	font-size: 13px;
	color: var(--brand-secondary-bg);
	flex-shrink: 0;
}
.gallery-badge-img {
	width: 14px;
	height: 14px;
	object-fit: contain;
	flex-shrink: 0;
}
.gallery-badge--graphic {
	padding: 5px 10px;
}
.gallery-badge--graphic .gallery-badge-img {
	width: auto;
	height: 22px;
	max-width: 140px;
}
.wishlist-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 1px solid var(--panel-border);
	border-radius: 50%;
	background: #fff;
	color: var(--brand-secondary-bg);
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.wishlist-btn:hover { color: #e74c3c; border-color: #e74c3c; }

/* Promo banner 50/50 z gradientem */
.promo-banner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: var(--panel-radius);
	overflow: hidden;
	margin-top: 20px;
	height: 110px;
}
.promo-banner-content {
	background: var(--brand-secondary-bg);
	color: #fff;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.promo-banner-content h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 4px;
}
.promo-banner-content p {
	font-size: 13px;
	opacity: 0.9;
	margin-bottom: 10px;
}
.promo-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.promo-links a {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}
.promo-links a:hover { text-decoration: underline; }
.promo-banner-img {
	position: relative;
	overflow: hidden;
	height: 100%;
}
.promo-banner-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, var(--brand-secondary-bg) 0%, transparent 45%);
	z-index: 1;
	pointer-events: none;
}
.promo-banner-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Why section */
.why-section {
	margin-top: 28px;
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	padding: 20px 24px 16px;
}
.why-section h2 {
	font-size: var(--h3);
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--dark-text);
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}
.why-list,
.why-drawing,
.why-specs {
	min-width: 0;
}
.why-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.why-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 7px;
	font-size: 12px;
	line-height: 1.4;
}
.why-list li i {
	color: #22c55e;
	flex-shrink: 0;
	font-size: 11px;
	line-height: 1;
}
.why-drawing {
	display: flex;
	align-items: stretch;
	height: 100%;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	border: 1px solid var(--panel-border);
	cursor: zoom-in;
}
.why-drawing img {
	height: 100%;
	width: 100%;
	max-width: none;
	min-height: 180px;
	object-fit: cover;
	object-position: center;
	display: block;
}
.why-drawing-zoom {
	position: absolute;
	bottom: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 8px;
	background: rgba(255,255,255,0.95);
	color: var(--brand-secondary-bg);
	cursor: pointer;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.why-specs {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 16px;
	align-content: center;
	height: 100%;
}
.why-specs li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1px;
	min-height: 36px;
}
.why-specs .label {
	font-size: 11px;
	color: #6b7a99;
}
.why-specs .value {
	font-size: 13px;
	font-weight: 600;
	color: var(--dark-text);
}
.why-expand-wrap {
	display: flex;
	justify-content: center;
	margin-top: 14px;
}
.why-expand {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--brand-secondary-bg);
	text-decoration: none;
	cursor: pointer;
}
.why-expand:hover { color: var(--brand-primary-bg); }

/* Right column – zwarta */
.product-info { position: sticky; top: 20px; }

.badges-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
}
.badge {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--panel-border);
	border-radius: 1rem;
	background: #fff;
	color: var(--dark-text);
	height: 32px;
	padding: 0 12px 0 0;
	overflow: hidden;
}
.badge-icon {
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	border-radius: 0 1rem 1rem 0;
}
.badge-label {
	display: flex;
	align-items: center;
	padding: 0 0 0 8px;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}
.badge-bestseller .badge-icon { background: #fef3c7; color: #b45309; }
.badge-delivery .badge-icon { background: #dcfce7; color: #166534; }
.badge-showroom .badge-icon { background: var(--dark-bg); color: var(--brand-secondary-bg); }
.badge-hot .badge-icon { background: #fce7f3; color: #be185d; }
.badge-new .badge-icon { background: #dbeafe; color: #1d4ed8; }

.product-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--dark-text);
	margin-bottom: 8px;
}
.product-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	color: #6b7a99;
	margin-bottom: 14px;
}
.rating {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.rating .stars { color: #fbbf24; font-size: 13px; }
.rating .score { font-weight: 600; color: var(--dark-text); }

/* Price box – 2×2: katalogowa | klub, poniżej twoja cena */
.price-box {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	overflow: hidden;
	margin-bottom: 12px;
}
.price-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.price-col {
	padding: 12px 14px;
	border-right: 1px solid var(--panel-border);
	border-bottom: 1px solid var(--panel-border);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
}
.price-col:nth-child(2n) { border-right: none; }
.price-col.price-your-row {
	grid-column: 1 / -1;
	border-right: none;
	border-bottom: none;
	background: var(--light-bg);
}
.price-label {
	font-size: 11px;
	color: #6b7a99;
	line-height: 1.3;
}
.price-catalog-col .price-catalog-value {
	font-size: 15px;
	color: #9ca3af;
	line-height: 1.3;
}
.price-current-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.price-current {
	font-size: 24px;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.1;
}
.price-save {
	display: inline-block;
	background: #fef3c7;
	color: #b45309;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 6px;
	margin-top: 0;
}
.price-club-col {
	background: var(--dark-bg);
}
.price-club-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}
.price-club-main {
	flex: 1;
	min-width: 0;
}
.price-club-header {
	display: flex;
	align-items: center;
	gap: 6px;
}
.price-club-header i { color: var(--brand-primary-bg); font-size: 14px; flex-shrink: 0; }
.price-club-value {
	font-size: 17px;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.2;
}
.price-club-link {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 600;
	color: var(--brand-secondary-bg);
	text-decoration: none;
	text-align: right;
	line-height: 1.3;
	white-space: nowrap;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	font-family: inherit;
}
.price-club-link:hover { color: var(--brand-primary-bg); }

/* Warianty produktu */
.variant-block {
	margin-bottom: 12px;
}
.variant-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--dark-text);
	margin-bottom: 8px;
}
.variant-label span { font-weight: 400; color: #6b7a99; }
.variant-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.variant-swatch {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 64px;
	border: 2px solid var(--panel-border);
	border-radius: 10px;
	padding: 4px 4px 6px;
	cursor: pointer;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
.variant-swatch:hover {
	border-color: var(--brand-secondary-bg);
}
.variant-swatch.active {
	border-color: var(--brand-secondary-bg);
}
.variant-swatch-media {
	position: relative;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}
.variant-swatch.active .variant-swatch-media::after {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: var(--brand-secondary-bg);
	background: rgba(255, 255, 255, 0.72);
	border-radius: 6px;
}
.variant-swatch-img {
	width: 48px;
	height: 48px;
	border-radius: 6px;
	object-fit: cover;
	display: block;
	border: 1px solid #e7ece9;
}
.variant-swatch-label {
	display: block;
	width: 100%;
	font-size: 10px;
	line-height: 1.2;
	font-weight: 500;
	color: #6b7a99;
	text-align: center;
	word-break: break-word;
}
.variant-swatch.active .variant-swatch-label {
	color: var(--dark-text);
	font-weight: 600;
}

/* Stock & social – jedna linia */
.stock-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	flex-wrap: nowrap;
}
.stock-available {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #166534;
	white-space: nowrap;
}
.stock-available .dot {
	width: 9px;
	height: 9px;
	background: #22c55e;
	border-radius: 50%;
	flex-shrink: 0;
}
.social-proof {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #6b7a99;
	text-align: right;
}
.social-proof i { color: var(--brand-secondary-bg); flex-shrink: 0; }

/* Delivery – trzy boxy w jednej linii */
.delivery-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 16px;
}
.delivery-row--two-cols {
	grid-template-columns: repeat(2, 1fr);
}
.delivery-box {
	background: var(--light-bg);
	border-radius: 12px;
	padding: 12px 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	width: 100%;
	transition: var(--transition);
	position: relative;
}
.delivery-box:hover {
	border-color: var(--brand-secondary-bg);
	background: #fff;
}
.delivery-box::after {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 9px;
	color: #9ca3af;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.delivery-box i {
	color: var(--brand-secondary-bg);
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}
.delivery-box div {
	display: flex;
	flex-direction: column;
	gap: 0;
	line-height: 1.15;
}
.delivery-box strong {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #166534;
	line-height: 1.15;
	margin-bottom: 1px;
}
.delivery-box span {
	font-size: 11px;
	color: #6b7a99;
	line-height: 1.15;
}

/* Purchase row */
.purchase-row {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
}
.qty-selector {
	display: flex;
	align-items: center;
	border: 1px solid var(--panel-border);
	border-radius: var(--btn-radius);
	overflow: hidden;
	flex-shrink: 0;
}
.qty-selector button {
	width: 40px;
	height: 44px;
	border: none;
	background: #fff;
	font-size: 18px;
	color: var(--dark-text);
	cursor: pointer;
	transition: var(--transition);
}
.qty-selector button:hover { background: var(--light-bg); }
.qty-selector input {
	width: 44px;
	height: 44px;
	border: none;
	border-left: 1px solid var(--panel-border);
	border-right: 1px solid var(--panel-border);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: var(--dark-text);
	font-family: inherit;
}
.btn-cart {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 44px;
	padding: 0 20px;
	background: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	border: 1px solid var(--dark-text);
	border-radius: var(--btn-radius);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: var(--transition);
	font-family: inherit;
	text-decoration: none;
}
.btn-cart:hover { background: var(--btn-primary-bg-hov); }

/* Baner promocyjny – wersja stonowana (nie konkuruje z CTA) */
.promo-banner-subtle {
	height: 96px;
	border: 1px solid var(--panel-border);
	background: var(--light-bg);
}
.promo-banner-subtle .promo-banner-content {
	background: var(--light-bg);
	color: var(--dark-text);
	padding: 16px 20px;
}
.promo-banner-subtle .promo-banner-content h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 2px;
}
.promo-banner-subtle .promo-banner-content p {
	font-size: 12px;
	color: #6b7a99;
	opacity: 1;
	margin-bottom: 8px;
}
.promo-banner-subtle .promo-links a {
	color: var(--brand-secondary-bg);
	font-size: 11px;
}
.promo-banner-subtle .promo-banner-img::before {
	background: linear-gradient(to right, var(--light-bg) 0%, transparent 50%);
}

@media (min-width: 769px) {
	.purchase-row .qty-selector button,
	.purchase-row .qty-selector input {
		height: 50px;
	}
	.purchase-row .qty-selector button {
		width: 44px;
	}
	.purchase-row .qty-selector input {
		width: 48px;
	}
	.btn-cart {
		height: 50px;
		font-size: 15px;
		padding: 0 24px;
	}
}

/* Mobile fixed cart – ukryty na desktopie */
.mobile-cart-bar {
	display: none;
}
.mobile-cart-bar-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	background: #fff;
	border-top: 1px solid var(--panel-border);
}
.mobile-cart-add-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 44px;
	padding: 0 16px;
	background: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	border: 1px solid var(--dark-text);
	border-radius: var(--btn-radius);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.03em;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	-webkit-tap-highlight-color: transparent;
}
.mobile-cart-add-btn:active { background: var(--btn-primary-bg-hov); }
.mobile-qty-selector {
	flex: 0 0 auto;
	width: auto;
}

/* Installments – jasny żółty / czerwony Santander */
.installments-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 16px;
}
.installments {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 20px;
	cursor: pointer;
	transition: var(--transition);
	font-family: inherit;
	width: 100%;
	text-align: left;
}
.installments:hover { background: #fef3c7; }
.installments-santander {
	background: #fff1f2;
	border-color: #fecdd3;
}
.installments-santander:hover { background: #ffe4e6; }
.installments-badge {
	display: inline-flex;
	align-items: center;
	background: #fef9c3;
	color: #92400e;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	flex-shrink: 0;
}
.installments-santander .installments-badge {
	background: #fecdd3;
	color: #be123c;
}
.installments-text {
	flex: 1;
	font-size: 12px;
	font-weight: 500;
	color: var(--dark-text);
	line-height: 1.2;
}
.installments-label-mobile { display: none; }
.installments i:last-child { color: #9ca3af; font-size: 12px; flex-shrink: 0; }

/* Trust + kontakt w jednej linii */
.trust-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	margin-bottom: 20px;
	flex-wrap: nowrap;
}
.trust-badge {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	padding: 4px 0;
	flex-shrink: 1;
	min-width: 0;
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: var(--transition);
}
.trust-badge:hover { opacity: 0.75; }
.trust-badge-logo {
	height: 1.5rem;
	width: auto;
	max-width: 3rem;
	object-fit: contain;
	flex-shrink: 0;
}
.trust-badge-logo.h-6 {
	height: 1.5rem;
}
.trust-badge:not(:first-child) {
	border-left: 1px solid var(--panel-border);
	padding-left: 10px;
}
.trust-badge i {
	font-size: 20px;
	color: var(--brand-secondary-bg);
	flex-shrink: 0;
}
.trust-badge-text {
	display: flex;
	flex-direction: column;
	gap: 0;
	line-height: 1.15;
	min-width: 0;
}
.trust-badge-text span {
	font-size: 9px;
	font-weight: 600;
	color: var(--dark-text);
	white-space: nowrap;
}
.help-box {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	background: var(--light-bg);
	border-radius: 12px;
	flex-shrink: 0;
	max-width: 100%;
	border: none;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: var(--transition);
}
.help-box:hover {
	background: var(--dark-bg);
}
.help-icon {
	font-size: 18px;
	color: var(--brand-secondary-bg);
	flex-shrink: 0;
}
.help-contact {
	display: flex;
	flex-direction: column;
	gap: 1px;
	flex-shrink: 1;
	min-width: 0;
}
.help-label {
	font-size: 9px;
	color: #6b7a99;
	line-height: 1.2;
	white-space: nowrap;
}
.help-phone {
	font-size: 12px;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.2;
	white-space: nowrap;
	letter-spacing: -0.02em;
}
.help-hours {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex-shrink: 0;
	padding-left: 8px;
	border-left: 1px solid var(--panel-border);
}
.help-hours span {
	font-size: 8px;
	color: #6b7a99;
	line-height: 1.25;
	white-space: nowrap;
}

/* Dedykowany zestaw */
.bundle-section {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	background: var(--dark-bg);
	overflow: hidden;
}
.bundle-header {
	padding: 16px 18px 12px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}
.bundle-header-text { flex: 1; min-width: 0; }
.bundle-header h2 {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 4px;
}
.bundle-header p {
	font-size: 12px;
	color: var(--brand-secondary-bg);
	font-weight: 500;
}
.bundle-info-link {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 600;
	color: var(--brand-secondary-bg);
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	text-decoration: underline;
	padding: 0;
	white-space: nowrap;
}
.bundle-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #6b7a99;
	margin-bottom: 4px;
}
.bundle-items {
	display: flex;
	align-items: center;
	padding: 0 12px 14px;
	gap: 8px;
}
.bundle-items.count-2 .bundle-card {
	flex: 1;
	min-width: 0;
	padding: 10px 12px;
}
.bundle-items.count-2 .bundle-card img {
	width: 56px;
	height: 56px;
	min-width: 56px;
}
.bundle-plus {
	font-size: 18px;
	font-weight: 300;
	color: #9ca3af;
	flex-shrink: 0;
	padding: 0 2px;
}
.bundle-card {
	flex: 1;
	min-width: 110px;
	background: #fff;
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	padding: 10px 12px;
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	gap: 10px;
}
.bundle-card-check {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid #c5cfe0;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0;
	transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
	position: relative;
}
.bundle-card-check:hover {
	border-color: var(--brand-secondary-bg);
}
.bundle-card-check:checked {
	background: var(--brand-secondary-bg);
	border-color: var(--brand-secondary-bg);
	box-shadow: 0 0 0 2px rgba(55, 73, 151, 0.15);
}
.bundle-card-check:checked::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.bundle-card-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.bundle-card img {
	width: 56px;
	height: 56px;
	min-width: 56px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}
.bundle-card-name {
	font-size: 11px;
	color: var(--dark-text);
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 0;
}
.bundle-card-price {
	font-size: 12px;
	font-weight: 700;
	color: var(--dark-text);
}
.bundle-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 16px;
	background: var(--light-bg);
	border-top: 1px solid var(--panel-border);
}
.bundle-total {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--dark-text);
	flex: 1;
	min-width: 0;
}
.bundle-total i { color: var(--brand-primary-bg); flex-shrink: 0; }
.bundle-total-prices {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.bundle-total-label {
	font-size: 11px;
	color: #6b7a99;
	line-height: 1.2;
}
.bundle-total-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
}
.bundle-total s {
	color: #9ca3af;
	font-weight: 400;
	font-size: 12px;
}
.bundle-total strong {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.1;
}
.btn-bundle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 14px;
	background: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	border: 1px solid var(--dark-text);
	border-radius: var(--btn-radius);
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	transition: var(--transition);
	white-space: nowrap;
	flex-shrink: 0;
}
.btn-bundle:hover { background: var(--btn-primary-bg-hov); }
.bundle-note {
	margin-top: 8px;
	font-size: 11px;
	color: #6b7a99;
	text-align: center;
}
.bundle-vs-note {
	font-size: 10px;
	color: #9ca3af;
	text-align: center;
	margin-top: 4px;
	font-style: italic;
}

/* Cross-selling moduł (alternatywa dla zestawu) */
.crosssell-strip {
	margin-top: 14px;
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	padding: 14px 16px;
	background: #fff;
}
.crosssell-empty,
.bundle-empty-note {
	font-size: 12px;
	color: #6b7a99;
}
.crosssell-empty {
	padding: 4px 0;
}
.bundle-empty-note {
	padding: 0 18px 16px;
}
.crosssell-strip-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}
.crosssell-strip-head h2 {
	font-size: 14px;
	font-weight: 700;
	color: var(--dark-text);
	flex: 1;
	min-width: 0;
	line-height: 1.3;
}
.crosssell-all-link {
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--brand-secondary-bg);
	text-decoration: underline;
	white-space: nowrap;
}
.crosssell-all-link:hover { color: var(--brand-primary-bg); }
.crosssell-strip-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.crosssell-arrow {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border: 1px solid var(--panel-border);
	border-radius: 50%;
	background: #fff;
	color: var(--dark-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}
.crosssell-arrow:hover {
	border-color: var(--brand-secondary-bg);
	color: var(--brand-secondary-bg);
}
.crosssell-strip-items {
	display: flex;
	overflow-x: auto;
	gap: 14px;
	scroll-snap-type: x mandatory;
	padding-bottom: 4px;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	min-width: 0;
}
.crosssell-strip-items::-webkit-scrollbar { height: 4px; }
.crosssell-strip-items::-webkit-scrollbar-thumb { background: var(--panel-border); border-radius: 4px; }
.crosssell-mini {
	flex: 0 0 130px;
	scroll-snap-align: start;
	text-align: center;
	min-width: 0;
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
.crosssell-mini:hover { opacity: 0.85; }
.crosssell-mini img {
	width: 100%;
	height: 110px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 6px;
	display: block;
}
.crosssell-mini span {
	display: block;
	font-size: 10px;
	color: var(--dark-text);
	line-height: 1.35;
}
.crosssell-mini strong {
	display: block;
	font-size: 11px;
	color: var(--brand-secondary-bg);
	margin-top: 2px;
}

/* ========== Product details (karta-produktu-2) ========== */
.product-details {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--panel-border);
}
.product-details-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 20px;
	align-items: start;
}
.product-details-content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.before-buy-sidebar {
	position: sticky;
	top: 20px;
	align-self: start;
}
.before-buy-sidebar .desc-box {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	overflow: visible;
	background: #fff;
}
.product-tabs {
	display: flex;
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	overflow-x: auto;
}
.product-tab {
	flex: 1 0 88px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 10px 6px;
	background: #fff;
	border: none;
	border-right: 1px solid var(--panel-border);
	color: var(--dark-text);
	font-size: 9px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	font-family: inherit;
	text-align: center;
	line-height: 1.15;
}
.product-tab:last-child { border-right: none; }
.product-tab i { font-size: 15px; color: var(--brand-secondary-bg); }
.product-tab.active {
	background: var(--brand-secondary-bg);
	color: #fff;
}
.product-tab.active i { color: #fff; }
.product-details-layout {
	min-width: 0;
}
.product-details-layout > .accordion-panel {
	display: none;
	animation: accordionIn 0.25s ease;
}
.product-details-layout > .accordion-panel.is-open {
	display: block;
}
@keyframes accordionIn {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}
.product-tab .tab-chevron {
	display: none;
	font-size: 10px;
	margin-left: auto;
	transition: transform 0.25s ease;
}
@media (max-width: 768px) {
	.product-details-wrap {
		grid-template-columns: 1fr;
	}
	.before-buy-sidebar {
		order: -1;
		position: static;
		margin-bottom: 4px;
	}
	.product-details-layout > .accordion-panel.is-open {
		margin-top: -4px;
		margin-bottom: 8px;
		border: 1px solid var(--panel-border);
		border-top: none;
		border-radius: 0 0 var(--panel-radius) var(--panel-radius);
	}
}

/* Cena omnibus + info klub */
.price-omnibus {
	font-size: 11px;
	color: #6b7a99;
	margin-top: 6px;
	line-height: 1.35;
}
.price-club-info-btn {
	border: none;
	background: none;
	padding: 0;
	margin-left: 4px;
	color: var(--brand-secondary-bg);
	cursor: pointer;
	font-size: 13px;
	vertical-align: middle;
}
.price-club-info-btn:hover { color: var(--brand-primary-bg); }

/* Crosssell karuzela – dolna sekcja */
.crosssell-bottom {
	width: 100%;
}
.product-details-content > .cta-grid {
	margin-bottom: 0;
}

/* Formularz modal */
.form-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 39, 105, 0.45);
	z-index: 1200;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.form-modal-overlay.open { display: flex; }
.form-modal {
	background: #fff;
	border-radius: var(--panel-radius);
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.form-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--panel-border);
}
.form-modal-head h2 { font-size: 16px; font-weight: 700; }
.form-modal-body { padding: 20px; }
.form-modal-field { margin-bottom: 14px; }
.form-modal-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
}
.form-modal-field input,
.form-modal-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	font-family: inherit;
	font-size: 13px;
}
.form-modal-field textarea { min-height: 80px; resize: vertical; }
.form-modal-note {
	font-size: 11px;
	color: #6b7a99;
	margin-bottom: 14px;
}
.form-modal-error {
	font-size: 12px;
	color: #b42318;
	margin-bottom: 12px;
}
.form-modal-phone {
	text-align: center;
	padding: 10px;
	background: var(--light-bg);
	border-radius: 10px;
	margin-bottom: 14px;
	font-size: 13px;
}
.form-modal-phone a {
	font-weight: 700;
	color: var(--dark-text);
	text-decoration: none;
}

.tab-section-set .set-columns {
	margin-top: 0;
}
.tab-section-compat .compat-body {
	font-size: 14px;
	line-height: 1.6;
	color: #6b7a99;
}
.tab-section-compat .compat-body p { margin: 0 0 12px; }
.tab-section-compat .compat-body p:last-child { margin-bottom: 0; }
.bundle-savings-note {
	display: block;
	font-size: 12px;
	color: var(--brand-secondary-bg);
	margin-top: 4px;
}
.why-list-wrap,
.why-specs-wrap {
	min-width: 0;
	display: flex;
	align-items: center;
	height: 100%;
}
.why-list-wrap .why-list,
.why-specs-wrap .why-specs {
	width: 100%;
}

/* CTA grid – 2×2 na desktopie */
.cta-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.cta-tile {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	padding: 18px 16px;
	background: #fff;
	display: flex;
	flex-direction: column;
}
.cta-tile-advisor {
	background: var(--dark-bg);
}
.cta-tile-header {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 14px;
	flex: 1;
}
.cta-tile-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.cta-tile-icon.green { color: #22c55e; }
.cta-tile-icon.blue { color: var(--brand-secondary-bg); }
.cta-tile-icon.headset {
	background: var(--brand-secondary-bg);
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
}
.cta-tile-icon.phone {
	background: var(--dark-bg);
	border-radius: 50%;
	color: var(--brand-secondary-bg);
	font-size: 16px;
}
.cta-tile h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.3;
	margin-bottom: 4px;
}
.cta-tile p {
	font-size: 12px;
	color: #6b7a99;
	line-height: 1.4;
}
.btn-cta-primary {
	display: block;
	width: 100%;
	padding: 10px 16px;
	background: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	border: 1px solid var(--dark-text);
	border-radius: var(--btn-radius);
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	font-family: inherit;
	transition: var(--transition);
	letter-spacing: 0.02em;
	margin-top: auto;
}
.btn-cta-primary:hover { background: var(--btn-primary-bg-hov); }
.btn-cta-outline {
	display: block;
	width: 100%;
	padding: 10px 16px;
	background: #fff;
	color: var(--brand-secondary-bg);
	border: 1px solid var(--brand-secondary-bg);
	border-radius: var(--btn-radius);
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	font-family: inherit;
	transition: var(--transition);
	letter-spacing: 0.02em;
	margin-top: auto;
}
.btn-cta-outline:hover {
	background: var(--brand-secondary-bg);
	color: #fff;
}
.cta-tile-phone {
	font-size: 18px;
	font-weight: 700;
	color: var(--brand-secondary-bg);
	margin: 6px 0 4px;
}
.cta-tile-hours {
	font-size: 11px;
	color: #6b7a99;
}

/* Intro row – dwa osobne boxy */
.desc-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
	align-items: start;
}
.desc-box {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	overflow: hidden;
}
.desc-box.desc-before-buy {
	overflow: visible;
	background: #fff;
}
.desc-opis-inner {
	display: block;
}
.desc-opis-content {
	padding: 24px;
}
.desc-opis-content h2 {
	font-size: var(--h3);
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 8px;
}
.desc-opis-content p {
	font-size: 13px;
	color: #6b7a99;
	margin-bottom: 12px;
	line-height: 1.5;
}
.desc-before-buy {
	padding: 24px;
}
.desc-checklist {
	list-style: none;
}
.desc-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 8px;
	line-height: 1.4;
}
.desc-checklist li > span {
	flex: 1;
	min-width: 0;
}
.desc-checklist li i {
	color: var(--brand-secondary-bg);
	margin-top: 3px;
	flex-shrink: 0;
}
.desc-before-buy h2 {
	font-size: var(--h4);
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 16px;
}
.before-buy-item {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	width: 100%;
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	padding: 8px;
	margin-left: -8px;
	margin-right: -8px;
	border-radius: 10px;
	transition: var(--transition);
}
.before-buy-item:hover { background: var(--light-bg); }
.before-buy-icon {
	width: 40px;
	height: 40px;
	background: var(--dark-bg);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.before-buy-icon i {
	font-size: 18px;
	color: var(--brand-secondary-bg);
}
.before-buy-item strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 2px;
}
.before-buy-item span {
	font-size: 12px;
	color: #6b7a99;
	line-height: 1.4;
}

/* Feature cards grid – 2 kafelki na pełną szerokość */
.details-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.details-card {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	padding: 18px 16px;
}
.details-card-header .details-card-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--dark-text);
}
/* Opis – rozwijany + słowniczek */
#tabSectionDesc .desc-body p {
	font-size: 13px;
	color: #6b7a99;
	margin-bottom: 12px;
	line-height: 1.5;
}
#tabSectionDesc .desc-body p:last-child {
	margin-bottom: 0;
}
.desc-body.collapsed {
	max-height: 280px;
	overflow: hidden;
	position: relative;
}
.desc-body.collapsed::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(transparent, #fff);
}
.btn-desc-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	padding: 0;
	border: none;
	background: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--brand-secondary-bg);
	cursor: pointer;
	text-decoration: underline;
}
.glossary-term {
	display: inline;
	border: none;
	background: none;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	color: var(--brand-secondary-bg);
	font-weight: 600;
	cursor: help;
	text-decoration: underline dotted;
}
.glossary-info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	padding: 0;
	margin: 0 1px;
	border: none;
	background: none;
	color: var(--brand-secondary-bg);
	cursor: help;
	vertical-align: -2px;
	font-size: 11px;
	line-height: 1;
}

/* Producent odpowiedzialny – nagłówek jak parametry + tabela */
.specs-section h2.specs-heading-second {
	margin-top: 20px;
}
.specs-table-manufacturer {
	grid-template-columns: 1fr;
}

/* Stopka benefitów produktu */
.product-footer-benefits {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid var(--panel-border);
}
.pf-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 140px;
}
.pf-benefit i {
	font-size: 22px;
	color: var(--brand-secondary-bg);
}
.pf-benefit-text span {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--dark-text);
	line-height: 1.25;
}

/* Info modals */
.info-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 39, 105, 0.45);
	z-index: 1100;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.info-modal-overlay.open { display: flex; }
.info-modal {
	background: #fff;
	border-radius: var(--panel-radius);
	width: 100%;
	max-width: 420px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.info-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--panel-border);
}
.info-modal-head h2 {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark-text);
}
.info-modal-close {
	width: 32px;
	height: 32px;
	border: none;
	background: var(--light-bg);
	border-radius: 50%;
	cursor: pointer;
	font-size: 14px;
	color: var(--dark-text);
}
.info-modal-body {
	padding: 20px;
}
.info-modal-body p {
	font-size: 13px;
	color: #6b7a99;
	line-height: 1.5;
	margin-bottom: 12px;
}
.info-modal-centered {
	text-align: center;
}
.info-modal-centered p:last-child {
	margin-bottom: 0;
}
.info-modal-list {
	list-style: none;
	margin-bottom: 12px;
}
.info-modal-list li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid var(--panel-border);
	font-size: 13px;
}
.info-modal-list li:last-child { border-bottom: none; }
.info-modal-list .price { font-weight: 700; color: var(--dark-text); white-space: nowrap; }
.info-modal-foot {
	padding: 14px 16px 16px;
	background: var(--light-bg);
	border-top: 1px solid var(--panel-border);
	text-align: center;
}
.info-modal-foot p {
	font-size: 11px;
	color: #6b7a99;
	margin-bottom: 4px;
	line-height: 1.35;
}
.info-modal-phone {
	font-size: 14px;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.2;
}
.info-modal-hours {
	font-size: 10px;
	color: #9ca3af;
	margin-top: 3px;
	line-height: 1.35;
}
.info-modal-icon {
	text-align: center;
	font-size: 48px;
	color: var(--dark-text);
	margin-bottom: 12px;
}
.info-modal-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--brand-secondary-bg);
	text-decoration: underline;
}
.info-modal-link:hover { color: var(--brand-primary-bg); }
.info-modal-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	padding: 10px 24px;
	background: var(--brand-secondary-bg);
	color: #fff;
	border: none;
	border-radius: var(--btn-primary-radius);
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
}
.info-modal-btn:hover {
	background: var(--brand-primary-bg);
	color: #fff;
}
.info-modal-wide { max-width: 640px; }
.info-modal-kontakt { max-width: 720px; }
.info-modal-club-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 10px;
	text-align: center;
}
.info-modal-club-free {
	font-size: 12px !important;
	color: #6b7a99 !important;
	margin-top: 12px !important;
	margin-bottom: 0 !important;
	text-align: center;
}
.info-modal-btn-club {
	width: 100%;
	max-width: 280px;
	margin-top: 4px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}
.ifil-club-login-prompt .info-modal-btn-club {
	margin-top: 16px;
}
.info-modal-phone a {
	color: inherit;
	text-decoration: none;
}
.info-modal-phone a:hover { color: var(--brand-primary-bg); }
.kontakt-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
	align-items: stretch;
}
.kontakt-card {
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	padding: 24px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.kontakt-club-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--brand-secondary-bg);
	border: 2px solid var(--brand-secondary-bg);
	padding: 6px 12px;
	margin-bottom: 16px;
}
.kontakt-card-club {
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.kontakt-card-club:hover {
	border-color: var(--brand-secondary-bg);
	box-shadow: 0 2px 12px rgba(0, 39, 105, 0.08);
}
.kontakt-club-btn {
	margin-top: 14px;
	padding: 10px 22px;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	background: var(--brand-secondary-bg);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.15s;
}
.kontakt-club-btn:hover { background: var(--brand-primary-bg); }
.kontakt-card p {
	font-size: 13px;
	color: var(--dark-text);
	margin-bottom: 8px;
}
.kontakt-discount {
	font-size: 32px;
	font-weight: 800;
	color: var(--dark-text);
	line-height: 1.1;
	margin: 8px 0;
}
.kontakt-card small {
	display: block;
	font-size: 10px;
	color: #9ca3af;
	margin-top: 12px;
	line-height: 1.35;
}
.kontakt-card-phone > i {
	display: block;
	font-size: 36px;
	color: var(--dark-text);
	margin-bottom: 12px;
}
.kontakt-card-phone p,
.kontakt-card-phone .kontakt-phone,
.kontakt-card-phone .kontakt-hours {
	width: 100%;
	text-align: center;
}
.kontakt-phone {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: var(--dark-text);
	text-decoration: none;
	margin: 8px 0;
	line-height: 1.2;
}
.kontakt-phone:hover { color: var(--brand-primary-bg); }
.kontakt-hours {
	font-size: 12px !important;
	color: #6b7a99 !important;
	margin-bottom: 0 !important;
}
.kontakt-rodo {
	font-size: 9px !important;
	color: #9ca3af !important;
	line-height: 1.45 !important;
	margin-bottom: 0 !important;
	text-align: left;
}
.payment-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 20px;
	margin-bottom: 20px;
	padding: 20px 16px;
	background: var(--dark-text);
	border-radius: 12px;
}
.payment-logos img {
	height: 26px;
	width: auto;
	max-width: 72px;
	object-fit: contain;
	display: block;
}
.info-modal-payments p {
	text-align: center;
	margin-bottom: 6px;
}
.info-modal-payments p:last-child { margin-bottom: 0; }
.bundle-modal-icon {
	text-align: center;
	margin-bottom: 16px;
	color: var(--brand-secondary-bg);
	font-size: 56px;
}

/* Lightbox rysunku */
.lightbox-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.85);
	z-index: 1200;
	align-items: center;
	justify-content: center;
	padding: 24px;
	cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
}

/* Baner projektu – wymiary dla grafika */
/*
	Projekt łazienki za Złotówkę – wymiary grafik:
	Desktop: 1320 × 110 px (tekst: lewa połowa ~660 px, grafika: prawa połowa z gradientem)
	Mobile: 375 × 200 px (układ pionowy: tekst góra ~100 px, grafika dół ~100 px)
	Format: PNG/WebP, safe zone tekstu 24 px od krawędzi
*/
.promo-banner-specs {
	display: none;
}
.details-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}
.details-card-icon {
	width: 32px;
	height: 32px;
	background: var(--brand-secondary-bg);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}
.details-card-header h3 {
	font-size: 13px;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.3;
}
.details-list {
	list-style: none;
}
.details-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	margin-bottom: 7px;
	line-height: 1.35;
	color: var(--dark-text);
}
.details-list li i.fa-check,
.details-list li i.fa-xmark {
	font-size: 11px;
	flex-shrink: 0;
	line-height: 1;
	width: 12px;
	text-align: center;
}
.details-list li i.fa-check {
	color: var(--brand-secondary-bg);
}
.details-list li i.fa-xmark {
	color: #dc2626;
}
.details-list li i.fa-circle {
	font-size: 5px;
	color: var(--brand-secondary-bg);
	margin-top: 6px;
	flex-shrink: 0;
}
.details-card p {
	font-size: 12px;
	color: #6b7a99;
	line-height: 1.45;
	margin-bottom: 12px;
}
.details-warning {
	display: flex;
	gap: 8px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 11px;
	color: #92400e;
	line-height: 1.4;
}
.details-warning i {
	color: #f59e0b;
	flex-shrink: 0;
	margin-top: 1px;
}
.set-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.set-col h4 {
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 8px;
}
.set-col-in { color: var(--brand-secondary-bg); }
.set-col-out { color: #dc2626; }
.set-col li i.fa-check { color: var(--brand-secondary-bg); }
.set-col li i.fa-xmark { color: #dc2626; font-size: 11px; }

/* Specs table */
.specs-section {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	padding: 20px 24px;
}
.specs-section h2,
.specs-section h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: var(--h4);
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 16px;
}
.specs-section h2 i,
.specs-section h3 i { color: var(--brand-secondary-bg); }
.specs-table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	overflow: hidden;
}
.specs-col { display: flex; flex-direction: column; }
.specs-col:first-child { border-right: 1px solid var(--panel-border); }
.specs-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 16px;
	font-size: 13px;
	border-bottom: 1px solid var(--panel-border);
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(even) { background: var(--dark-bg); }
.specs-row .label { color: #6b7a99; }
.specs-row .value { font-weight: 600; text-align: right; }

/* Zakładki – panele treści, FAQ, pliki */
.tab-panel {
	border: 1px solid var(--panel-border);
	border-radius: var(--panel-radius);
	padding: 24px;
	scroll-margin-top: 20px;
}
.tab-panel h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: var(--h4);
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 16px;
}
.tab-panel h2 i { color: var(--brand-secondary-bg); }
.tab-panel-note {
	font-size: 12px;
	color: #6b7a99;
	margin-top: 12px;
	font-style: italic;
}
.mount-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}
.mount-drawing {
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	overflow: hidden;
	background: var(--light-bg);
}
.mount-drawing img {
	width: 100%;
	height: auto;
	display: block;
}
.mount-specs {
	list-style: none;
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	overflow: hidden;
}
.mount-specs li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	font-size: 13px;
	border-bottom: 1px solid var(--panel-border);
}
.mount-specs li:last-child { border-bottom: none; }
.mount-specs li:nth-child(even) { background: var(--dark-bg); }
.mount-specs .label { color: #6b7a99; }
.mount-specs .value { font-weight: 600; text-align: right; }
.mount-tips {
	margin-top: 16px;
	font-size: 13px;
	color: #6b7a99;
	line-height: 1.5;
}
.reviews-summary {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: var(--light-bg);
	border-radius: 12px;
	margin-bottom: 20px;
}
.reviews-score {
	font-size: 36px;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1;
}
.reviews-score-meta {
	font-size: 13px;
	color: #6b7a99;
}
.reviews-score-meta .stars {
	color: #fbbf24;
	font-size: 14px;
	margin-bottom: 4px;
}
.review-item {
	padding: 16px 0;
	border-bottom: 1px solid var(--panel-border);
}
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}
.review-item-author {
	font-weight: 700;
	font-size: 14px;
}
.review-item-date {
	font-size: 12px;
	color: #6b7a99;
}
.review-item-stars {
	color: #fbbf24;
	font-size: 12px;
	margin-bottom: 6px;
}
.review-item p {
	font-size: 13px;
	color: #6b7a99;
	line-height: 1.5;
}
.faq-list {
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--panel-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 16px 18px;
	border: none;
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark-text);
	text-align: left;
	cursor: pointer;
	transition: var(--transition);
}
.faq-question:hover { background: var(--light-bg); }
.faq-question i {
	color: var(--brand-secondary-bg);
	font-size: 12px;
	transition: transform 0.25s ease;
	flex-shrink: 0;
}
.faq-item.open .faq-question {
	color: var(--brand-secondary-bg);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-answer-inner {
	padding: 0 18px 16px;
	font-size: 13px;
	color: #6b7a99;
	line-height: 1.55;
}
.faq-item.open .faq-answer { max-height: 320px; }
.download-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.download-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
.download-item:hover {
	border-color: var(--brand-primary-bg);
	background: var(--light-bg);
}
.download-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light-bg);
	border-radius: 10px;
	color: var(--brand-secondary-bg);
	font-size: 18px;
}
.download-item:hover .download-icon {
	background: var(--brand-primary-bg);
	color: #fff;
}
.download-info { flex: 1; min-width: 0; }
.download-info strong {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}
.download-info span {
	font-size: 12px;
	color: #6b7a99;
}
.download-action {
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-secondary-bg);
	flex-shrink: 0;
}
.download-item:hover .download-action { color: var(--brand-primary-bg); }
.desc-row.highlight-target,
.tab-panel.highlight-target,
.details-card.highlight-target,
.specs-section.highlight-target,
.cta-tile.highlight-target {
	outline: 2px solid var(--brand-primary-bg);
	outline-offset: 2px;
	transition: outline-color 0.3s;
}

/* Desktop – większa czytelność (+2 rozmiary) */
@media (min-width: 769px) {
	.product-page {
		--p: 17px;
		--h1: 32px;
		--h2: 28px;
		--h3: 24px;
		--h4: 20px;
		--h5: 18px;
		--h6: 16px;
	}
	.product-tab {
		font-size: 13px;
		padding: 16px 10px;
	}
	.product-tab i { font-size: 20px; }
	.desc-opis-content p,
	.desc-checklist li,
	.before-buy-item span,
	.before-buy-item strong,
	.specs-row,
	.details-list li,
	.details-card p,
	.details-warning,
	.set-col h4,
	.mount-specs li,
	.mount-tips,
	.review-item p,
	.faq-answer-inner,
	.tab-panel-note {
		font-size: 15px;
	}
	.before-buy-item strong,
	.review-item-author,
	.download-info strong,
	.faq-question {
		font-size: 16px;
	}
	.cta-tile-header p,
	.cta-tile-hours {
		font-size: 13px;
	}
}

@media (max-width: 1100px) {
	.product-layout { grid-template-columns: 1fr; }
	.product-info { position: static; }
	.details-grid { grid-template-columns: repeat(2, 1fr); }
	.cta-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.product-page {
		padding: 12px 16px 32px;
	}
	.product-layout {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.product-media,
	.product-info {
		display: contents;
	}

	/* Kolejność sekcji na mobile */
	.breadcrumbs { order: 1; margin-bottom: 6px; }
	.badges-row { order: 2; margin-bottom: 6px; gap: 6px; }
	.product-title { order: 3; margin-bottom: 4px; font-size: 16px; line-height: 1.25; }
	.product-meta { order: 4; margin-bottom: 8px; gap: 8px; }
	.gallery { order: 5; margin-bottom: 0; width: 100%; align-self: stretch; }
	.price-box { order: 6; margin-bottom: 8px; width: 100%; }
	.variant-block { order: 7; margin-bottom: 6px; width: 100%; }
	.variant-label { margin-bottom: 4px; }
	.stock-row { order: 8; margin-bottom: 8px; gap: 8px; width: 100%; }
	.delivery-row { order: 9; margin-bottom: 8px; width: 100%; gap: 8px; grid-template-columns: 1fr; }
	.purchase-row { display: none; }
	.installments-row { order: 10; margin-bottom: 10px; width: 100%; }
	.trust-row { order: 11; margin-bottom: 12px; width: 100%; }
	.bundle-section { order: 12; width: 100%; }
	.crosssell-strip { order: 13; width: 100%; }
	.why-section { order: 14; margin-top: 12px; width: 100%; }
	.product-media > .promo-banner { order: 15; margin-top: 12px; width: 100%; }

	/* Badge: bez bestsellera, mniejsze */
	.badge-bestseller { display: none; }
	.badge {
		height: 26px;
		padding: 0 8px 0 0;
	}
	.badge-icon {
		width: 26px;
		border-radius: 0 0.75rem 0.75rem 0;
	}
	.badge-label {
		font-size: 10px;
		padding-left: 6px;
	}

	/* Galeria: grid – zdjęcie na górze na pełną szerokość, miniatury równo */
	.gallery {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		gap: 8px;
		width: 100%;
		max-width: 100%;
	}
	.gallery-main {
		grid-column: 1;
		grid-row: 1;
		position: relative;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		min-height: 0;
		border-radius: 12px;
		aspect-ratio: 1;
		overflow: hidden;
	}
	.gallery-main img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	.gallery-arrow {
		width: 38px;
		height: 38px;
	}
	.gallery-prev { left: 8px; }
	.gallery-next { right: 8px; }
	.gallery-badges {
		bottom: 8px;
		left: 8px;
		right: 8px;
		gap: 4px;
	}
	.gallery-badge {
		font-size: 9px;
		padding: 4px 8px;
		gap: 4px;
	}
	.gallery-badge i { font-size: 11px; }
	.gallery-thumbs {
		grid-column: 1;
		grid-row: 2;
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 8px;
		width: 100%;
		max-width: 100%;
		overflow: visible;
	}
	.gallery-thumb,
	.gallery-thumb-more {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		min-width: 0;
		min-height: 0;
	}

	/* Ceny – Dołącz do Klubu pod ceną klubową */
	.price-col { padding: 8px 10px; }
	.price-club-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	.price-club-link {
		text-align: left;
		white-space: normal;
		font-size: 10px;
	}

	/* Dostawa – pełna szerokość treści, zaokrąglone boxy */
	.delivery-box {
		border-radius: 12px;
		width: 100%;
		padding: 10px 14px;
	}

	/* Koszyk – fixed pasek: ilość + przycisk */
	.product-page { padding-bottom: 72px; }
	.mobile-cart-bar {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 200;
		padding-bottom: env(safe-area-inset-bottom, 0);
	}
	.mobile-qty-selector button {
		width: 40px;
		height: 44px;
	}
	.mobile-qty-selector input {
		width: 44px;
		height: 44px;
	}

	/* Etykiety tekstowe – zawsze widoczne obok ikon */
	.badge {
		overflow: visible;
		height: auto;
		min-height: 26px;
	}
	.badge-label {
		display: inline-flex;
		align-items: center;
		white-space: nowrap;
	}
	.product-tabs {
		flex-direction: column;
		border: none;
		gap: 8px;
		overflow: visible;
		margin-bottom: 16px;
	}
	.product-tab {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		padding: 14px 16px;
		border: 1px solid var(--panel-border);
		border-radius: var(--panel-radius);
		font-size: 13px;
		gap: 10px;
		width: 100%;
	}
	.product-tab span {
		display: inline;
		flex: 1;
		text-align: left;
	}
	.product-tab .tab-chevron {
		display: block;
		margin-left: auto;
	}
	.product-tab.active .tab-chevron { transform: rotate(180deg); }
	.delivery-box div {
		min-width: 0;
		flex: 1;
	}
	.delivery-box strong,
	.delivery-box span {
		display: block;
	}
	.price-label {
		display: block;
	}
	.gallery-badge {
		font-size: 10px;
	}

	/* Raty obok siebie – badge + bank */
	.installments-row {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	.installments {
		border-radius: 10px;
		padding: 8px 10px;
		gap: 6px;
	}
	.installments-label-desktop { display: none; }
	.installments-label-mobile { display: inline; }
	.installments-text { font-size: 11px; flex: 1; min-width: 0; }
	.installments i:last-child { display: none; }

	/* Trust – jedna linia, justify-between w szerokości treści */
	.trust-row {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 8px;
	}
	.trust-badge {
		flex: 1 1 0;
		min-width: 0;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		text-align: center;
		gap: 4px;
		padding: 4px 2px;
		border-top: none;
	}
	.trust-badge:not(:first-child) {
		border-left: 1px solid var(--panel-border);
		padding-left: 6px;
	}
	.trust-badge-text {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
	.trust-badge-text span { font-size: 9px; white-space: nowrap; }
	.trust-badge i { font-size: 20px; }
	.trust-badge-logo { height: 1.5rem; max-width: 3rem; }

	/* Telefon – pełna szerokość treści, zaokrąglony */
	.help-box {
		flex: 1 1 100%;
		width: 100%;
		margin-top: 4px;
		border-radius: 12px;
		padding: 12px 14px;
		justify-content: space-between;
	}
	.help-phone { font-size: 20px; }
	.help-label { font-size: 10px; }
	.help-hours span { font-size: 9px; }

	/* Baner projektu – pełna szerokość treści, zaokrąglony */
	.promo-banner {
		grid-template-columns: 1fr;
		height: auto;
		border-radius: var(--panel-radius);
		overflow: hidden;
		width: 100%;
	}
	.promo-banner-bottom {
		border-radius: var(--panel-radius);
		overflow: hidden;
	}
	.promo-banner-img { height: 100px; }

	.why-grid { grid-template-columns: 1fr; }
	.why-specs {
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}
	.why-drawing { max-height: 180px; }
	.why-drawing img { height: 100%; width: 100%; max-width: none; max-height: 180px; }
	.price-main { grid-template-columns: 1fr 1fr; }
	.price-col.price-your-row { grid-column: 1 / -1; }
	.price-or { display: none; }
	.stock-row { flex-wrap: nowrap; }
	.bundle-footer { flex-direction: column; align-items: stretch; }
	.bundle-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 12px 10px;
		gap: 8px;
	}
	.bundle-card img {
		width: 64px;
		height: 64px;
		min-width: 64px;
	}
	.bundle-items.count-2 .bundle-card img {
		width: 64px;
		height: 64px;
		min-width: 64px;
	}
	.bundle-card-info {
		align-items: center;
		width: 100%;
	}
	.desc-row { grid-template-columns: 1fr; }
	.details-grid { grid-template-columns: 1fr; }
	.specs-table { grid-template-columns: 1fr; }
	.specs-col:first-child { border-right: none; border-bottom: 1px solid var(--panel-border); }
	.cta-grid { grid-template-columns: 1fr; }
	.product-footer-benefits { justify-content: center; }
	.mount-layout { grid-template-columns: 1fr; }
	.tab-panel { padding: 18px 16px; }
	.reviews-summary { flex-direction: column; align-items: flex-start; }
	.kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.view-switcher { max-width: none; flex-direction: column; }
}

/* Integracja WooCommerce w karcie 2.0 */
.ifil-v2-purchase .ifil-v2-cart-form {
	display: flex;
	align-items: stretch;
	gap: 12px;
	width: 100%;
}
.ifil-v2-purchase .qty-selector {
	display: flex;
	align-items: center;
	border: 1px solid var(--panel-border);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
	flex-shrink: 0;
}
.ifil-v2-purchase .ifil-v2-qty-minus,
.ifil-v2-purchase .ifil-v2-qty-plus {
	width: 40px;
	height: 44px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 18px;
	color: var(--dark-text);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ifil-v2-purchase .ifil-v2-qty-minus:hover,
.ifil-v2-purchase .ifil-v2-qty-plus:hover {
	background: var(--light-bg);
}
.ifil-v2-purchase .ifil-v2-qty-input {
	border: none;
	text-align: center;
	width: 48px;
	height: 44px;
	font-weight: 600;
	background: transparent;
	-moz-appearance: textfield;
}
.ifil-v2-purchase .ifil-v2-qty-input::-webkit-outer-spin-button,
.ifil-v2-purchase .ifil-v2-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.ifil-v2-purchase .btn-cart {
	flex: 1;
}
.ifil-product-v2 .gallery-main .wishlist-btn {
	pointer-events: none;
}
.ifil-product-v2 .gallery-main .wishlist-btn .ifil-fav-btn {
	pointer-events: auto;
	width: 100% !important;
	height: 100%;
	min-width: 0;
	padding: 0 !important;
	border: none !important;
	border-radius: 50%;
	background: transparent !important;
	color: inherit;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
}
.ifil-product-v2 .gallery-main .wishlist-btn .ifil-fav-btn:hover {
	color: #e74c3c;
	background: transparent;
}
.ifil-product-v2 .promo-banner-bottom {
	margin-top: 20px;
}
.ifil-product-v2 .woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 6px;
	font-size: 12px;
	color: #6b7a99;
	margin-bottom: 16px;
}
.ifil-product-v2 .woocommerce-breadcrumb a {
	color: var(--brand-secondary-bg);
	text-decoration: none;
}
.ifil-product-v2 .wishlist-btn .ifil-favorite-btn {
	background: transparent;
	border: none;
	padding: 0;
}
.ifil-product-v2 .iworks-omnibus {
	font-size: 11px;
	color: #6b7a99;
	margin-top: 4px;
}
