/*
 * Plastema — main.css
 * Layout, header, footer, home sections, forms, modal, mobile nav, utilities.
 * Hand-written CSS, no preprocessor. Designed for Poppins (headings) + Inter (body).
 */

/* ===== 0. Custom Properties ===== */
:root {
	--accent:          #9CC93A;
	--accent-hover:    #86b32c;
	--accent-ink:      #1c1c1c;
	--ink:             #1c1c1c;
	--body:            #54585c;
	--muted:           #80868b;
	--line:            #e6e8ea;
	--bg:              #ffffff;
	--bg-soft:         #f5f6f7;
	--topbar:          #141414;
	--footer:          #34373a;
	--footer-line:     #45484b;
	--sale:            #e23b3b;
	--radius:          10px;
	--radius-lg:       16px;
	--shadow:          0 6px 24px rgba(20, 20, 20, .08);
	--shadow-lg:       0 18px 50px rgba(20, 20, 20, .14);
	--container:       1240px;
	--gap:             24px;
}

/* ===== 1. Reset & Base ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--body);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

img,
video,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	cursor: pointer;
	font-family: inherit;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .5em;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ink);
}

/* ===== 2. Accessibility ===== */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background-color: var(--bg);
	clip: auto;
	clip-path: none;
	color: var(--ink);
	display: block;
	font-size: 14px;
	font-weight: 600;
	height: auto;
	left: 8px;
	padding: 14px 24px;
	top: 8px;
	width: auto;
	z-index: 100001;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

.pl-skip-link {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 100001;
	padding: 12px 24px;
	background: var(--accent);
	color: var(--ink);
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	border-radius: var(--radius);
}

/* ===== 3. Container & Layout ===== */
.pl-container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

.pl-main {
	min-height: 50vh;
}

/* ===== 4. Section Rhythm ===== */
.pl-hero,
.pl-brands,
.pl-catalog,
.pl-usp,
.pl-featured,
.pl-process,
.pl-gallery-teaser,
.pl-reviews,
.pl-faq,
.pl-cta-band,
.pl-lead-band,
.pl-stats,
.pl-about-story,
.pl-usp--values,
.pl-team,
.pl-contacts,
.pl-gallery,
.pl-sale,
.pl-page-content {
	padding-block: clamp(56px, 7vw, 96px);
}

/* Alternating background for rhythm */
.pl-usp,
.pl-faq,
.pl-process {
	background: var(--bg-soft);
}

/* ===== 5. Typography Utilities ===== */
.pl-eyebrow {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--accent);
	margin-bottom: 12px;
}

.pl-section-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
	margin: 0;
}

.pl-section-head {
	margin-bottom: clamp(32px, 4vw, 48px);
}

.pl-section-head--center {
	text-align: center;
	max-width: 680px;
	margin-inline: auto;
	margin-bottom: clamp(32px, 4vw, 48px);
}

.pl-section-head--left {
	text-align: left;
}

/* ===== 6. Buttons ===== */
.pl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
	white-space: nowrap;
}

.pl-btn .pl-icon,
.pl-btn .pl-btn__icon {
	display: inline-flex;
	align-items: center;
	font-size: 1.1em;
	flex-shrink: 0;
}

/* Primary */
.pl-btn--primary {
	background: var(--accent);
	color: var(--accent-ink);
	border-color: var(--accent);
}
.pl-btn--primary:hover,
.pl-btn--primary:focus-visible {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	color: var(--accent-ink);
}

/* Outline */
.pl-btn--outline {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}
.pl-btn--outline:hover,
.pl-btn--outline:focus-visible {
	background: var(--ink);
	color: #fff;
}

/* Outline light — for dark hero backgrounds */
.pl-btn--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .7);
}
.pl-btn--outline-light:hover,
.pl-btn--outline-light:focus-visible {
	background: rgba(255, 255, 255, .12);
	border-color: #fff;
}

/* Dark */
.pl-btn--dark {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.pl-btn--dark:hover,
.pl-btn--dark:focus-visible {
	background: #2e3033;
	border-color: #2e3033;
	color: #fff;
}

/* Ghost */
.pl-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: transparent;
}
.pl-btn--ghost:hover,
.pl-btn--ghost:focus-visible {
	background: var(--bg-soft);
}

/* Sizes */
.pl-btn--sm {
	padding: 10px 18px;
	font-size: 13px;
}
.pl-btn--lg {
	padding: 17px 34px;
	font-size: 16px;
}
.pl-btn--block {
	width: 100%;
	display: flex;
}

/* Buttons must keep their own text colour even inside rich-text / WooCommerce
   content where `.pl-rte a { color: var(--accent) }` would otherwise win. */
a.pl-btn.pl-btn--primary,
a.pl-btn.pl-btn--dark { color: var(--accent-ink); }
a.pl-btn.pl-btn--outline,
a.pl-btn.pl-btn--ghost { color: var(--ink); }
a.pl-btn.pl-btn--outline-light { color: #fff; }

/* ===== 7. Icons ===== */
.pl-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}

.pl-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* ===== 8. Top Bar ===== */
.pl-topbar {
	background: var(--topbar);
	font-size: 13px;
	overflow: hidden;
	max-height: 60px;
	transition: max-height .28s ease;
}

