/* Product list — left category sidebar + product grid */

:root {
	--pl-navy: #1a2744;
	--pl-blue: #2c4387;
	--pl-amber: #c45c26;
	--pl-amber-hover: #a84c1e;
	--pl-bg: #f3f5f8;
	--pl-surface: #ffffff;
	--pl-line: #d7dde8;
	--pl-text: #243047;
	--pl-muted: #66758d;
	--pl-radius: 6px;
	--pl-max: 1180px;
	--pl-sidebar: 260px;
}

.pl-page {
	background: var(--pl-bg);
	color: var(--pl-text);
	font-family: "open_sansregular", "Segoe UI", sans-serif;
}

.pl-page a { text-decoration: none; color: inherit; }
.pl-page img { max-width: 100%; height: auto; display: block; }

.pl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: var(--pl-radius);
	border: 1px solid transparent;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 14px;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.pl-btn-block { width: 100%; box-sizing: border-box; }

.pl-btn-accent {
	background: var(--pl-amber);
	color: #fff !important;
}
.pl-btn-accent:hover { background: var(--pl-amber-hover); color: #fff !important; }

.pl-btn-outline {
	background: #fff;
	border-color: var(--pl-line);
	color: var(--pl-navy) !important;
}
.pl-btn-outline:hover {
	border-color: var(--pl-blue);
	color: var(--pl-blue) !important;
}

/* Contact / trust strip — full-width navy banner */
.pl-strip {
	--pl-strip-navy: #0b1a3a;
	--pl-strip-mid: #14306a;
	--pl-strip-blue: #4da3ff;
	--pl-strip-line: rgba(255, 255, 255, 0.18);
	width: 100%;
	background:
		radial-gradient(circle at 92% 50%, rgba(77, 163, 255, 0.12), transparent 28%),
		linear-gradient(90deg, #071226 0%, var(--pl-strip-navy) 28%, var(--pl-strip-mid) 55%, var(--pl-strip-navy) 78%, #071226 100%);
	color: #fff;
	overflow: hidden;
}

.pl-strip-inner {
	max-width: var(--pl-max);
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	box-sizing: border-box;
}

.pl-strip-call {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 22px;
	flex: 0 0 auto;
	color: #fff;
	border-right: 1px solid var(--pl-strip-line);
}

.pl-strip-call:first-child {
	padding-left: 0;
}

.pl-strip-call:hover .pl-strip-call-number {
	color: var(--pl-strip-blue);
}

.pl-strip-call-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: linear-gradient(145deg, #2f7dff 0%, #1a56c7 100%);
	box-shadow: 0 6px 16px rgba(31, 98, 220, 0.35);
	color: #fff;
	font-size: 18px;
}

.pl-strip-call-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.pl-strip-call-label {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pl-strip-blue);
	line-height: 1.2;
}

.pl-strip-call-number {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.pl-strip-usps {
	list-style: none;
	margin: 0;
	padding: 0 18px;
	display: flex;
	align-items: stretch;
	flex: 1 1 auto;
	min-width: 0;
	justify-content: space-between;
	gap: 0;
}

.pl-strip-usp {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 4px 10px;
	text-align: center;
	border-right: 1px solid var(--pl-strip-line);
}

.pl-strip-usp:last-child {
	border-right: 0;
}

.pl-strip-usp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #fff;
	font-size: 18px;
	line-height: 1;
}

.pl-strip-usp-label {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.25;
	color: #fff;
	/* max-width: 9.5ch; */
}

.pl-page-title {
	grid-column: 1 / -1;
	margin: 0 0 4px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 26px;
	color: var(--pl-navy);
	line-height: 1.2;
}

.pl-page-lead {
	grid-column: 1 / -1;
	margin: 0 0 8px;
	font-size: 14px;
	color: var(--pl-muted);
}

/* Two-column layout */
.pl-layout {
	max-width: var(--pl-max);
	margin: 0 auto;
	padding: 20px 20px 40px;
	display: grid;
	grid-template-columns: var(--pl-sidebar) minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	box-sizing: border-box;
}

/* Left sidebar categories */
.pl-sidebar {
	position: sticky;
	top: 12px;
}

.pl-sidebar-box {
	background: var(--pl-surface);
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-radius);
	overflow: hidden;
}

.pl-sidebar-title {
	margin: 0;
	padding: 14px 16px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #fff;
	background: var(--pl-navy);
}

.pl-sidelist {
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 220px);
	overflow-y: auto;
}

.pl-side-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	padding: 12px 14px;
	border: 0;
	border-bottom: 1px solid var(--pl-line);
	border-left: 3px solid transparent;
	background: #fff;
	text-align: left;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.35;
	color: var(--pl-text);
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.pl-side-item span {
	flex: 1;
}

