/* =================================================================
   MAJSTER - motyw sklepu z narzedziami
   Industrialny, kanciasty, zolto-grafitowy.
   ================================================================= */

:root {
	--yellow: #febd17;
	--yellow-dark: #e0a400;
	--ink: #231e20;
	--ink-soft: #3a3234;
	--black: #121011;
	--white: #ffffff;
	--gray-50: #f6f6f6;
	--gray-100: #ececec;
	--gray-200: #dcdcdc;
	--gray-400: #9a9698;
	--gray-600: #5f5a5c;

	--wrap: 1320px;
	--gap: 24px;

	--font-head: "Archivo", "Arial Narrow", Impact, sans-serif;
	--font-body: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--shadow: 0 2px 0 rgba(0, 0, 0, .08);
	--speed: .18s;
}

/* ---------------- reset ---------------- */

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-variation-settings: "wdth" 112;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -.02em;
	line-height: 1.02;
	margin: 0 0 .5em;
}

.wrap {
	width: min(100% - 32px, var(--wrap));
	margin-inline: auto;
}

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

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--yellow); color: var(--ink);
	padding: 10px 16px; z-index: 999; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
	outline: 3px solid var(--yellow);
	outline-offset: 2px;
}

/* ---------------- przyciski ---------------- */

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	border: 0;
	border-radius: 0;
	background: var(--yellow);
	color: var(--ink);
	font-family: var(--font-head);
	font-variation-settings: "wdth" 108;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .02em;
	text-transform: uppercase;
	line-height: 1;
	transition: background var(--speed), transform var(--speed);
}
.btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .button:hover {
	background: var(--yellow-dark);
	color: var(--ink);
}
.btn:active { transform: translateY(1px); }

.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }

.btn--ghost {
	background: transparent;
	color: var(--white);
	box-shadow: inset 0 0 0 2px currentColor;
}
.btn--ghost:hover { background: var(--white); color: var(--ink); box-shadow: none; }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--black); color: var(--white); }

.btn .icon { flex: none; }

.link-more {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 700; font-size: 14px; text-transform: uppercase;
	border-bottom: 2px solid var(--yellow); padding-bottom: 2px;
}

/* ---------------- pasek nad naglowkiem ---------------- */

.topbar {
	background: var(--black);
	color: #cfcbcc;
	font-size: 13px;
}
.topbar__in {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; min-height: 38px;
}
.topbar__list {
	display: flex; gap: 26px; margin: 0; padding: 0; list-style: none; flex-wrap: wrap;
}
.topbar__list li { display: flex; align-items: center; gap: 7px; }
.topbar__list .icon { color: var(--yellow); }
.topbar__phone {
	display: inline-flex; align-items: center; gap: 7px;
	font-weight: 600; color: var(--white);
}
.topbar__phone .icon { color: var(--yellow); }

/* ---------------- naglowek ---------------- */

.head {
	position: sticky; top: 0; z-index: 90;
	background: var(--ink);
	color: var(--white);
	border-bottom: 4px solid var(--yellow);
}
.head__in {
	display: flex; align-items: center; gap: 24px;
	min-height: 78px;
}

.brand {
	display: inline-flex; align-items: center;
	font-family: var(--font-head);
	font-variation-settings: "wdth" 118;
	font-weight: 900; font-size: 26px; letter-spacing: -.03em;
	text-transform: uppercase; color: var(--white);
	white-space: nowrap;
}
.brand__mark { position: relative; padding-right: 10px; }
.brand__mark::after {
	content: ""; position: absolute; right: 0; bottom: 6px;
	width: 7px; height: 7px; background: var(--yellow);
}
.custom-logo { max-height: 46px; width: auto; }