.pl-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 40px;
}

.pl-topbar__contacts {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pl-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
	transition: color .2s;
}
.pl-topbar__item:hover {
	color: #fff;
}
.pl-topbar__item .pl-icon {
	font-size: 14px;
	color: var(--accent);
}

.pl-topbar__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pl-topbar__note {
	color: rgba(255, 255, 255, .5);
	font-size: 12px;
	margin-right: 4px;
}

.pl-topbar__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
	transition: background .2s, color .2s;
}
.pl-topbar__social a:hover {
	background: var(--accent);
	color: var(--ink);
}

.pl-topbar__right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pl-topbar__links {
	display: flex;
	align-items: center;
	gap: 18px;
}
.pl-topbar__links .pl-topbar__item {
	font-weight: 500;
}

/* Divider between the utility links and the social icons */
.pl-topbar__links + .pl-topbar__social {
	padding-left: 20px;
	border-left: 1px solid rgba(255, 255, 255, .15);
}

/* ===== 9. Header ===== */
.pl-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	transition: box-shadow .3s;
}

.pl-header.is-stuck {
	box-shadow: 0 2px 16px rgba(20, 20, 20, .10);
}

.pl-header.is-stuck .pl-topbar {
	max-height: 0;
}

.pl-header__main {
	background: #fff;
}

.pl-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	height: 72px;
}

.pl-header__brand {
	flex-shrink: 0;
}

.pl-header__brand .pl-logo img,
.pl-header__brand img,
.pl-header__brand .custom-logo {
	height: 48px;
	width: auto;
	max-width: 210px;
	object-fit: contain;
	display: block;
}

.pl-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.pl-header__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	color: var(--ink);
	font-size: 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: background .2s, color .2s;
	position: relative;
}
.pl-header__icon:hover,
.pl-header__icon:focus-visible {
	background: var(--bg-soft);
	color: var(--accent);
}

.pl-header__cart {
	text-decoration: none;
}

.pl-cart-count {
	position: absolute;
	top: 3px;
	right: 3px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	background: var(--accent);
	color: var(--ink);
	font-size: 10px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.pl-cart-count[data-count="0"],
.pl-cart-count:empty {
	display: none;
}

.pl-header__cta {
	margin-left: 4px;
}

/* Search panel */
.pl-search-panel {
	border-top: 1px solid var(--line);
	padding: 16px 0;
	background: #fff;
}
.pl-search-panel.is-open {
	display: block;
}

.pl-search-panel .search-form,
.pl-search-panel form {
	display: flex;
	gap: 8px;
}

.pl-search-panel input[type="search"] {
	flex: 1;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 15px;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color .2s;
}
.pl-search-panel input[type="search"]:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(156, 201, 58, .18);
}

.pl-search-panel button[type="submit"],
.pl-search-panel input[type="submit"] {
	padding: 10px 18px;
	background: var(--accent);
	color: var(--ink);
	border: none;
	border-radius: var(--radius);
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}
.pl-search-panel button[type="submit"]:hover {
	background: var(--accent-hover);
}

/* Reusable search form (searchform.php) */
.pl-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}
.pl-search-form__input {
	flex: 1;
	min-width: 0;
	padding: 13px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--ink);
	background: #fff;
	outline: none;
	transition: border-color .2s, box-shadow .2s;
}
.pl-search-form__input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(156, 201, 58, .18);
}
.pl-search-form__btn {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0 22px;
	border: none;
	border-radius: 999px;
	background: var(--accent);
	color: var(--ink);
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: background .2s;
}
.pl-search-form__btn:hover {
	background: var(--accent-hover);
}
.pl-search-form__btn .pl-icon {
	font-size: 17px;
}

/* ===== 404 ===== */
.pl-404 {
	padding-block: clamp(56px, 9vw, 120px);
	text-align: center;
}
.pl-404__inner {
	max-width: 620px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.pl-404__code {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: clamp(96px, 18vw, 180px);
	line-height: 1;
	letter-spacing: -.04em;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--accent);
}
.pl-404__title {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: clamp(26px, 4vw, 40px);
	color: var(--ink);
	margin: 8px 0 14px;
	letter-spacing: -.02em;
}
.pl-404__text {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.6;
	margin: 0 0 28px;
	max-width: 520px;
}
.pl-404__search {
	width: 100%;
	max-width: 480px;
	margin: 0 auto 24px;
}
.pl-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 36px;
}
.pl-404__links-label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--muted);
	margin-bottom: 14px;
}
.pl-404__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.pl-404__chip {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	background: #fff;
	transition: border-color .2s, color .2s, background .2s;
}
.pl-404__chip:hover {
	border-color: var(--accent);
	color: var(--accent-ink);
	background: rgba(156, 201, 58, .08);
}

/* ===== 10. Desktop Navigation ===== */
.pl-nav {
	flex: 1;
	min-width: 0;
}

.pl-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pl-menu .menu-item {
	position: relative;
}

.pl-menu > .menu-item > a {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
	text-decoration: none;
	border-radius: 8px;
	transition: color .2s, background .2s;
	white-space: nowrap;
}

.pl-menu > .menu-item > a:hover,
.pl-menu > .menu-item.current-menu-item > a,
.pl-menu > .menu-item.current-menu-ancestor > a {
	color: var(--accent);
}