.pl-side-item em {
	flex: 0 0 auto;
	font-style: normal;
	font-size: 12px;
	color: var(--pl-muted);
	background: #eef2f8;
	border-radius: 999px;
	min-width: 28px;
	padding: 2px 7px;
	text-align: center;
}

.pl-side-item:hover {
	background: #f5f8fc;
	color: var(--pl-blue);
}

.pl-side-item.is-active {
	background: #eef2fb;
	border-left-color: var(--pl-amber);
	color: var(--pl-navy);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
}

.pl-side-item.is-active em {
	background: var(--pl-navy);
	color: #fff;
}

.pl-sidebar-cta {
	display: grid;
	gap: 8px;
	padding: 12px;
	background: #f7f9fc;
	border-top: 1px solid var(--pl-line);
}

/* Main column */
.pl-main {
	min-width: 0;
}

.pl-toolbar {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: end;
	margin-bottom: 16px;
	padding: 12px;
	background: #fff;
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-radius);
}

.pl-mobile-filter {
	display: none;
}

.pl-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
}

.pl-field-label {
	font-size: 12px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	color: var(--pl-muted);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.pl-field input,
.pl-field select {
	width: 100%;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-radius);
	background: #fff;
	font-size: 15px;
	color: var(--pl-text);
	box-sizing: border-box;
}

.pl-field input:focus,
.pl-field select:focus {
	outline: 2px solid rgba(44, 67, 135, .25);
	border-color: var(--pl-blue);
}

.pl-result {
	margin: 0;
	padding-bottom: 10px;
	font-size: 13px;
	color: var(--pl-muted);
	white-space: nowrap;
	align-self: end;
}

.pl-empty {
	padding: 28px;
	background: #fff;
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-radius);
	color: var(--pl-muted);
	text-align: center;
}
.pl-empty a { color: var(--pl-blue); text-decoration: underline; }

.pl-category {
	margin-bottom: 28px;
	scroll-margin-top: 20px;
}

.pl-category-title {
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--pl-navy);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 18px;
	color: var(--pl-navy);
	display: flex;
	align-items: center;
	gap: 8px;
}

.pl-category-title span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 22px;
	padding: 0 7px;
	border-radius: 999px;
	background: #e8edf5;
	color: var(--pl-muted);
	font-size: 12px;
}

.pl-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.pl-card {
	display: flex;
	flex-direction: column;
	background: var(--pl-surface);
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-radius);
	overflow: hidden;
	min-height: 100%;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pl-card:hover {
	border-color: #9eb0d4;
	box-shadow: 0 10px 24px rgba(26, 39, 68, .1);
	transform: translateY(-2px);
}

.pl-card-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 168px;
	padding: 14px;
	background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
	box-sizing: border-box;
	border-bottom: 1px solid var(--pl-line);
}

.pl-page .pl-card-media img,
.pl-card-media img {
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain;
}

.pl-card-cat {
	position: absolute;
	left: 8px;
	bottom: 8px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: calc(100% - 16px);
	padding: 5px 9px;
	border-radius: 4px;
	background: rgba(26, 39, 68, 0.88);
	color: #fff;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 11px;
	line-height: 1.25;
	letter-spacing: .02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
}
.pl-card-cat i {
	flex: 0 0 auto;
	font-size: 11px;
	opacity: 0.95;
}

.pl-card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px;
	flex: 1;
	box-sizing: border-box;
}

.pl-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pl-card-tag {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 3px 8px;
	border-radius: 999px;
	background: #eef2fb;
	color: var(--pl-blue);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 11px;
	letter-spacing: .02em;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pl-card-tag.is-info {
	background: #f3f6f4;
	color: #3d6b52;
}
.pl-card-tag.is-manufacturer {
	background: #eef2fb;
	color: #2c4387;
}
.pl-card-tag.is-supplier {
	background: #f3f0ff;
	color: #5b4b8a;
}
.pl-card-tag.is-exporter {
	background: #eef8f4;
	color: #2f6b52;
}
.pl-card-tag.is-stock {
	background: #fff4e8;
	color: #a84c1e;
}

.pl-card-name {
	margin: 0;
	padding: 0;
	padding-left: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 15px;
	line-height: 1.35;
	color: var(--pl-navy);
	background: none;
	font-weight: 600;
}
.pl-card-name a {
	color: inherit;
}
.pl-card-name a:hover {
	color: var(--pl-blue);
}

.pl-card-blurb {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--pl-muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 3.9em;
}

.pl-card-price-row {
	display: grid;
	gap: 2px;
	padding-top: 2px;
}
.pl-card-price-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--pl-muted);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
}
.pl-card-price {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 15px;
	color: var(--pl-amber);
	line-height: 1.3;
}
.pl-card-price .fa { margin-right: 2px; font-size: 13px; }
.pl-card-price.is-muted {
	color: var(--pl-muted);
	font-size: 14px;
}