.head__search {
	flex: 1 1 auto; display: flex; max-width: 620px;
	background: var(--white);
}
.head__search input[type="search"] {
	flex: 1; border: 0; padding: 14px 16px; font-size: 15px;
	color: var(--ink); background: transparent; min-width: 0;
}
.head__search input:focus { outline: none; }
.head__search button {
	border: 0; background: var(--yellow); color: var(--ink);
	padding: 0 20px; display: grid; place-items: center;
	transition: background var(--speed);
}
.head__search button:hover { background: var(--yellow-dark); }

.head__tools { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.head__acc, .head__cart {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 12px; color: var(--white); font-size: 13px;
	font-weight: 600; text-transform: uppercase; letter-spacing: .02em;
	transition: color var(--speed);
}
.head__acc:hover, .head__cart:hover { color: var(--yellow); }
.head__cart { position: relative; }
.head__cart-count {
	display: grid; place-items: center;
	min-width: 22px; height: 22px; padding: 0 5px;
	background: var(--yellow); color: var(--ink);
	font-size: 12px; font-weight: 800;
}

.head__burger {
	display: none; border: 0; background: transparent; color: var(--white);
	padding: 8px; margin-left: -8px;
}

/* ---------------- menu ---------------- */

.nav { background: var(--black); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__list {
	display: flex; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; list-style: none;
}
.nav__list li { position: relative; }
.nav__list > li > a {
	display: block; padding: 14px 15px;
	color: var(--white); font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .04em;
	transition: background var(--speed), color var(--speed);
}
.nav__list > li:first-child > a { padding-left: 0; }
.nav__list > li > a:hover,
.nav__list > li.current-menu-item > a { background: var(--yellow); color: var(--ink); }
.nav__list > li:first-child > a:hover { padding-left: 15px; margin-left: -15px; }

.nav__list ul {
	position: absolute; left: 0; top: 100%; z-index: 20;
	min-width: 240px; margin: 0; padding: 6px 0; list-style: none;
	background: var(--ink); box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity var(--speed), transform var(--speed), visibility var(--speed);
}
.nav__list li:hover > ul,
.nav__list li:focus-within > ul { opacity: 1; visibility: visible; transform: none; }
.nav__list ul a {
	display: block; padding: 10px 18px; font-size: 14px; color: #e4e1e2;
}
.nav__list ul a:hover { background: var(--yellow); color: var(--ink); }

.nav__phone {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--yellow); font-weight: 800; font-size: 15px;
	font-family: var(--font-head); font-variation-settings: "wdth" 105;
}

/* ---------------- baner ---------------- */

.hero {
	position: relative;
	background: var(--ink);
	color: var(--white);
	overflow: hidden;
}
.hero--photo::before {
	content: ""; position: absolute; inset: 0;
	background-image: var(--hero-img);
	background-size: cover; background-position: center;
	opacity: .5;
}
.hero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(18, 16, 17, .96) 0%, rgba(18, 16, 17, .72) 48%, rgba(18, 16, 17, .15) 100%);
}
.hero__in { position: relative; z-index: 2; padding: 92px 0 104px; max-width: 760px; }
.hero__kicker {
	display: inline-block; margin: 0 0 18px;
	padding: 7px 14px; background: var(--yellow); color: var(--ink);
	font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
}
.hero__title {
	font-size: clamp(40px, 6.4vw, 78px);
	margin: 0 0 20px;
	font-variation-settings: "wdth" 115;
}
.hero__text {
	font-size: clamp(16px, 1.6vw, 19px);
	max-width: 56ch; margin: 0 0 30px; color: #d9d5d6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stripe {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
	height: 10px; background: var(--yellow);
}

/* ---------------- pasek zalet ---------------- */