/* Dropdown chevron */
.pl-menu > .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	flex-shrink: 0;
	transition: transform .2s;
}

.pl-menu > .menu-item-has-children:hover > a::after,
.pl-menu > .menu-item-has-children.is-focus > a::after {
	transform: rotate(225deg) translateY(0);
}

/* Sub-menu (dropdown) */
.pl-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	list-style: none;
	padding: 8px;
	margin: 0;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .2s, visibility .2s, transform .2s;
	transition-delay: .12s; /* keep open briefly when leaving — forgiving for diagonal moves */
	pointer-events: none;
}

/* Invisible bridge across the 8px gap so the cursor can travel from the parent
   item down to the sub-menu without losing :hover (and closing the dropdown). */
.pl-menu .menu-item-has-children > a::before {
	content: '';
	position: absolute;
	left: 0;
	right: -8px;
	top: 100%;
	height: 14px;
	display: none;
}
.pl-menu .menu-item-has-children:hover > a::before {
	display: block;
}

.pl-menu .menu-item-has-children:hover > .sub-menu,
.pl-menu .menu-item-has-children.is-focus > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
	transition-delay: 0s; /* open immediately */
}

.pl-menu .sub-menu li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	font-size: 14px;
	color: var(--body);
	border-radius: 6px;
	text-decoration: none;
	transition: background .15s, color .15s;
	border-left: 2px solid transparent;
}

.pl-menu .sub-menu li a:hover {
	background: var(--bg-soft);
	color: var(--accent);
	border-left-color: var(--accent);
}

.pl-menu .sub-menu li.current-menu-item > a {
	color: var(--accent);
	border-left-color: var(--accent);
	background: rgba(156, 201, 58, .08);
}

/* ===== 11. Burger ===== */
.pl-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	border-radius: 8px;
	transition: background .2s;
}
.pl-burger:hover {
	background: var(--bg-soft);
}

.pl-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .3s, opacity .3s, width .3s;
	transform-origin: center;
}

.pl-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.pl-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	width: 0;
}
.pl-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ===== 12. Mobile Navigation ===== */
.pl-mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(360px, 90vw);
	background: #fff;
	z-index: 1100;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .3s cubic-bezier(.25, .46, .45, .94);
	display: flex;
	flex-direction: column;
}

.pl-mobile-nav.is-open {
	transform: translateX(0);
}

.pl-mobile-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--line);
	flex-shrink: 0;
}

.pl-mobile-nav__head .pl-logo img {
	height: 40px;
	width: auto;
}

.pl-mobile-nav__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--bg-soft);
	border: none;
	border-radius: 50%;
	color: var(--ink);
	font-size: 18px;
	cursor: pointer;
	transition: background .2s;
}
.pl-mobile-nav__close:hover {
	background: var(--line);
}

.pl-mobile-menu {
	flex: 1;
	padding: 12px 0;
	list-style: none;
}

.pl-mobile-menu .menu-item {
	position: relative;
	border-bottom: 1px solid var(--line);
}

.pl-mobile-menu .menu-item:last-child {
	border-bottom: none;
}

.pl-mobile-menu > .menu-item > a {
	display: flex;
	align-items: center;
	padding: 14px 20px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	transition: color .2s;
}
.pl-mobile-menu > .menu-item > a:hover,
.pl-mobile-menu > .menu-item.current-menu-item > a {
	color: var(--accent);
}

/* Mobile submenu toggle button */
.pl-submenu-toggle {
	position: absolute;
	top: 8px;
	right: 12px;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 6px;
	transition: color .2s, transform .3s;
}
.pl-submenu-toggle:hover {
	color: var(--ink);
}

.pl-mobile-menu .menu-item-has-children.is-open > .pl-submenu-toggle {
	transform: rotate(180deg);
}

.pl-mobile-menu .sub-menu {
	display: none;
	list-style: none;
	background: var(--bg-soft);
	padding: 0;
}
.pl-mobile-menu .menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.pl-mobile-menu .sub-menu .menu-item {
	border-bottom: 1px solid var(--line);
}
.pl-mobile-menu .sub-menu .menu-item:last-child {
	border-bottom: none;
}

.pl-mobile-menu .sub-menu a {
	display: block;
	padding: 12px 20px 12px 36px;
	font-size: 14px;
	color: var(--body);
	text-decoration: none;
	transition: color .2s;
}
.pl-mobile-menu .sub-menu a:hover {
	color: var(--accent);
}

.pl-mobile-nav__foot {
	padding: 20px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-shrink: 0;
}

.pl-mobile-nav__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	justify-content: center;
}
.pl-mobile-nav__phone .pl-icon {
	color: var(--accent);
	font-size: 18px;
}

/* Overlay */
.pl-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 20, 20, .55);
	z-index: 1050;
	opacity: 0;
	transition: opacity .3s;
}
.pl-overlay.is-open {
	opacity: 1;
}

/* Prevent body scroll */
html.pl-nav-open,
body.pl-modal-open {
	overflow: hidden;
}

/* ===== 13. Hero Section ===== */
.pl-hero {
	position: relative;
	min-height: clamp(480px, 60vh, 700px);
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--ink) 0%, #2a2d30 100%);
	background-size: cover;
	background-position: center;
}

