/* ==========================================================================
   Strona B2B - „Odzież robocza dla firm"
   Szablon: page-odziez-robocza-dla-firm.php · logika: inc/b2b-page.php
   ========================================================================== */

.ez-b2b {
	--b2b-gap: 72px;
	--b2b-ink: var(--ez-black, #1a1a1a);
	--b2b-muted: #535c62;
	--b2b-line: var(--ez-border, #dddddd);
	--b2b-soft: var(--ez-gray-bg, #f6f6f6);
	color: var(--b2b-ink);
	padding-bottom: 40px;
}

.ez-b2b h1,
.ez-b2b h2,
.ez-b2b h3 {
	letter-spacing: -0.01em;
	text-transform: none;
}

.ez-b2b__eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #687077;
}

.ez-b2b__eyebrow--light {
	color: rgba(255, 255, 255, 0.7);
}

.ez-b2b-section {
	padding: var(--b2b-gap) 16px 0;
}

.ez-b2b-section--gray {
	margin-top: var(--b2b-gap);
	padding: var(--b2b-gap) 0;
	background: var(--b2b-soft);
}

.ez-b2b-section--gray > .ez-container {
	padding-left: 16px;
	padding-right: 16px;
}

.ez-b2b-section--gray + .ez-b2b-section {
	padding-top: var(--b2b-gap);
}

.ez-b2b-section__title {
	margin: 0 0 16px;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.18;
	font-weight: 600;
	max-width: 900px;
}

.ez-b2b-section__lead {
	max-width: 820px;
	margin: 0 0 36px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--b2b-muted);
}

/* --- Hero ------------------------------------------------------------- */

.ez-b2b-hero {
	background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
	border-bottom: 1px solid var(--b2b-line);
}

.ez-b2b-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 48px;
	align-items: center;
	padding: 64px 16px;
}

.ez-b2b-hero__title {
	margin: 0 0 20px;
	font-size: clamp(32px, 4.2vw, 52px);
	line-height: 1.08;
	font-weight: 700;
}

.ez-b2b-hero__title span {
	display: block;
	font-weight: 300;
	font-size: 0.72em;
	line-height: 1.25;
	margin-top: 10px;
	color: #2f3438;
}

.ez-b2b-hero__lead {
	max-width: 640px;
	margin: 0 0 28px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--b2b-muted);
}

.ez-b2b-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ez-b2b-hero__actions .ez-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding: 14px 26px;
	font-size: 15px;
	font-weight: 600;
}

.ez-b2b-hero__actions .ez-icon {
	width: 18px;
	height: 18px;
}

.ez-b2b-hero__note {
	margin: 18px 0 0;
	font-size: 13px;
	color: #687077;
}

.ez-b2b-hero__visual {
	position: relative;
	min-height: 380px;
	border-radius: var(--radius-lg, 12px);
	background: var(--b2b-ink);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}

.ez-b2b-hero__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.15) 0%, rgba(26, 26, 26, 0.85) 70%, rgba(26, 26, 26, 0.95) 100%);
}

.ez-b2b-hero__facts {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 0;
	padding: 28px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 24px;
	color: #fff;
}

.ez-b2b-hero__facts li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-left: 14px;
	border-left: 2px solid rgba(255, 255, 255, 0.4);
}

.ez-b2b-hero__facts strong {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}

.ez-b2b-hero__facts span {
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.78);
}

/* --- Siatki i karty --------------------------------------------------- */

.ez-b2b-grid {
	display: grid;
	gap: 20px;
}

.ez-b2b-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ez-b2b-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ez-b2b-card {
	padding: 28px;
	border: 1px solid var(--b2b-line);
	border-radius: var(--radius-lg, 12px);
	background: #fff;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.ez-b2b-card:hover {
	border-color: var(--b2b-ink);
}

.ez-b2b-card__icon {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--b2b-soft);
}

.ez-b2b-card__icon svg {
	width: 22px;
	height: 22px;
}

.ez-b2b-card h3,
.ez-b2b-range__item h3,
.ez-b2b-industries__item h3,
.ez-b2b-steps__item h3 {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 650;
}

.ez-b2b-card p,
.ez-b2b-range__item p,
.ez-b2b-industries__item p,
.ez-b2b-steps__item p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--b2b-muted);
}

/* --- Znakowanie ------------------------------------------------------- */

.ez-b2b-branding {
	margin-top: var(--b2b-gap);
	background: var(--b2b-ink);
	color: #fff;
}

.ez-b2b-branding__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 56px;
	padding: var(--b2b-gap) 16px;
	align-items: start;
}

.ez-b2b-branding .ez-b2b-section__title {
	color: #fff;
}

.ez-b2b-branding__copy > p {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 24px;
}