.usp { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.usp__in {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
	padding: 34px 0;
}
.usp__item { display: flex; gap: 14px; align-items: flex-start; }
.usp__icon {
	flex: none; display: grid; place-items: center;
	width: 46px; height: 46px; background: var(--ink); color: var(--yellow);
}
.usp__item h3 {
	margin: 2px 0 4px; font-size: 15px;
	font-variation-settings: "wdth" 105;
}
.usp__item p { margin: 0; font-size: 13.5px; color: var(--gray-600); line-height: 1.5; }

/* ---------------- sekcje ---------------- */

.section { padding: 68px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark .card { background: #2d2729; color: var(--white); }
.section--dark .card__title a { color: var(--white); }
.section--cats { background: var(--white); }

.section__head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 20px; margin-bottom: 34px;
	border-bottom: 3px solid var(--yellow); padding-bottom: 14px;
}
.section__title { font-size: clamp(26px, 3.2vw, 40px); margin: 0; }
.section__more {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 800; font-size: 13px; text-transform: uppercase;
	white-space: nowrap; letter-spacing: .04em;
}
.section__more:hover { color: var(--yellow-dark); }
.section--dark .section__more:hover { color: var(--yellow); }

/* ---------------- kafle kategorii ---------------- */

.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.cat {
	display: flex; flex-direction: column; align-items: flex-start;
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	padding: 18px;
	transition: border-color var(--speed), transform var(--speed);
}
.cat:hover { border-color: var(--yellow); transform: translateY(-3px); }
.cat__media {
	width: 100%; aspect-ratio: 4 / 3; display: grid; place-items: center;
	background: var(--white); margin-bottom: 14px; overflow: hidden;
}
.cat__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cat__ph { color: var(--gray-400); }
.cat__name {
	font-family: var(--font-head); font-variation-settings: "wdth" 105;
	font-weight: 800; text-transform: uppercase; font-size: 15px; line-height: 1.15;
}
.cat__count { font-size: 12.5px; color: var(--gray-600); margin-top: 4px; }

/* ---------------- pas z haslem ---------------- */

.band {
	background: var(--yellow); color: var(--ink);
	background-image: repeating-linear-gradient(
		135deg,
		rgba(0, 0, 0, .05) 0 14px,
		transparent 14px 28px
	);
}
.band__in {
	display: flex; align-items: center; justify-content: space-between;
	gap: 32px; padding: 52px 0;
}
.band__text h2 { font-size: clamp(24px, 3vw, 38px); margin: 0 0 10px; }
.band__text p { margin: 0; max-width: 62ch; font-size: 16px; }
.band .btn--yellow { background: var(--ink); color: var(--yellow); }
.band .btn--yellow:hover { background: var(--black); }

/* ---------------- naglowek strony ---------------- */

.page-hero {
	background: var(--ink); color: var(--white);
	padding: 44px 0 40px;
	border-bottom: 6px solid var(--yellow);
}
.page-hero__title { font-size: clamp(28px, 4vw, 46px); margin: 0; }
.page-hero__title span { color: var(--yellow); }
.page-hero__desc { margin-top: 12px; color: #cdc9ca; max-width: 80ch; }
.page-hero__desc p { margin: 0 0 8px; }
.page-hero__meta { margin: 6px 0 0; color: var(--gray-400); font-size: 14px; }

.crumbs {
	font-size: 13px; color: var(--gray-400); margin-bottom: 12px;
}
.crumbs a { color: #cdc9ca; }
.crumbs a:hover { color: var(--yellow); }
.crumbs__sep { margin: 0 8px; opacity: .5; }

.crumbs-bar {
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-200);
	padding: 12px 0;
}
.crumbs--light { color: var(--gray-600); margin: 0; }
.crumbs--light a { color: var(--gray-600); }
.crumbs--light a:hover { color: var(--ink); }

/* ---------------- uklad sklepu ---------------- */

.shop-layout {
	display: grid; grid-template-columns: 1fr; gap: 40px;
	padding: 44px 0 72px;
}
.shop-layout:has(.shop-layout__side) { grid-template-columns: 270px 1fr; }
.shop-layout__side { order: -1; }
.shop-layout__main { min-width: 0; }

.widget { margin-bottom: 30px; }
.widget__title {
	font-size: 15px; margin: 0 0 12px;
	padding-bottom: 8px; border-bottom: 3px solid var(--yellow);
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 6px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.widget li a:hover { color: var(--yellow-dark); }

/* ---------------- produkty ---------------- */

.woocommerce ul.products,
.wc-block-grid__products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
	margin: 0; padding: 0; list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none !important; }

.woocommerce ul.products li.product {
	width: auto !important; margin: 0 !important; float: none !important;
	display: flex; flex-direction: column;
	background: var(--white);
	border: 1px solid var(--gray-200);
	transition: border-color var(--speed), box-shadow var(--speed), transform var(--speed);
	position: relative;
}
.woocommerce ul.products li.product:hover {
	border-color: var(--yellow);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
	transform: translateY(-3px);
}

.card__media {
	position: relative; aspect-ratio: 1 / 1; overflow: hidden;
	background: var(--white); display: grid; place-items: center;
	border-bottom: 1px solid var(--gray-100);
}
.card__media img {
	width: 100%; height: 100%; object-fit: contain; padding: 14px;
	transition: transform .3s ease;
}
.woocommerce ul.products li.product:hover .card__media img { transform: scale(1.05); }

.card__body { display: flex; flex-direction: column; flex: 1; padding: 16px; gap: 6px; }
.card__brand {
	font-size: 11px; font-weight: 800; letter-spacing: .12em;
	text-transform: uppercase; color: var(--gray-600);
}
.section--dark .card__brand { color: var(--yellow); }
.card__title {
	font-family: var(--font-body);
	font-size: 14.5px; font-weight: 600; line-height: 1.35;
	text-transform: none; letter-spacing: 0;
	margin: 0 0 2px; min-height: 2.7em;
}
.card__title a:hover { color: var(--yellow-dark); }

.woocommerce ul.products li.product .price {
	font-family: var(--font-head);
	font-variation-settings: "wdth" 105;
	font-weight: 900; font-size: 21px; color: var(--ink);
	margin: 6px 0 0;
}
.section--dark .price { color: var(--white); }
.woocommerce ul.products li.product .price del {
	font-size: 14px; color: var(--gray-400); font-weight: 600; margin-right: 6px;
}
.woocommerce ul.products li.product .price ins { text-decoration: none; }

.stock { font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.stock::before { content: ""; width: 8px; height: 8px; background: currentColor; }
.stock--in { color: #1e8a3c; }
.stock--out { color: var(--gray-600); }

.card__foot { margin-top: auto; padding-top: 12px; }
.card__foot .button { width: 100%; justify-content: center; }

.badge {
	position: absolute; top: 10px; left: 10px; z-index: 3;
	padding: 6px 10px; font-size: 12px; font-weight: 800;
	text-transform: uppercase; letter-spacing: .04em;
}
.badge--sale { background: var(--ink); color: var(--yellow); }

.woocommerce span.onsale { display: none; }

/* pasek sortowania nad siatka */
.woocommerce .woocommerce-result-count {
	margin: 0; font-size: 14px; color: var(--gray-600);
}
.woocommerce .woocommerce-ordering { margin: 0; }
.woocommerce .woocommerce-ordering select {
	padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: 0;
	background: var(--white); font-size: 14px;
}
.woocommerce .products + .woocommerce-pagination { margin-top: 40px; }
.woocommerce-notices-wrapper:empty { display: none; }

.woocommerce nav.woocommerce-pagination ul {
	border: 0; display: flex; gap: 6px; justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	padding: 11px 16px; border: 1px solid var(--gray-200);
	font-weight: 700; border-radius: 0;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--yellow); border-color: var(--yellow); color: var(--ink);
}

/* pasek nad petla */
.woocommerce .shop-layout__main > .woocommerce-result-count,
.woocommerce .shop-layout__main > .woocommerce-ordering {
	display: inline-block; vertical-align: middle;
}

/* ---------------- karta produktu ---------------- */

.single-product div.product {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px; padding-top: 8px;
}
.single-product div.product .woocommerce-product-gallery { width: 100% !important; float: none !important; margin: 0 !important; }
.single-product div.product .summary { width: 100% !important; float: none !important; margin: 0 !important; }
.single-product div.product .woocommerce-tabs,
.single-product div.product .related,
.single-product div.product .up-sells { grid-column: 1 / -1; }

.single-product .product_title {
	font-family: var(--font-body); font-weight: 700;
	font-size: clamp(22px, 2.6vw, 32px); text-transform: none;
	letter-spacing: -.01em; line-height: 1.2; margin: 4px 0 12px;
}
.single-product .summary .card__brand { font-size: 12px; }
.single-product .summary .price {
	font-family: var(--font-head); font-variation-settings: "wdth" 108;
	font-weight: 900; font-size: 36px; color: var(--ink); margin: 14px 0;
}
.single-product .summary .price del { font-size: 20px; color: var(--gray-400); }
.single-product .summary .price ins { text-decoration: none; }

.single-product .woocommerce-product-gallery__wrapper { border: 1px solid var(--gray-200); }
.single-product .flex-control-thumbs { display: flex; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.single-product .flex-control-thumbs li { width: 74px; }
.single-product .flex-control-thumbs img { border: 1px solid var(--gray-200); }

.single-product form.cart { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; margin: 20px 0; }
.single-product form.cart .quantity input {
	height: 100%; min-height: 48px; width: 84px; padding: 8px 10px;
	border: 1px solid var(--gray-200); border-radius: 0; font-size: 16px; text-align: center;
}
.single-product form.cart .single_add_to_cart_button { min-height: 48px; padding-inline: 34px; }

.trust {
	list-style: none; margin: 20px 0 0; padding: 18px 0 0;
	border-top: 1px solid var(--gray-200);
	display: grid; gap: 10px;
}
.trust li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.trust .icon { color: var(--yellow-dark); flex: none; }

.woocommerce-tabs ul.tabs {
	padding: 0 !important; margin: 0 0 24px !important;
	border-bottom: 3px solid var(--yellow);
	display: flex; gap: 4px; flex-wrap: wrap;
}
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after { content: none !important; }
.woocommerce-tabs ul.tabs li {
	background: var(--gray-100) !important; border: 0 !important;
	border-radius: 0 !important; margin: 0 !important;
}
.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after { content: none !important; }
.woocommerce-tabs ul.tabs li a {
	padding: 13px 22px !important; font-weight: 800 !important;
	text-transform: uppercase; font-size: 13px; color: var(--ink) !important;
}
.woocommerce-tabs ul.tabs li.active { background: var(--yellow) !important; }
.woocommerce-tabs h2 { font-size: 20px; }

.related > h2, .up-sells > h2, .cross-sells > h2 {
	font-size: clamp(22px, 2.6vw, 32px);
	border-bottom: 3px solid var(--yellow); padding-bottom: 12px; margin-bottom: 26px;
}

/* ---------------- wpisy ---------------- */

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.post-card { border: 1px solid var(--gray-200); display: flex; flex-direction: column; }
.post-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__title { font-family: var(--font-body); font-size: 18px; text-transform: none; letter-spacing: 0; margin: 0; }
.post-card__excerpt { margin: 0; font-size: 14.5px; color: var(--gray-600); }
.post-card .link-more { margin-top: auto; }

.prose { max-width: 78ch; }
.prose h2 { font-size: 28px; margin-top: 1.4em; }
.prose h3 { font-size: 21px; margin-top: 1.3em; }
.prose p, .prose li { font-size: 16.5px; }
.prose a { color: var(--ink); border-bottom: 2px solid var(--yellow); }
.prose img { margin: 1.4em 0; }
.post__cover { width: 100%; margin-bottom: 1.6em; }

.empty { text-align: center; padding-block: 60px; }
.empty__code {
	font-family: var(--font-head); font-variation-settings: "wdth" 118;
	font-weight: 900; font-size: clamp(70px, 14vw, 150px);
	color: var(--yellow); margin: 0; line-height: 1;
}
.empty__title { font-size: 30px; }

.searchform { display: flex; gap: 0; max-width: 460px; margin: 22px auto; }
.searchform input {
	flex: 1; padding: 13px 16px; border: 1px solid var(--gray-200); border-radius: 0; min-width: 0;
}

/* ---------------- stopka ---------------- */

.foot { background: var(--ink); color: #c9c5c6; margin-top: 0; }
.foot__top {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
	padding: 60px 0 48px;
}
.foot__logo { margin-bottom: 16px; }
.foot__logo .brand { color: var(--white); font-size: 24px; }
.foot__about { font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.foot__phone {
	display: inline-flex; align-items: center; gap: 9px;
	color: var(--yellow); font-family: var(--font-head);
	font-variation-settings: "wdth" 105; font-weight: 900; font-size: 19px;
}
.foot .widget__title { color: var(--white); border-bottom-color: var(--yellow); }
.foot__links { list-style: none; margin: 0; padding: 0; }
.foot__links li { padding: 5px 0; border: 0; }
.foot__links a { font-size: 14.5px; }
.foot__links a:hover { color: var(--yellow); }
.foot .widget li { border-bottom-color: rgba(255, 255, 255, .08); }

.foot__bar { border-top: 1px solid rgba(255, 255, 255, .1); }
.foot__bar-in {
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	padding: 18px 0; font-size: 13px;
}
.foot__copy, .foot__note { margin: 0; }

/* ---------------- komunikaty Woo ---------------- */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top: 0 !important; border-left: 4px solid var(--yellow);
	background: var(--gray-50); border-radius: 0; padding: 16px 20px !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { display: none; }
.woocommerce-error { border-left-color: #c0392b; }

/* ---------------- responsywnosc ---------------- */

@media (max-width: 1100px) {
	.usp__in { grid-template-columns: repeat(2, 1fr); }
	.cats { grid-template-columns: repeat(3, 1fr); }
	.woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
	.foot__top { grid-template-columns: 1fr 1fr; }
	.posts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.head__in { flex-wrap: wrap; min-height: 0; padding-block: 12px; gap: 14px; }
	.head__burger { display: block; }
	.head__search { order: 3; flex-basis: 100%; max-width: none; }
	.head__acc span { display: none; }
	.topbar__list li:nth-child(n+3) { display: none; }

	.nav { display: none; }
	.nav.is-open { display: block; }
	.nav__in { flex-direction: column; align-items: stretch; padding-bottom: 14px; }
	.nav__list { flex-direction: column; }
	.nav__list > li > a { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
	.nav__list > li:first-child > a:hover { margin-left: 0; padding-left: 0; }
	.nav__list ul {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; background: transparent; padding-left: 14px;
	}
	.nav__phone { padding: 12px 0; }

	.hero__in { padding: 60px 0 70px; }
	.shop-layout:has(.shop-layout__side) { grid-template-columns: 1fr; }
	.single-product div.product { grid-template-columns: 1fr; gap: 28px; }
	.band__in { flex-direction: column; align-items: flex-start; }
	.section { padding: 48px 0; }
}

@media (max-width: 620px) {
	.cats { grid-template-columns: repeat(2, 1fr); }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.usp__in { grid-template-columns: 1fr; gap: 18px; }
	.foot__top { grid-template-columns: 1fr; gap: 30px; padding: 40px 0 30px; }
	.posts { grid-template-columns: 1fr; }
	.card__body { padding: 12px; }
	.card__title { font-size: 13.5px; min-height: 2.6em; }
	.woocommerce ul.products li.product .price { font-size: 18px; }
	.topbar__list li:nth-child(n+2) { display: none; }
	.section__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}