.pl-hero.has-image {
	background-color: var(--ink);
}

.pl-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(20, 20, 20, .80) 0%, rgba(20, 20, 20, .40) 60%, rgba(20, 20, 20, .20) 100%);
}

.pl-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(60px, 8vw, 100px);
	/* Fill the container (the hero is a flex row) so the margin:0 auto from
	   .pl-container doesn't shrink-wrap + centre the content. Content then sits
	   at the left edge of the container, aligned with the logo. */
	width: 100%;
	text-align: left;
}

.pl-hero__badge {
	display: inline-block;
	background: var(--accent);
	color: var(--ink);
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 20px;
}

.pl-hero__title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 20px;
	max-width: 760px;
}

.pl-hero__text {
	font-size: clamp(16px, 1.5vw, 18px);
	color: rgba(255, 255, 255, .88);
	max-width: 620px;
	margin-bottom: 32px;
	line-height: 1.6;
}

.pl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}

.pl-hero__trust {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
	margin-top: 8px;
}

.pl-hero__trust li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .85);
	font-size: 14px;
	font-weight: 500;
}

.pl-hero__trust li .pl-icon {
	color: var(--accent);
	font-size: 16px;
	flex-shrink: 0;
}

/* ===== 14. Brands / Trust Bar ===== */
.pl-brands {
	padding-block: 40px;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}

.pl-brands__title {
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 24px;
}

.pl-brands__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px 40px;
	list-style: none;
}

.pl-brands__item img {
	height: 40px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1) opacity(.5);
	transition: filter .3s;
}
.pl-brands__item img:hover {
	filter: grayscale(0) opacity(1);
}

.pl-brands__name {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--muted);
	transition: color .2s;
}
.pl-brands__name:hover {
	color: var(--accent);
}

/* ===== 15. Catalog Grid ===== */
.pl-catalog {
	background: var(--bg);
}

.pl-catalog__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 16px;
}

.pl-cat-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--bg-soft);
	text-decoration: none;
}

.pl-cat-card--big {
	grid-row: span 2;
	min-height: 520px;
}

.pl-cat-card:not(.pl-cat-card--big) {
	min-height: 250px;
}

.pl-cat-card__media {
	position: absolute;
	inset: 0;
}

.pl-cat-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.pl-cat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 20, 20, .75) 0%, rgba(20, 20, 20, .05) 55%);
	z-index: 1;
	transition: opacity .3s;
}

.pl-cat-card:hover::before {
	opacity: .85;
}

.pl-cat-card:hover .pl-cat-card__media img {
	transform: scale(1.04);
}

.pl-cat-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	z-index: 2;
}

.pl-cat-card__title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	letter-spacing: -.01em;
}

.pl-cat-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--accent);
	font-weight: 600;
	transition: gap .2s;
}
.pl-cat-card:hover .pl-cat-card__link {
	gap: 10px;
}

/* ===== 16. USP Grid ===== */
.pl-usp__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.pl-usp__item {
	text-align: center;
	padding: 32px 20px;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	transition: box-shadow .3s, transform .3s;
}
.pl-usp__item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.pl-usp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: rgba(156, 201, 58, .12);
	color: var(--accent);
	font-size: 28px;
	margin-bottom: 20px;
}

.pl-usp__title {
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 10px;
}

.pl-usp__text {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}

/* ===== 17. Slider / Featured Products ===== */
.pl-featured {
	background: var(--bg);
}

.pl-slider {
	position: relative;
}

.pl-slider__viewport {
	overflow: hidden;
	/* Padding gives card shadows room inside the clip box; the matching negative
	   margin keeps the slides aligned with the container (no shift). */
	padding: 18px 22px 30px;
	margin: -18px -22px -30px;
}

.pl-slider__track {
	display: flex;
	gap: var(--gap);
	transition: transform .4s cubic-bezier(.25, .46, .45, .94);
	list-style: none;
	padding: 0;
}

/* Slide widths by perView — CSS only, matching slider.js breakpoints */
.pl-slider__track > li {
	flex: 0 0 calc((100% - 3 * var(--gap)) / 4);
	min-width: 0;
}

.pl-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--accent);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	transition: background .2s, color .2s;
	box-shadow: var(--shadow);
}
.pl-slider__nav:hover {
	background: var(--accent);
	color: var(--ink);
}
.pl-slider__nav:disabled {
	opacity: .35;
	cursor: default;
}

.pl-slider__nav--prev {
	left: -22px;
	transform: translateY(-50%) rotate(180deg);
}
.pl-slider__nav--next {
	right: -22px;
}

.pl-slider__dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 20px;
}

.pl-slider__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--line);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: width .3s, background .3s;
}
.pl-slider__dot.is-active {
	width: 24px;
	background: var(--accent);
}

/* Testimonials carousel — 3 per view on desktop (wider cards), equal heights */
@media (min-width: 1201px) {
	.pl-slider--reviews .pl-slider__track > li {
		flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
	}
}
.pl-slider--reviews .pl-slider__track > li {
	display: flex;
}
.pl-slider--reviews .pl-review {
	height: 100%;
	width: 100%;
	margin: 0;
}

/* ===== 18. Process Steps ===== */
.pl-process__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0;
	list-style: none;
	counter-reset: none;
	position: relative;
}