.ez-b2b-branding__list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: grid;
	gap: 14px;
}

.ez-b2b-branding__list li {
	position: relative;
	padding-left: 26px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.ez-b2b-branding__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
}

.ez-b2b-branding__list strong {
	color: #fff;
}

.ez-b2b-branding__cta.ez-btn {
	background: #fff;
	color: var(--b2b-ink) !important;
	border-color: #fff;
	min-height: 52px;
	padding: 14px 26px;
	font-weight: 600;
}

.ez-b2b-branding__cta.ez-btn:hover {
	background: transparent;
	color: #fff !important;
}

.ez-b2b-branding__card {
	padding: 32px;
	border-radius: var(--radius-lg, 12px);
	background: #fff;
	color: var(--b2b-ink);
}

.ez-b2b-branding__card h3 {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 650;
}

.ez-b2b-branding__prices {
	margin: 0 0 18px;
}

.ez-b2b-branding__prices div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--b2b-line);
	font-size: 15px;
}

.ez-b2b-branding__prices dt {
	color: var(--b2b-muted);
}

.ez-b2b-branding__prices dd {
	margin: 0;
	font-weight: 650;
	white-space: nowrap;
}

.ez-b2b-branding__small {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--b2b-muted);
}

/* --- Proces ----------------------------------------------------------- */

.ez-b2b-steps {
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	counter-reset: step;
}

.ez-b2b-steps__item {
	position: relative;
	padding: 28px 24px 24px;
	border-top: 2px solid var(--b2b-ink);
}

.ez-b2b-steps__num {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border-radius: 50%;
	background: var(--b2b-ink);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

/* --- Asortyment i branże --------------------------------------------- */

.ez-b2b-range__item {
	display: block;
	padding: 24px;
	border-radius: var(--radius-lg, 12px);
	background: #fff;
	border: 1px solid transparent;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.15s ease;
}

.ez-b2b-range__item:hover {
	border-color: var(--b2b-ink);
}

.ez-b2b-range__item h3::after {
	content: " →";
	font-weight: 400;
	color: #687077;
}

.ez-b2b-industries__item {
	padding: 22px 0 0;
	border-top: 1px solid var(--b2b-line);
}

/* --- Marki ------------------------------------------------------------ */

.ez-b2b-brands {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.ez-b2b-brands a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 84px;
	padding: 16px;
	border-radius: var(--radius-md, 8px);
	background: #fff;
	border: 1px solid var(--b2b-line);
	color: var(--b2b-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	transition: border-color 0.15s ease;
}

.ez-b2b-brands a:hover {
	border-color: var(--b2b-ink);
}

.ez-b2b-brands img {
	max-width: 100%;
	max-height: 40px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.85;
	transition: filter 0.15s ease, opacity 0.15s ease;
}

.ez-b2b-brands a:hover img {
	filter: none;
	opacity: 1;
}

/* --- Zapytanie ofertowe ---------------------------------------------- */

.ez-b2b-inquiry {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 56px;
	padding: var(--b2b-gap) 16px 0;
	scroll-margin-top: calc(var(--ez-header-h, 128px) + 16px);
}

.ez-b2b-inquiry__intro > p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--b2b-muted);
	margin: 0 0 20px;
}

.ez-b2b-inquiry__points {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.ez-b2b-inquiry__points li {
	position: relative;
	padding-left: 28px;
	font-size: 15px;
	line-height: 1.5;
}

.ez-b2b-inquiry__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--b2b-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.ez-b2b-inquiry__contact {
	padding: 24px;
	border-radius: var(--radius-lg, 12px);
	background: var(--b2b-soft);
}

.ez-b2b-inquiry__contact p {
	margin: 0 0 8px;
	line-height: 1.6;
}

.ez-b2b-inquiry__contact a {
	color: inherit;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
}

.ez-b2b-inquiry__contact a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ez-b2b-inquiry__hours {
	font-size: 13px;
	color: var(--b2b-muted);
}

.ez-b2b-form {
	padding: 36px;
	border: 1px solid var(--b2b-line);
	border-radius: var(--radius-lg, 12px);
	background: var(--b2b-soft);
}

.ez-b2b-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Grupa pól: równe odstępy przez gap (bez marginesów na sąsiadach, bo w wierszu
   siatki robiły „schody" - pierwsze pole bez marginesu, kolejne z marginesem). */
.ez-b2b-form__group {
	display: grid;
	gap: 20px;
	margin: 0 0 32px;
	padding: 0;
	border: 0;
	min-width: 0;
}

.ez-b2b-form__group legend {
	float: left; /* legend w gridzie: float zdejmuje domyślne pozycjonowanie fieldsetu */
	width: 100%;
	padding: 0 0 10px;
	margin: 0;
	border-bottom: 1px solid var(--b2b-line);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--b2b-ink);
}

.ez-b2b-form__row {
	display: grid;
	gap: 20px;
	align-items: start;
}

.ez-b2b-form__row--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ez-b2b-form__row--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ez-b2b-form__field {
	margin: 0;
	min-width: 0;
}

.ez-b2b-form__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--b2b-ink);
}

