/* ==========================================================================
   Equipment Catalog — Tideon Child Theme
   ========================================================================== */

/* ---------- Availability Badges ---------- */

.eq-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.eq-badge--black {
	background: #000 !important;
	color: #fff !important;
}

.eq-badge--available {
	background: #fff !important;
	color: #000 !important;
	border: 1px solid #ccc !important;
}

/* ---------- Equipment Page Header ---------- */

.single-equipment .page__banner,
.tax-equipment_category .page__banner {
	display: none;
}

.eq-page-header {
	padding-top: 40px;
}

.eq-page-header__title {
	font-family: var(--heading-font, 'Inter', sans-serif);
	font-size: 42px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--dark-one, #121212);
	margin-bottom: 16px;
}

.eq-page-header__desc {
	font-size: 17px;
	line-height: 1.75;
	color: var(--body-color, #666667);
}

/* Black header block — only on category archive pages */
.tax-equipment_category .eq-page-header > .container {
	background: #000;
	clip-path: polygon(
		24px 0,
		100% 0,
		100% calc(100% - 24px),
		calc(100% - 24px) 100%,
		0 100%,
		0 24px
	);
	padding: 40px 48px;
}

.tax-equipment_category .eq-page-header__title {
	color: #fff;
}

.tax-equipment_category .eq-page-header__desc {
	color: rgba(255, 255, 255, 0.8);
}

.tax-equipment_category .eq-page-header .eq-category-header__count {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.tax-equipment_category .eq-page-header .eq-category-header__count-number {
	color: #fff;
}

/* Black header block — single product page */
.single-equipment .eq-page-header > .container {
	background: #000;
	clip-path: polygon(
		24px 0,
		100% 0,
		100% calc(100% - 24px),
		calc(100% - 24px) 100%,
		0 100%,
		0 24px
	);
	padding: 40px 48px;
}

.single-equipment .eq-page-header__title {
	color: #fff;
	margin-bottom: 12px;
}

.single-equipment .eq-page-header__desc {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

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

.eq-category-header {
	padding-bottom: 0;
}

.eq-category-header__desc {
	font-size: 17px;
	line-height: 1.75;
	color: var(--body-color, #666667);
}

.eq-category-header__desc p:last-child {
	margin-bottom: 0;
}

.eq-category-header__count {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-weight: 600;
	white-space: nowrap;
	font-size: 14px;
	color: var(--body-color, #888);
	background: var(--color-5, #F6F6F6);
	padding: 6px 18px;
	border-radius: 20px;
	border: 1px solid var(--border-color-1, #E6E6E6);
}

.eq-category-header__count-number {
	font-family: var(--heading-font, 'Inter', sans-serif);
	font-weight: 800;
	color: #000;
	font-size: 16px;
}

/* ---------- Wider container for product grid ---------- */

.equipment-archive > .container {
	max-width: 1800px;
}

/* ---------- Filter Bar ---------- */

.eq-filter-bar {
	text-align: center;
	margin-bottom: 35px;
}

.eq-filter-bar.noxiy__filter-button button {
	border-radius: 0;
	font-size: 15px;
}

.eq-filter-bar .filter-btn-wrap {
	display: inline-block;
	background: #000;
	padding: 1px;
	margin: 5px;
	clip-path: polygon(
		var(--btn-cut) 0,
		100% 0,
		100% calc(100% - var(--btn-cut)),
		calc(100% - var(--btn-cut)) 100%,
		0 100%,
		0 var(--btn-cut)
	);
}

.eq-filter-bar .filter-btn-wrap button {
	background: #fff;
	color: #000;
	border: none !important;
	box-shadow: none !important;
	margin: 0 !important;
	clip-path: polygon(
		calc(var(--btn-cut) - 1px) 0,
		100% 0,
		100% calc(100% - var(--btn-cut) + 1px),
		calc(100% - var(--btn-cut) + 1px) 100%,
		0 100%,
		0 calc(var(--btn-cut) - 1px)
	);
}

.eq-filter-bar .filter-btn-wrap button.active {
	background: var(--primary-color-1);
	color: var(--text-white);
	clip-path: none;
}

.eq-filter-bar .filter-btn-wrap:has(button.active) {
	padding: 0;
}

.eq-filter-bar .filter-btn-wrap button:hover {
	background: var(--primary-color-1);
	color: var(--text-white);
}


/* ---------- Equipment Card (horizontal — alternating layout) ---------- */

.eq-card-wrap {
	margin-bottom: 30px;
}

.eq-card {
	display: flex;
	flex-direction: row;
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid var(--border-color-1, #E6E6E6);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.12);
	transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

/* Alternating layout: even cards reverse */
.eq-card-wrap:nth-child(even) .eq-card {
	flex-direction: row-reverse;
}

.eq-card:hover {
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14), 0 8px 20px rgba(0, 0, 0, 0.10);
	transform: translateY(-4px);
	border-color: var(--border-color-1, #E6E6E6);
}

.eq-card:hover .eq-card__body {
	background: #000;
}

.eq-card:hover .eq-card__title a {
	color: #fff;
}

.eq-card:hover .eq-card__meta {
	color: #fff;
}

.eq-card:hover .eq-card__meta i {
	color: #fff;
}

.eq-card:hover .eq-card__param {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(0, 0, 0, 0.15);
	color: #000;
}

.eq-card:hover .eq-card__price {
	color: #fff;
}

.eq-card:hover .eq-card__footer {
	border-top-color: #333;
}

/* Image column */
.eq-card__image-col {
	position: relative;
	width: 50%;
	flex-shrink: 0;
}

.eq-card__image {
	display: block;
	overflow: hidden;
	height: 100%;
}

.eq-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.4s ease;
}

.eq-card:hover .eq-card__image img {
	transform: scale(1.05);
}

/* Availability overlay */
.eq-card__availability-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 8px 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 5;
}

/* Unavailable products: grayscale image */
.eq-card--unavailable .eq-card__image img {
	filter: grayscale(1);
}

/* On hover: restore color + show overlay */
.eq-card--unavailable:hover .eq-card__image img {
	filter: grayscale(0);
}

.eq-card--unavailable:hover .eq-card__availability-overlay {
	opacity: 1;
}

/* Card body */
.eq-card__body {
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	transition: background 0.35s ease;
}

.eq-card__title {
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.eq-card__title a {
	color: #1a1a1a;
	transition: color 0.3s;
	text-decoration: none;
}

.eq-card__title a:hover {
	color: #333;
}

/* Meta row */
.eq-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 14px;
	font-size: 14px;
	color: #555;
}

.eq-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.eq-card__meta i {
	color: #000;
	font-size: 13px;
	width: 14px;
	text-align: center;
}

/* Short description */
.eq-card__desc {
	font-size: 15.5px;
	line-height: 1.65;
	color: #666;
	margin-bottom: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.eq-card:hover .eq-card__desc {
	color: rgba(255, 255, 255, 0.75);
}

/* Parameter pills */
.eq-card__params {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.eq-card__param {
	background: var(--color-4, #F8F8F8);
	border: 1px solid var(--border-color-1, #E6E6E6);
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.eq-card:hover .eq-card__param {
	background: var(--color-5, #F6F6F6);
	border-color: var(--color-3, #CCCCCC);
}

/* Card footer */
.eq-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 2px solid var(--border-color-2, #F0F0F0);
	padding-top: 16px;
	margin-top: auto;
}

.eq-card__price {
	font-family: var(--heading-font, 'Inter', sans-serif);
	font-size: 24px;
	font-weight: 800;
	color: #000;
	letter-spacing: -0.02em;
}

.eq-card__btn {
	padding: 10px 28px !important;
	font-size: 13px !important;
	font-weight: 500;
	border-radius: 0;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eq-card:hover .eq-card__btn {
	background: #fff !important;
	color: #000 !important;
}

.eq-card:hover .eq-card__btn::before,
.eq-card:hover .eq-card__btn::after {
	background: #d8d8d8 !important;
}

.eq-card:hover .eq-card__btn:hover {
	color: #000 !important;
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */

/* ---------- Short Description (Excerpt) ---------- */

.eq-detail__excerpt {
	margin-bottom: 32px;
}

.eq-detail__excerpt p {
	font-size: 18px;
	line-height: 1.7;
	color: var(--body-color, #666667);
	margin: 0;
}

/* ---------- Gallery ---------- */

.eq-gallery {
	margin-bottom: 30px;
}

.eq-gallery__main {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 12px;
	border: 1px solid var(--border-color-1, #E6E6E6);
	background: var(--color-4, #F8F8F8);
	clip-path: polygon(
		24px 0,
		100% 0,
		100% calc(100% - 24px),
		calc(100% - 24px) 100%,
		0 100%,
		0 24px
	);
}

.eq-gallery__main a {
	display: block;
	position: relative;
}

.eq-gallery__main img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
	transition: opacity 0.3s ease;
}

.eq-gallery__zoom-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.eq-gallery__main a:hover .eq-gallery__zoom-icon {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.05);
}

.eq-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
}

.eq-gallery__thumb {
	display: block;
	border-radius: 0;
	overflow: hidden;
	border: 2px solid var(--border-color-1, #E6E6E6);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.eq-gallery__thumb img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	display: block;
	cursor: pointer;
}

.eq-gallery__thumb:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 0, 0, 0.4);
}

.eq-gallery__thumb.active {
	border-color: #000;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.eq-gallery__placeholder {
	background: #f8f9fa;
	border: 2px dashed #dde3ea;
	border-radius: 12px;
	padding: 80px 20px;
	text-align: center;
	color: #999;
}

.eq-gallery__placeholder i {
	font-size: 56px;
	margin-bottom: 15px;
	display: block;
	opacity: 0.3;
	color: #999;
}

.eq-gallery__placeholder p {
	font-size: 16px;
	margin: 0;
}

/* ---------- Detail Sidebar ---------- */

.eq-detail-sidebar {
	position: sticky;
	top: 140px;
}

.eq-detail__price-box {
	background: var(--color-4, #F8F8F8);
	border: 1px solid var(--border-color-1, #E6E6E6);
	padding: 32px;
	border-radius: 0;
	margin-bottom: 24px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eq-detail__price-box .eq-badge {
	margin-bottom: 12px;
}

.eq-detail__price {
	font-family: var(--heading-font, 'Inter', sans-serif);
	font-size: 38px;
	font-weight: 800;
	color: #000;
	margin-top: 8px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

/* Quick info table */
.eq-detail__quick-info {
	width: 100%;
	margin-bottom: 24px;
	border-collapse: collapse;
	border: 1px solid var(--border-color-1, #E6E6E6);
}

.eq-detail__quick-info th,
.eq-detail__quick-info td {
	padding: 14px 18px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.eq-detail__quick-info tr:last-child th,
.eq-detail__quick-info tr:last-child td {
	border-bottom: none;
}

.eq-detail__quick-info tr:nth-child(even) {
	background: #fafbfc;
}

.eq-detail__quick-info th {
	font-weight: 700;
	color: var(--body-color, #666);
	width: 50%;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 12px;
}

.eq-detail__quick-info th i {
	color: #000;
	margin-right: 8px;
	width: 16px;
	text-align: center;
}

.eq-detail__quick-info td {
	color: #1a1a1a;
	font-weight: 600;
}

/* CTA buttons */
.eq-detail__cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.eq-btn--phone,
.eq-btn--inquiry {
	text-align: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	padding: 16px 28px !important;
	border-radius: 0;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.2s ease, filter 0.2s ease;
}

.eq-btn--phone {
	background: #000 !important;
	color: #fff !important;
	box-shadow: none;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.eq-btn--phone::after,
.eq-btn--phone::before {
	background: #333 !important;
}

.eq-btn--phone:hover {
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: none;
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.eq-btn--inquiry-wrap {
	display: block;
	background: #000;
	padding: 2px;
	clip-path: polygon(
		12px 0,
		100% 0,
		100% calc(100% - 12px),
		calc(100% - 12px) 100%,
		0 100%,
		0 12px
	);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.eq-btn--inquiry-wrap:hover {
	transform: translateY(-2px);
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

.eq-btn--inquiry {
	background: #fff !important;
	color: #000 !important;
	border: none !important;
	box-shadow: none;
	width: 100%;
	clip-path: polygon(
		10px 0,
		100% 0,
		100% calc(100% - 10px),
		calc(100% - 10px) 100%,
		0 100%,
		0 10px
	);
}

.eq-btn--inquiry::after,
.eq-btn--inquiry::before {
	background: #000 !important;
}

.eq-btn--inquiry:hover {
	color: #fff !important;
	transform: none;
	box-shadow: none;
	filter: none;
}

.eq-btn--phone i,
.eq-btn--inquiry i {
	margin-right: 8px;
}

/* ---------- Content Section Headings ---------- */

.eq-detail__content {
	margin-bottom: 40px;
}

.eq-detail__content h3 {
	position: relative;
	padding-left: 16px;
	margin-bottom: 24px;
	font-family: var(--heading-font, 'Inter', sans-serif);
	color: #1a1a1a;
	font-size: 22px;
	font-weight: 700;
}

.eq-detail__content h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 4px;
	border-radius: 2px;
	background: #000;
}

/* ---------- Parameters Table ---------- */

.eq-params-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 35px;
	border: 1px solid var(--border-color-1, #E6E6E6);
}

.eq-params-table tr:nth-child(even) {
	background: var(--color-4, #F8F8F8);
}

.eq-params-table tr:hover {
	background: var(--color-5, #F6F6F6);
}

.eq-params-table th,
.eq-params-table td {
	padding: 14px 20px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.eq-params-table tr:first-child th,
.eq-params-table tr:first-child td {
	padding-top: 18px;
}

.eq-params-table tr:last-child th,
.eq-params-table tr:last-child td {
	border-bottom: none;
	padding-bottom: 18px;
}

.eq-params-table th {
	font-weight: 700;
	text-align: left;
	width: 40%;
	color: var(--body-color, #666);
	background: transparent;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 12px;
}

.eq-params-table td {
	color: #1a1a1a;
	font-weight: 600;
}

/* ---------- Description ---------- */

.eq-detail__description {
	color: #555;
	line-height: 1.85;
	font-size: 16px;
}

.eq-detail__description p:last-child {
	margin-bottom: 0;
}

/* ---------- Long Description ---------- */

.eq-detail__long-desc {
	padding-top: 10px;
}

.eq-detail__long-desc .eq-detail__description h2,
.eq-detail__long-desc .eq-detail__description h3,
.eq-detail__long-desc .eq-detail__description h4 {
	font-family: var(--heading-font, 'Inter', sans-serif);
	color: #1a1a1a;
	margin-top: 28px;
	margin-bottom: 14px;
}

.eq-detail__long-desc .eq-detail__description img {
	border-radius: 10px;
	max-width: 100%;
	height: auto;
}

.eq-detail__long-desc .eq-detail__description ul,
.eq-detail__long-desc .eq-detail__description ol {
	padding-left: 24px;
	margin-bottom: 16px;
}

.eq-detail__long-desc .eq-detail__description li {
	margin-bottom: 6px;
}

/* ---------- Contact Form ---------- */

.eq-detail__form {
	background: #000;
	border: none;
	padding: 40px;
	box-shadow: none;
}

.eq-detail__form h4 {
	position: relative;
	padding-left: 14px;
	margin-bottom: 5px;
	font-family: var(--heading-font, 'Inter', sans-serif);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.eq-detail__form h4::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	bottom: 3px;
	width: 3px;
	border-radius: 2px;
	background: #fff;
}

.eq-detail__form > p {
	margin-bottom: 20px;
	padding-left: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.eq-detail__form strong {
	color: #fff;
	font-weight: 600;
}

.eq-detail__form label {
	display: none;
}

.eq-detail__form .contact__two-form-item {
	margin-bottom: 16px;
}

.eq-detail__form .contact__two-form-item:last-of-type {
	margin-bottom: 0;
}

.eq-detail__form input[type="text"],
.eq-detail__form input[type="email"],
.eq-detail__form input[type="tel"] {
	width: 100%;
	height: 60px;
	padding: 0 42px 0 15px;
	border: 1px solid var(--border-color-2, #E6E6E6);
	border-radius: 0;
	font-size: 14px;
	color: #333;
	background: #fff;
}

.eq-detail__form textarea {
	width: 100%;
	padding: 15px 42px 15px 15px;
	border: 1px solid var(--border-color-2, #E6E6E6);
	border-radius: 0;
	font-size: 14px;
	color: #333;
	background: #fff;
	resize: vertical;
}

.eq-detail__form input:focus,
.eq-detail__form textarea:focus {
	border-color: #000;
	outline: none;
}

.eq-form-product-field {
	background: rgba(255, 255, 255, 0.12) !important;
	cursor: default;
	color: rgba(255, 255, 255, 0.5) !important;
}

.eq-detail__form button[type="submit"] {
	border: none;
	cursor: pointer;
	margin-top: 5px;
	background: #fff !important;
	color: #000 !important;
}

.eq-detail__form button[type="submit"]::before,
.eq-detail__form button[type="submit"]::after {
	background: #d8d8d8 !important;
}

.eq-detail__form button[type="submit"]:hover {
	color: #000 !important;
}

/* ---------- Section divider ---------- */

.eq-section-divider {
	border: none;
	border-top: 1px solid #eef0f2;
	margin: 40px 0;
}

/* ---------- Category Long Description ---------- */

.eq-category-long-desc {
	background: #fafbfc;
	border-top: 1px solid #eef0f2;
}

.eq-category-long-desc__content {
	font-size: 16px;
	line-height: 1.85;
	color: #555;
}

.eq-category-long-desc__content p:last-child {
	margin-bottom: 0;
}

.eq-category-long-desc__content h2,
.eq-category-long-desc__content h3,
.eq-category-long-desc__content h4 {
	font-family: var(--heading-font, 'Inter', sans-serif);
	color: #1a1a1a;
	margin-top: 28px;
	margin-bottom: 14px;
}

.eq-category-long-desc__content img {
	border-radius: 10px;
	max-width: 100%;
	height: auto;
}

.eq-category-long-desc__content ul,
.eq-category-long-desc__content ol {
	padding-left: 24px;
	margin-bottom: 16px;
}

.eq-category-long-desc__content li {
	margin-bottom: 6px;
}

/* ---------- Empty state ---------- */

.eq-empty-state {
	color: #999;
	padding: 60px 20px;
}

.eq-empty-state i {
	color: #ccc;
}

.eq-empty-state p {
	font-size: 17px;
	margin-top: 15px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
	.eq-detail-sidebar {
		position: static;
		margin-top: 40px;
	}

	.eq-gallery__thumbs {
		grid-template-columns: repeat(4, 1fr);
	}

	.eq-detail__excerpt p {
		font-size: 16px;
	}

	.eq-detail__excerpt {
		margin-bottom: 24px;
	}

	/* Formularz kontaktowy nad treścią (nad parametrami i opisem) — tylko mobile.
	   Kolumny col-lg układają się w pion ≤991px; przestawiamy kolejność CSS-em,
	   więc desktop (2 kolumny obok siebie) zostaje bez zmian. */
	.single-equipment .row > .col-lg-4:has(.eq-detail__form) {
		order: -1;
		margin-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.tax-equipment_category .eq-page-header > .container,
	.single-equipment .eq-page-header > .container {
		padding: 28px 24px;
	}

	.eq-page-header__title {
		font-size: 30px;
	}

	/* Stack cards vertically on mobile */
	.eq-card {
		flex-direction: column !important;
	}

	.eq-card__image-col {
		width: 100%;
	}

	.eq-card__image img {
		height: 220px;
	}

	.eq-card__body {
		padding: 16px 18px;
	}

	.eq-card__title {
		font-size: 17px;
	}

	.eq-card__price {
		font-size: 20px;
	}

	.eq-card__footer {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	.eq-card__btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.eq-gallery__thumbs {
		grid-template-columns: repeat(3, 1fr);
	}

	.eq-detail__price {
		font-size: 30px;
	}

	.eq-detail__form {
		padding: 24px;
	}

	.eq-category-header__desc {
		font-size: 15px;
	}

	.eq-detail__excerpt p {
		font-size: 15px;
	}
}

@media (max-width: 575px) {
	.eq-page-header__title {
		font-size: 26px;
	}

	.eq-page-header__desc {
		font-size: 15px;
	}

	/* Czarny blok nagłówka (kategoria i strona produktu): nie na całą szerokość.
	   Poniżej ~560px (max-width containera) blok jest edge-to-edge; wcinamy go. */
	.tax-equipment_category .eq-page-header > .container,
	.single-equipment .eq-page-header > .container {
		width: auto;
		margin-left: 16px;
		margin-right: 16px;
	}

	.eq-card__meta {
		font-size: 13px;
		gap: 10px;
	}

	.eq-card__params {
		display: none;
	}

	.eq-gallery__thumbs {
		grid-template-columns: repeat(3, 1fr);
	}

	.eq-gallery__thumb img {
		height: 60px;
	}

	.eq-card__image img {
		height: 180px;
	}

	.eq-card__availability-overlay {
		font-size: 14px;
	}

	.eq-detail__price {
		font-size: 26px;
	}

	.eq-btn--phone,
	.eq-btn--inquiry {
		padding: 14px 20px !important;
		font-size: 15px;
	}
}