/* Connecting line between steps */
.pl-process__list::before {
	content: '';
	position: absolute;
	top: 32px;
	left: calc(100% / 8);
	right: calc(100% / 8);
	height: 2px;
	background: linear-gradient(to right, var(--accent) 0%, var(--line) 100%);
	z-index: 0;
}

.pl-process__step {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 16px;
}

.pl-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--ink);
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 800;
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
}

.pl-process__title {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}

.pl-process__text {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
}

/* ===== 19. Gallery Teaser ===== */
.pl-gallery-teaser {
	background: var(--bg);
}

.pl-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 220px;
	gap: 12px;
}

.pl-gallery-grid__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--bg-soft);
	text-decoration: none;
}

.pl-gallery-grid__item.is-wide {
	grid-column: span 2;
	grid-row: span 2;
}

/* Single-photo items open in a lightbox (no inner page) — hint with a zoom cursor. */
.pl-gallery-grid__item--photo {
	cursor: zoom-in;
}

.pl-gallery-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.pl-gallery-grid__item:hover img {
	transform: scale(1.06);
}

.pl-gallery-grid__cap {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 16px;
	background: linear-gradient(to top, rgba(20, 20, 20, .7) 0%, transparent 60%);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .3s, transform .3s;
}

.pl-gallery-grid__item:hover .pl-gallery-grid__cap {
	opacity: 1;
	transform: translateY(0);
}

.pl-gallery-teaser__foot {
	text-align: center;
	margin-top: 32px;
}

/* Full gallery page - masonry */
.pl-gallery-grid--masonry {
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 240px;
}

.pl-gallery-grid--masonry .pl-gallery-grid__cap {
	opacity: 1;
	transform: none;
}

/* Gallery filter tabs */
.pl-gallery-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.pl-gallery-filter__btn {
	padding: 8px 18px;
	border-radius: 999px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--body);
	background: var(--bg-soft);
	border: 1.5px solid var(--line);
	text-decoration: none;
	transition: background .2s, color .2s, border-color .2s;
}
.pl-gallery-filter__btn:hover,
.pl-gallery-filter__btn.is-active {
	background: var(--accent);
	color: var(--ink);
	border-color: var(--accent);
}

/* ===== 20. Reviews / Testimonials ===== */
.pl-reviews {
	background: var(--bg-soft);
}

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

.pl-review {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 28px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: box-shadow .3s;
}
.pl-review:hover {
	box-shadow: var(--shadow-lg);
}

.pl-review__stars {
	display: flex;
	gap: 4px;
}

.pl-star {
	display: inline-flex;
	color: var(--muted);
	font-size: 18px;
}

.pl-star.is-on {
	color: var(--accent);
}

.pl-review__text {
	font-size: 15px;
	color: var(--body);
	line-height: 1.7;
	margin: 0;
	flex: 1;
}

.pl-review__author {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--line);
	padding-top: 16px;
}

.pl-review__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.pl-review__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pl-review__author strong {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}

.pl-review__author small {
	font-size: 12px;
	color: var(--muted);
}

/* ===== 21. FAQ Accordion ===== */
.pl-faq__inner {
	max-width: 820px;
}

.pl-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pl-accordion__item {
	border-bottom: 1px solid var(--line);
}

.pl-accordion__item:first-child {
	border-top: 1px solid var(--line);
}

.pl-accordion__head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 0;
	background: none;
	border: none;
	text-align: left;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	transition: color .2s;
}

.pl-accordion__head:hover {
	color: var(--accent);
}

.pl-accordion__head .pl-icon {
	flex-shrink: 0;
	font-size: 18px;
	color: var(--muted);
	transition: transform .3s, color .2s;
}

.pl-accordion__item.is-open .pl-accordion__head .pl-icon {
	transform: rotate(180deg);
	color: var(--accent);
}

.pl-accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
}

.pl-accordion__item.is-open .pl-accordion__panel {
	max-height: 600px;
}

.pl-accordion__content {
	padding-bottom: 20px;
	font-size: 15px;
	color: var(--body);
	line-height: 1.7;
}

.pl-accordion__content p {
	margin-bottom: .75em;
}

/* ===== 22. CTA Band ===== */
.pl-cta-band {
	background: var(--bg);
}

.pl-cta-band__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.pl-cta-band__media {
	position: relative;
	height: 420px;
}

.pl-cta-band__img {
	position: absolute;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.pl-cta-band__img--1 {
	top: 0;
	left: 0;
	width: 75%;
	height: 80%;
}

.pl-cta-band__img--2 {
	bottom: 0;
	right: 0;
	width: 65%;
	height: 70%;
	z-index: 2;
}

.pl-cta-band__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.pl-cta-band__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pl-cta-band__title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
	margin: 0;
}

.pl-cta-band__text {
	font-size: 16px;
	color: var(--body);
	line-height: 1.7;
}

/* ===== 23. Lead Band ===== */
.pl-lead-band {
	/* Bright on-brand band so the closing CTA grabs attention instead of
	   receding into a dark stripe; soft top-right glow adds depth. */
	background:
		radial-gradient(120% 130% at 86% 12%, rgba(255, 255, 255, .25), transparent 55%),
		linear-gradient(135deg, #a8d24b 0%, var(--accent) 46%, #82b12a 100%);
	padding-block: clamp(48px, 6vw, 80px);
}

.pl-lead-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.pl-lead-band__title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 800;
	color: var(--accent-ink);
	margin-bottom: 10px;
	letter-spacing: -.02em;
}