.ez-b2b-form__req {
	color: var(--ez-sale, #d5001c);
}

.ez-b2b-form__hint {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: #687077;
}

label > .ez-b2b-form__hint {
	display: inline;
	margin: 0 0 0 4px;
}

.ez-b2b-form input[type="text"],
.ez-b2b-form input[type="email"],
.ez-b2b-form input[type="tel"],
.ez-b2b-form select,
.ez-b2b-form textarea {
	width: 100%;
	min-height: 52px;
	padding: 14px 16px;
	border: 1px solid var(--b2b-line);
	border-radius: var(--ez-radius, 4px);
	background: #fff;
	font-family: var(--ez-font, inherit);
	font-size: 16px; /* 16px = brak auto-zoomu na iOS przy fokusie */
	line-height: 1.4;
	color: var(--b2b-ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ez-b2b-form input::placeholder,
.ez-b2b-form textarea::placeholder {
	color: #8a9096;
}

.ez-b2b-form input:focus,
.ez-b2b-form select:focus,
.ez-b2b-form textarea:focus {
	outline: none;
	border-color: var(--b2b-ink);
	box-shadow: 0 0 0 1px var(--b2b-ink);
}

.ez-b2b-form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a6a6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 42px;
}

.ez-b2b-form textarea {
	resize: vertical;
	min-height: 150px;
}

.ez-b2b-form input[type="file"] {
	width: 100%;
	padding: 14px;
	border: 1px dashed #b9bfc4;
	border-radius: var(--ez-radius, 4px);
	font-size: 14px;
	background: #fff;
	color: var(--b2b-muted);
}

.ez-b2b-form input[type="file"]::file-selector-button {
	margin-right: 12px;
	padding: 8px 14px;
	border: 1px solid var(--b2b-ink);
	border-radius: var(--ez-radius, 4px);
	background: #fff;
	color: var(--b2b-ink);
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.ez-b2b-form__nip {
	display: flex;
	gap: 10px;
}

.ez-b2b-form__nip input {
	flex: 1 1 auto;
}

.ez-b2b-form__gus.ez-btn {
	flex: 0 0 auto;
	min-height: 52px;
	padding: 0 16px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.ez-b2b-form__status {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--ez-success, #1e7e34);
}

.ez-b2b-form__status:empty {
	display: none;
}

.ez-b2b-form__status.is-error {
	color: var(--ez-sale, #d5001c);
}

.ez-b2b-form__field.is-invalid input,
.ez-b2b-form__field.is-invalid select,
.ez-b2b-form__field.is-invalid textarea {
	border-color: var(--ez-sale, #d5001c);
}

.ez-b2b-form__consent {
	margin-top: 4px;
}

.ez-b2b-form__consent label {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--b2b-muted);
	cursor: pointer;
}

.ez-b2b-form__consent input {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	accent-color: var(--b2b-ink);
}

.ez-b2b-form__turnstile {
	margin-top: 20px;
	min-height: 65px;
}

.ez-b2b-form__actions {
	margin-top: 24px;
}

.ez-b2b-form__submit.ez-btn {
	width: 100%;
	min-height: 56px;
	padding: 16px 28px;
	font-size: 16px;
	font-weight: 600;
}

.ez-b2b-form__submit[disabled] {
	opacity: 0.6;
	cursor: wait;
}

.ez-b2b-form__after {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	color: var(--b2b-muted);
}

.ez-b2b-form__after a {
	color: var(--b2b-ink);
	font-weight: 600;
}

.ez-b2b-form__notice {
	padding: 14px 18px;
	margin: 0 0 24px;
	border-radius: var(--ez-radius, 4px);
	font-size: 14px;
	line-height: 1.5;
}

.ez-b2b-form__notice--success {
	background: #e8f5e9;
	border: 1px solid #a5d6a7;
	color: #1b5e20;
}

.ez-b2b-form__notice--error {
	background: #ffebee;
	border: 1px solid #ef9a9a;
	color: #b71c1c;
}

/* --- FAQ -------------------------------------------------------------- */

.ez-b2b-faq details {
	padding: 18px 0;
	border-bottom: 1px solid var(--b2b-line);
}

.ez-b2b-faq summary {
	cursor: pointer;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.ez-b2b-faq summary::-webkit-details-marker {
	display: none;
}

.ez-b2b-faq summary::after {
	content: "+";
	flex: 0 0 auto;
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	color: #687077;
}

.ez-b2b-faq details[open] summary::after {
	content: "–";
}

.ez-b2b-faq summary:focus-visible {
	outline: 2px solid var(--b2b-ink);
	outline-offset: 4px;
}

.ez-b2b-faq details p {
	max-width: 860px;
	margin: 14px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--b2b-muted);
}

/* --- Treść z edytora + SEO ------------------------------------------- */

.ez-b2b-editor,
.ez-b2b-seo {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.ez-b2b-seo {
	padding-top: 56px;
	margin-top: 56px;
	border-top: 1px solid var(--b2b-line);
}

.ez-b2b-seo h2 {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 600;
}

.ez-b2b-seo p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--b2b-muted);
}

.ez-b2b-seo a {
	color: var(--b2b-ink);
}

/* --- Główne CTA w żółci z logo (#ffb651, jak przycisk „Do koszyka") ---- */

.ez-b2b .ez-btn.ez-b2b-hero__cta,
.ez-b2b .ez-btn.ez-b2b-branding__cta,
.ez-b2b .ez-btn.ez-b2b-form__submit,
.ez-b2b-sticky .ez-btn:not(.ez-btn--outline) {
	background: #ffb651;
	border-color: #ffb651;
	color: #000 !important;
}

.ez-b2b .ez-btn.ez-b2b-hero__cta:hover,
.ez-b2b .ez-btn.ez-b2b-branding__cta:hover,
.ez-b2b .ez-btn.ez-b2b-form__submit:hover,
.ez-b2b-sticky .ez-btn:not(.ez-btn--outline):hover {
	background: #f0a43c;
	border-color: #f0a43c;
	color: #000 !important;
}

.ez-b2b .ez-btn.ez-b2b-hero__cta:focus-visible,
.ez-b2b .ez-btn.ez-b2b-branding__cta:focus-visible,
.ez-b2b .ez-btn.ez-b2b-form__submit:focus-visible {
	outline: 2px solid var(--b2b-ink);
	outline-offset: 3px;
}

/* --- Mobilny pasek CTA ------------------------------------------------ */

.ez-b2b-sticky {
	display: none;
}

/* --- RWD -------------------------------------------------------------- */

@media (max-width: 1100px) {
	.ez-b2b-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ez-b2b-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ez-b2b-brands {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ez-b2b-inquiry {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 900px) {
	.ez-b2b {
		--b2b-gap: 52px;
	}

	.ez-b2b-hero__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 40px 16px;
	}

	.ez-b2b-hero__visual {
		min-height: 420px; /* zdjęcie widoczne nad panelem faktów */
	}

	.ez-b2b-grid--3 {
		grid-template-columns: 1fr;
	}

	.ez-b2b-branding__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ez-b2b-form__row--2,
	.ez-b2b-form__row--3 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.ez-b2b {
		padding-bottom: 96px;
	}

	.ez-b2b-hero__actions .ez-btn {
		flex: 1 1 100%;
		justify-content: center;
	}

	.ez-b2b-hero__facts {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		padding: 20px;
	}

	.ez-b2b-hero__facts strong {
		font-size: 20px;
	}

	.ez-b2b-grid--4,
	.ez-b2b-steps {
		grid-template-columns: 1fr;
	}

	.ez-b2b-brands {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ez-b2b-card,
	.ez-b2b-branding__card {
		padding: 22px;
	}

	.ez-b2b-form {
		padding: 22px 16px;
		border-radius: var(--radius-md, 8px);
	}

	.ez-b2b-form__group {
		gap: 16px;
		margin-bottom: 26px;
	}

	.ez-b2b-form__row {
		gap: 16px;
	}

	.ez-b2b-form__nip {
		flex-direction: column;
	}

	.ez-b2b-form__gus.ez-btn {
		width: 100%;
	}

	.ez-b2b-form__hint {
		font-size: 12px;
	}

	.ez-b2b-form textarea {
		min-height: 130px;
	}

	/* bottom ustawia JS (wysokość .ez-bottomnav motywu), gdy dolna nawigacja jest widoczna */
	.ez-b2b-sticky.is-ready {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 830;
		display: grid;
		grid-template-columns: 1fr 1.5fr;
		gap: 8px;
		padding: 8px 12px;
		background: rgba(255, 255, 255, 0.97);
		border-top: 1px solid var(--b2b-line);
		box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
		backdrop-filter: blur(8px);
		transform: translateY(0);
		transition: transform 0.2s ease;
	}

	.ez-b2b-sticky.is-ready.is-hidden {
		transform: translateY(calc(100% + 80px));
	}

	.ez-b2b-sticky .ez-btn {
		min-height: 44px;
		padding: 10px 12px;
		font-size: 14px;
		font-weight: 600;
		text-align: center;
	}
}