.pl-card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
}

.pl-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 10px;
	border-radius: var(--pl-radius);
	border: 1px solid transparent;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 13px;
	text-align: center;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.pl-card-btn-ghost {
	background: #fff;
	border-color: var(--pl-line);
	color: var(--pl-navy) !important;
}
.pl-card-btn-ghost:hover {
	border-color: var(--pl-blue);
	color: var(--pl-blue) !important;
	background: #f5f8fc;
}
.pl-card-btn-accent {
	background: var(--pl-amber);
	color: #fff !important;
}
.pl-card-btn-accent:hover {
	background: var(--pl-amber-hover);
	color: #fff !important;
}

.pl-card-local {
	margin: 0;
	padding-top: 2px;
	font-size: 11px;
	color: #7a879c;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.pl-card-local .fa {
	color: var(--pl-blue);
	font-size: 12px;
}

.pl-card-meta { display: none; }
.pl-card-go { display: none; }

.pl-more {
	background: #fff;
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-radius);
	margin-bottom: 18px;
	padding: 0 16px;
}

.pl-more summary {
	cursor: pointer;
	list-style: none;
	padding: 14px 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 15px;
	color: var(--pl-navy);
}
.pl-more summary::-webkit-details-marker { display: none; }
.pl-more summary::after {
	content: "+";
	float: right;
	color: var(--pl-muted);
}
.pl-more[open] summary::after { content: "–"; }

.pl-more-body {
	padding: 0 0 16px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--pl-muted);
}
.pl-more-body p { margin: 0 0 10px; }
.pl-more-body a { color: var(--pl-blue); text-decoration: underline; }

.pl-help {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 18px 20px;
	background: var(--pl-navy);
	border-radius: var(--pl-radius);
	color: #fff;
}

.pl-help-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 680px;
}
.pl-help-text strong {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 16px;
}
.pl-help-text span {
	font-size: 13px;
	color: #c5d0e4;
	line-height: 1.45;
}
.pl-help-local {
	display: block;
	font-size: 12px !important;
	color: #9eb0cb !important;
}

.pl-help-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pl-help .pl-btn-outline {
	background: transparent;
	border-color: rgba(255,255,255,.35);
	color: #fff !important;
}
.pl-help .pl-btn-outline:hover {
	background: rgba(255,255,255,.1);
	border-color: #fff;
	color: #fff !important;
}

@media only screen and (max-width: 1200px) {
	.pl-strip-inner {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 16px 0;
		padding: 16px 18px;
	}

	.pl-strip-call {
		padding: 0 18px;
	}

	.pl-strip-call:first-child {
		padding-left: 0;
	}

	.pl-strip-usps {
		width: 100%;
		padding: 12px 0 0;
		border-top: 1px solid var(--pl-strip-line);
		order: 4;
	}
}

@media only screen and (max-width: 1100px) {
	.pl-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 900px) {
	.pl-layout {
		grid-template-columns: 1fr;
		padding: 14px 14px 36px;
	}

	.pl-sidebar {
		position: static;
	}

	.pl-sidelist {
		max-height: none;
		display: none; /* use mobile dropdown instead of long list */
	}

	.pl-sidebar-title {
		display: none;
	}

	.pl-sidebar-box {
		border: 0;
		background: transparent;
		overflow: visible;
	}

	.pl-sidebar-cta {
		display: none;
	}

	.pl-mobile-filter {
		display: flex;
	}

	.pl-toolbar {
		grid-template-columns: 1fr;
	}

	.pl-result {
		padding-bottom: 0;
	}

	.pl-strip-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.pl-strip-call,
	.pl-strip-usps {
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		order: 0;
	}

	.pl-strip-call {
		padding-bottom: 12px;
		border-bottom: 1px solid var(--pl-strip-line);
	}

	.pl-strip-usps {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		padding: 4px 0;
		border-top: 0;
	}

	.pl-strip-usp {
		border-right: 1px solid var(--pl-strip-line);
		padding: 6px 4px;
	}

	.pl-strip-usp:last-child {
		border-right: 0;
	}

	.pl-page-title {
		font-size: 22px;
	}
}

@media only screen and (max-width: 600px) {
	.pl-grid {
		grid-template-columns: 1fr;
	}

	.pl-strip-usps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.pl-strip-usp {
		border-right: 0;
		align-items: flex-start;
		text-align: left;
		padding: 0;
	}

	.pl-strip-usp-label {
		max-width: none;
	}

	.pl-help-actions {
		width: 100%;
	}

	.pl-help-actions .pl-btn {
		flex: 1;
	}
}