.pl-lead-band__sub {
	color: rgba(28, 28, 28, .74);
	font-size: 15px;
	font-weight: 500;
	max-width: 560px;
}

.pl-lead-band__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	flex-shrink: 0;
}

/* Dark CTA now pops against the bright band; lift it with a soft shadow. */
.pl-lead-band__actions .pl-btn--dark {
	box-shadow: 0 12px 26px rgba(28, 28, 28, .25);
}

/* Phone as a clear secondary (outline) action, not a faint link. */
.pl-lead-band__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	color: var(--accent-ink);
	font-size: 16px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	/* Match the .pl-btn--lg pill (same radius + height) so it sits flush with
	   the "Gauti pasiūlymą" button above it. */
	padding: 17px 30px;
	border: 1.5px solid rgba(28, 28, 28, .45);
	border-radius: 999px;
	transition: background .2s, border-color .2s;
}
.pl-lead-band__phone:hover {
	color: var(--accent-ink);
	background: rgba(28, 28, 28, .08);
	border-color: var(--accent-ink);
}
.pl-lead-band__phone .pl-icon {
	color: var(--accent-ink);
	font-size: 19px;
}

/* ===== 24. Footer ===== */
.pl-footer {
	background: var(--footer);
	color: rgba(255, 255, 255, .65);
	font-size: 14px;
}

.pl-footer__top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-block: 56px;
}

.pl-footer__logo {
	margin-bottom: 16px;
}

.pl-footer__logo img {
	height: 48px;
	width: auto;
}

.pl-footer__text {
	color: rgba(255, 255, 255, .55);
	line-height: 1.65;
	margin-bottom: 20px;
}

.pl-footer__social {
	display: flex;
	gap: 10px;
}

.pl-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .65);
	font-size: 16px;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.pl-footer__social a:hover {
	background: var(--accent);
	color: var(--ink);
}

.pl-footer__heading {
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: #fff;
	margin-bottom: 16px;
}

.pl-footer__menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pl-footer__menu a {
	color: rgba(255, 255, 255, .55);
	text-decoration: none;
	font-size: 14px;
	transition: color .2s;
}
.pl-footer__menu a:hover {
	color: var(--accent);
}

.pl-footer__contact-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pl-footer__contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255, 255, 255, .65);
	font-size: 14px;
}

.pl-footer__contact-list .pl-icon {
	color: var(--accent);
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 2px;
}

.pl-footer__contact-list a {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	transition: color .2s;
}
.pl-footer__contact-list a:hover {
	color: var(--accent);
}

.pl-footer__bottom {
	background: var(--footer-line);
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.pl-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 16px;
}

.pl-footer__copy {
	font-size: 13px;
	color: rgba(255, 255, 255, .4);
	margin: 0;
}

.pl-footer__payment {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, .4);
	margin: 0;
}
.pl-footer__payment .pl-icon {
	font-size: 16px;
	color: rgba(255, 255, 255, .5);
}

.pl-footer__credit {
	font-size: 13px;
	color: rgba(255, 255, 255, .4);
	margin: 0;
}
.pl-footer__credit a {
	color: rgba(255, 255, 255, .7);
	font-weight: 600;
	text-decoration: none;
}
.pl-footer__credit a:hover {
	color: var(--accent);
	text-decoration: underline;
}
.pl-footer__heart {
	display: inline-block;
	color: var(--accent);
	font-style: normal;
	transform-origin: center;
	animation: pl-heartbeat 1.6s ease-in-out infinite;
}
@keyframes pl-heartbeat {
	0%, 30%, 100% { transform: scale(1); }
	10% { transform: scale(1.3); }
	20% { transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
	.pl-footer__heart { animation: none; }
}

/* ===== 25. Page Content / RTE ===== */
.pl-rte {
	font-size: 16px;
	line-height: 1.75;
	color: var(--body);
}

.pl-rte h2,
.pl-rte h3,
.pl-rte h4 {
	color: var(--ink);
	margin-top: 1.5em;
}

.pl-rte ul,
.pl-rte ol {
	padding-left: 1.5em;
	margin-bottom: 1em;
}

.pl-rte a {
	color: var(--accent);
	text-decoration: underline;
}

/* ===== 26. About Page ===== */
.pl-stats {
	background: var(--bg-soft);
}

.pl-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 32px;
	text-align: center;
}

.pl-stat__num {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 8px;
}

.pl-stat__label {
	display: block;
	font-size: 15px;
	color: var(--body);
	font-weight: 500;
}

.pl-about-story {
	background: var(--bg);
}

.pl-about-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.pl-about-story__media img,
.pl-about-story__media .pl-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.pl-about-story__title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 16px;
}

.pl-team {
	background: var(--bg-soft);
}

.pl-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 28px;
}

.pl-team__member {
	text-align: center;
}

.pl-team__photo {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 16px;
	background: var(--bg-soft);
}

.pl-team__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pl-team__name {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}

.pl-team__role {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 8px;
}

.pl-team__phone {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}

/* ===== 27. Contacts Page ===== */
.pl-contacts__grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
}

.pl-contact-card {
	margin-bottom: 32px;
}
.pl-contact-card:last-child {
	margin-bottom: 0;
}

.pl-contact-card__name {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 16px;
}

.pl-contact-card__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pl-contact-card__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--body);
	font-size: 15px;
}

.pl-contact-card__list .pl-icon {
	color: var(--accent);
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

.pl-contact-card__list a {
	color: var(--body);
	text-decoration: none;
	transition: color .2s;
}
.pl-contact-card__list a:hover {
	color: var(--accent);
}

.pl-contacts__form-title {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}

.pl-contacts__form-text {
	color: var(--muted);
	margin-bottom: 24px;
}

.pl-contacts__map {
	margin-top: 48px;
}

.pl-contacts__map iframe {
	width: 100%;
	height: 400px;
	border: 0;
	border-radius: var(--radius-lg);
	display: block;
}

/* ===== 28. Form Elements ===== */
.pl-field-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.pl-field-group:last-child {
	margin-bottom: 0;
}

.pl-field-group label {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
}

.pl-field-group input[type="text"],
.pl-field-group input[type="email"],
.pl-field-group input[type="tel"],
.pl-field-group input[type="number"],
.pl-field-group input[type="url"],
.pl-field-group input[type="search"],
.pl-field-group select,
.pl-field-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--ink);
	background: #fff;
	transition: border-color .2s, box-shadow .2s;
	outline: none;
	-webkit-appearance: none;
}

.pl-field-group input:focus,
.pl-field-group select:focus,
.pl-field-group textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(156, 201, 58, .18);
}

.pl-field-group textarea {
	min-height: 100px;
	resize: vertical;
}

.pl-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

/* Upload field */
.pl-upload__label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 24px;
	border: 2px dashed var(--line);
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	color: var(--muted);
	text-align: center;
	transition: border-color .2s, background .2s;
}
.pl-upload__label:hover {
	border-color: var(--accent);
	background: rgba(156, 201, 58, .05);
}

.pl-upload__label .pl-icon {
	font-size: 28px;
	color: var(--accent);
}

.pl-upload__label input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* Honeypot */
.pl-hp {
	display: none !important;
}

/* ===== 29. Quote Form ===== */
.pl-quote-form__subject {
	padding: 10px 14px;
	background: rgba(156, 201, 58, .1);
	border-radius: 6px;
	font-size: 14px;
	color: var(--body);
	margin-bottom: 16px;
}

.pl-quote-form__foot {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pl-quote-form__note {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--muted);
	margin: 0;
}
.pl-quote-form__note .pl-icon {
	color: var(--accent);
}

.pl-quote-form__msg {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	margin-top: 16px;
}

.pl-quote-form__msg.is-ok {
	background: rgba(156, 201, 58, .12);
	color: #3a6314;
	border: 1px solid rgba(156, 201, 58, .35);
}

.pl-quote-form__msg.is-error {
	background: rgba(226, 59, 59, .1);
	color: #9e1f1f;
	border: 1px solid rgba(226, 59, 59, .3);
}

/* Inline form variant */
.pl-quote-form--inline .pl-quote-form__foot {
	flex-direction: row;
	align-items: center;
}

/* ===== 30. Modal ===== */
.pl-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.pl-modal[hidden] {
	display: none;
}

.pl-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, .60);
	cursor: pointer;
}

.pl-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px;
	width: 100%;
	max-width: 520px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	box-shadow: var(--shadow-lg);
	transform: translateY(16px) scale(.98);
	opacity: 0;
	transition: transform .25s, opacity .25s;
}

#pl-quote-modal.is-open .pl-modal__dialog {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.pl-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-soft);
	border: none;
	border-radius: 50%;
	color: var(--ink);
	font-size: 18px;
	cursor: pointer;
	transition: background .2s;
	z-index: 1;
}
.pl-modal__close:hover {
	background: var(--line);
}

.pl-modal__title {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}

.pl-modal__intro {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 24px;
}

/* ===== 31. Lightbox ===== */
.pl-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .90);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}

.pl-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.pl-lightbox img {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: var(--radius);
}

.pl-lightbox__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, .15);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s;
}
.pl-lightbox__close:hover {
	background: rgba(255, 255, 255, .3);
}

/* ===== 32. Checklist ===== */
.pl-checklist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pl-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--body);
}

.pl-checklist li .pl-icon {
	color: var(--accent);
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 3px;
}

.pl-checklist--lg li {
	font-size: 16px;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}
.pl-checklist--lg li:last-child {
	border-bottom: none;
}

.pl-checklist--lg .pl-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(156, 201, 58, .12);
	border-radius: 8px;
	color: var(--accent);
	font-size: 16px;
	flex-shrink: 0;
}

/* ===== 33. Breadcrumbs ===== */
.pl-breadcrumbs,
.woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, .65);
	margin-bottom: 12px;
}

.pl-breadcrumbs a,
.woocommerce-breadcrumb a {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	transition: color .2s;
}
.pl-breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover {
	color: var(--accent);
}

.pl-crumb-sep,
.woocommerce-breadcrumb .sep {
	color: rgba(28, 28, 28, .35);
}

/* ===== 34. Pagination ===== */
.pl-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 40px;
}

/* Neutralise WooCommerce's default joined-box pagination wrapper. */
.woocommerce nav.woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 44px 0 0;
	padding: 0;
	border: 0;
}
.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-pagination ul.page-numbers li {
	display: inline-flex;
	margin: 0;
	border: 0;
	overflow: visible;
}

/* Each page link/number as a clean standalone button (high specificity to beat
   WooCommerce's own pagination CSS). */
.woocommerce nav.woocommerce-pagination ul li a.page-numbers,
.woocommerce nav.woocommerce-pagination ul li span.page-numbers,
.pl-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: var(--body);
	text-decoration: none;
	transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}

.woocommerce nav.woocommerce-pagination ul li a.page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a.page-numbers:focus-visible,
.pl-pagination .page-numbers:hover {
	background: var(--bg-soft);
	border-color: var(--accent);
	color: var(--accent-ink);
	box-shadow: 0 4px 12px rgba(28, 28, 28, .06);
}

.woocommerce nav.woocommerce-pagination ul li span.page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li a.page-numbers.current,
.pl-pagination .page-numbers.current {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--accent-ink);
}

.woocommerce nav.woocommerce-pagination ul li span.page-numbers.dots,
.pl-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	min-width: 24px;
	padding: 0;
}

/* ===== 35. Utility / Misc ===== */
.pl-empty {
	text-align: center;
	color: var(--muted);
	padding: 48px 24px;
	font-size: 16px;
}

.pl-financing {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(156, 201, 58, .1);
	border-radius: 999px;
	font-size: 14px;
	color: var(--body);
	border: 1px solid rgba(156, 201, 58, .3);
}
.pl-financing .pl-icon {
	color: var(--accent);
}

/* ===== 36. Responsive ===== */

/* 1200px */
@media (max-width: 1200px) {
	.pl-slider__track > li {
		flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
	}

	.pl-catalog__grid {
		gap: 12px;
	}

	.pl-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

/* 992px — mobile nav breakpoint */
@media (max-width: 992px) {
	.pl-nav {
		display: none;
	}

	.pl-burger {
		display: flex;
	}

	.pl-header__cta {
		display: none;
	}

	.pl-usp__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pl-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.pl-cta-band__media {
		height: 340px;
	}

	.pl-lead-band__inner {
		flex-direction: column;
		text-align: center;
	}

	.pl-lead-band__actions {
		align-items: center;
	}

	.pl-process__list::before {
		display: none;
	}

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

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

/* 768px */
@media (max-width: 768px) {
	.pl-catalog__grid {
		grid-template-columns: 1fr;
	}

	.pl-cat-card--big {
		grid-row: auto;
		min-height: 300px;
	}

	.pl-usp__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.pl-slider__track > li {
		flex: 0 0 calc((100% - var(--gap)) / 2);
	}

	.pl-process__list {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pl-gallery-grid,
	.pl-gallery-grid--masonry {
		grid-template-columns: repeat(2, 1fr);
	}

	.pl-gallery-grid__item.is-wide {
		grid-column: span 2;
		grid-row: auto;
	}

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

	.pl-topbar {
		display: none;
	}

	.pl-footer__top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.pl-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

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

	.pl-modal__dialog {
		padding: 24px;
	}

	.pl-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pl-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 560px */
@media (max-width: 560px) {
	.pl-slider__track > li {
		flex: 0 0 100%;
	}

	.pl-hero__actions {
		flex-direction: column;
	}

	.pl-hero__actions .pl-btn {
		width: 100%;
		justify-content: center;
	}

	.pl-gallery-grid,
	.pl-gallery-grid--masonry {
		grid-template-columns: 1fr;
		grid-auto-rows: 200px;
	}

	.pl-gallery-grid__item.is-wide {
		grid-column: auto;
	}

	.pl-gallery-grid__cap {
		opacity: 1;
		transform: none;
	}

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

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

	.pl-cta-band__media {
		height: 260px;
	}

	.pl-quote-form--inline .pl-quote-form__foot {
		flex-direction: column;
	}
}

/* ===== Cookie consent banner ===== */
/* `display:flex/inline-flex` on children would otherwise override [hidden]. */
.pl-cookie [hidden],
.pl-cookie-reopen[hidden] {
	display: none !important;
}
.pl-cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 9999;
	max-width: 940px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: 0 16px 48px rgba(20, 20, 20, .18);
	padding: 20px 22px;
}
.pl-cookie__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 24px;
}
.pl-cookie__text {
	flex: 1 1 320px;
}
.pl-cookie__text strong {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	margin-bottom: 4px;
	color: var(--ink);
}
.pl-cookie__text p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--muted);
}
.pl-cookie__text a {
	color: var(--accent);
	font-weight: 600;
}
.pl-cookie__options {
	flex: 1 1 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
}
.pl-cookie__opt {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--ink);
}
.pl-cookie__opt small {
	color: var(--muted);
}
.pl-cookie__actions {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}
.pl-cookie-reopen {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9998;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: var(--shadow);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}
.pl-cookie-reopen .pl-icon {
	font-size: 20px;
}
@media (max-width: 560px) {
	.pl-cookie__actions .pl-btn {
		flex: 1 1 100%;
	}
}
