.polagro-page,
.polagro-component {
	--red: #d71920;
	--green: #2f8f2f;
	--dark: #111827;
	--muted: #667085;
	--line: #e5e7eb;
	--bg: #f5f6f7;
	--white: #ffffff;
	--shadow: 0 14px 38px rgba(17, 24, 39, .07);
	--soft-shadow: 0 8px 22px rgba(17, 24, 39, .045);
	color: var(--dark);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
}

.polagro-page *,
.polagro-component * {
	box-sizing: border-box;
}

.polagro-page a,
.polagro-component a {
	color: inherit;
	text-decoration: none;
}

.polagro-page .shell {
	width: min(1280px, calc(100% - 40px));
	margin: 0 auto;
}

.polagro-page .product-stage {
	padding: 16px 0 12px;
	background: var(--bg);
}

.polagro-page .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	padding: 18px 28px 13px;
	background: var(--white);
	border-right: 1px solid rgba(229, 231, 235, .95);
	border-left: 1px solid rgba(229, 231, 235, .95);
	color: var(--muted);
	font-size: 12px;
	font-weight: 650;
}

.polagro-page .breadcrumb a {
	color: #475467;
}

.polagro-page .breadcrumb strong {
	color: var(--dark);
}

.polagro-page .hero-card {
	display: grid;
	grid-template-columns: minmax(0, 59.5fr) minmax(390px, 40.5fr);
	gap: 24px;
	padding: 0 28px 22px;
	background: var(--white);
	border-right: 1px solid rgba(229, 231, 235, .95);
	border-bottom: 1px solid rgba(229, 231, 235, .95);
	border-left: 1px solid rgba(229, 231, 235, .95);
	border-radius: 0 0 18px 18px;
	box-shadow: var(--shadow);
}

.polagro-page .gallery {
	min-width: 0;
}

.polagro-page .product-photo {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(245, 246, 247, .9)), #e8edf2;
	border-radius: 10px;
}

.polagro-page .product-photo > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.polagro-page .product-photo::after {
	content: "";
	position: absolute;
	inset: 62% 0 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, .22));
}

.polagro-page .badge-top {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 16px;
	color: var(--white);
	background: var(--red);
	border-radius: 4px;
	box-shadow: 0 8px 18px rgba(215, 25, 32, .28);
	font-size: 12px;
	font-weight: 950;
}

.polagro-page .gallery-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #111827;
	background: rgba(255, 255, 255, .92);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(17, 24, 39, .18);
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
	transform: translateY(-50%);
}

.polagro-page .gallery-arrow--left {
	left: 22px;
}

.polagro-page .gallery-arrow--right {
	right: 22px;
}

.polagro-page .gallery-count {
	position: absolute;
	left: 24px;
	bottom: 22px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 10px;
	color: var(--white);
	background: rgba(17, 24, 39, .7);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
}

.polagro-page .thumb-strip {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.polagro-page .thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	padding: 0;
	background: #e8edf2;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
}

.polagro-page .thumb.is-active {
	border-color: var(--red);
}

.polagro-page .thumb img,
.polagro-page .related-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.polagro-page .product-panel {
	display: flex;
	flex-direction: column;
	padding: 8px 10px 0 0;
}

.polagro-page .kicker {
	min-height: 16px;
	margin: 0 0 11px;
	color: var(--green);
	font-size: 12px;
	font-weight: 950;
	line-height: 1.35;
	text-transform: uppercase;
}

.polagro-page .product-panel h1 {
	max-width: 500px;
	margin: 0;
	font-size: clamp(32px, 3vw, 40px);
	line-height: 1.04;
	letter-spacing: -1px;
}

.polagro-page .lead {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 16px 0 0;
	color: #344054;
	font-size: 15px;
	font-weight: 520;
	line-height: 1.58;
}

.polagro-page .fact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 24px;
}

.polagro-page .fact-card {
	position: relative;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 11px;
	align-items: center;
	min-height: 72px;
	padding: 12px;
	background: #fbfbfc;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.polagro-page .fact-icon {
	grid-row: 1 / 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--green);
	background: rgba(47, 143, 47, .08);
	border-radius: 7px;
	font-size: 14px;
	font-weight: 900;
}

.polagro-page .fact-card small {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
}

.polagro-page .fact-card strong {
	margin-top: 2px;
	font-size: 13px;
	line-height: 1.2;
}

.polagro-page .fact-card .green {
	color: var(--green);
}

.polagro-page .product-price {
	margin: 14px 0 0;
	color: var(--red);
	font-size: 15px;
	font-weight: 900;
}

.polagro-page .panel-actions {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding-top: 24px;
}

.polagro-page .btn,
.polagro-component .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 950;
}

.polagro-page .btn-primary,
.polagro-component .btn-primary {
	color: var(--white);
	background: var(--red);
	box-shadow: 0 10px 22px rgba(215, 25, 32, .2);
}

.polagro-page .btn-secondary,
.polagro-component .btn-secondary {
	color: var(--dark);
	background: var(--white);
	border-color: #d9dde4;
}

.polagro-page .trust-bar,
.polagro-component.trust-bar {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	margin-top: 12px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--soft-shadow);
}

.polagro-page .trust-bar div,
.polagro-component.trust-bar div {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 12px;
	align-items: center;
	min-height: 70px;
	padding: 13px 20px;
	border-right: 1px solid var(--line);
}

.polagro-page .trust-bar div:last-child,
.polagro-component.trust-bar div:last-child {
	border-right: 0;
}

.polagro-page .trust-bar span,
.polagro-component.trust-bar span {
	grid-row: 1 / 3;
	position: relative;
	display: inline-flex;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(47, 143, 47, .2);
	border-radius: 999px;
	background: rgba(47, 143, 47, .07);
}

.polagro-page .trust-bar span::after,
.polagro-component.trust-bar span::after {
	content: "";
	position: absolute;
	inset: 9px;
	background: var(--green);
	border-radius: 999px;
}

.polagro-page .trust-bar strong,
.polagro-component.trust-bar strong {
	font-size: 13px;
	line-height: 1.25;
}

.polagro-page .trust-bar small,
.polagro-component.trust-bar small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.25;
}

.polagro-page .content-stage {
	padding: 0 0 34px;
	background: var(--bg);
}

.polagro-page .content-grid {
	display: grid;
	grid-template-columns: 215px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.polagro-page .side-menu {
	position: sticky;
	top: 102px;
	padding: 10px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--soft-shadow);
}

.polagro-page .side-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 38px;
	padding: 0 10px;
	color: #344054;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 850;
}

.polagro-page .side-menu a::before {
	content: "";
	width: 8px;
	height: 8px;
	border: 1px solid var(--muted);
	border-radius: 999px;
}

.polagro-page .side-menu a.is-active,
.polagro-page .side-menu a:hover {
	color: var(--red);
	background: rgba(215, 25, 32, .04);
}

.polagro-page .side-menu a.is-active::before,
.polagro-page .side-menu a:hover::before {
	background: var(--red);
	border-color: var(--red);
}

.polagro-page .main-content {
	display: grid;
	gap: 14px;
}

.polagro-page .top-content-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 270px;
	gap: 14px;
}

.polagro-page .top-content-row--full {
	grid-template-columns: 1fr;
}

.polagro-page .card,
.polagro-page .related {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--soft-shadow);
}

.polagro-page .card {
	padding: 20px;
}

.polagro-page .benefits-card {
	overflow: hidden;
	padding: 0;
}

.polagro-page .benefit-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.polagro-page .benefit-list article {
	min-height: 150px;
	padding: 24px 20px 20px;
	border-right: 1px solid var(--line);
}

.polagro-page .benefit-list article:last-child {
	border-right: 0;
}

.polagro-page .benefit-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-bottom: 16px;
	color: var(--green);
	background: rgba(47, 143, 47, .08);
	border-radius: 999px;
	font-size: 18px;
	font-weight: 900;
}

.polagro-page .benefit-list h2 {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.25;
}

.polagro-page .benefit-list p {
	margin: 0;
	color: #475467;
	font-size: 13px;
	line-height: 1.45;
}

.polagro-page .section-head {
	margin-bottom: 14px;
}

.polagro-page .section-head--row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.polagro-page .section-head h2,
.polagro-page .service-card h2 {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
}

.polagro-page .section-head a {
	color: var(--red);
	font-size: 13px;
	font-weight: 850;
}

.polagro-page .downloads-card {
	display: grid;
	align-content: start;
	gap: 10px;
}

.polagro-page .downloads-card a {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
}

.polagro-page .downloads-card a:last-child {
	border-bottom: 0;
}

.polagro-page .downloads-card span {
	grid-row: 1 / 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 32px;
	color: var(--red);
	background: rgba(215, 25, 32, .07);
	border-radius: 7px;
	font-size: 9px;
	font-weight: 950;
}

.polagro-page .downloads-card strong {
	font-size: 12px;
	line-height: 1.3;
}

.polagro-page .downloads-card small {
	color: var(--muted);
	font-size: 11px;
}

.polagro-page .parameters-card table {
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--line);
	border-collapse: collapse;
	border-radius: 8px;
	font-size: 13px;
}

.polagro-page .parameters-card th,
.polagro-page .parameters-card td {
	padding: 11px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.polagro-page .parameters-card tr:nth-child(odd) th,
.polagro-page .parameters-card tr:nth-child(odd) td {
	background: #fafafa;
}

.polagro-page .parameters-card tr:last-child th,
.polagro-page .parameters-card tr:last-child td {
	border-bottom: 0;
}

.polagro-page .parameters-card th {
	width: 24%;
	color: #475467;
	font-weight: 700;
}

.polagro-page .parameters-card td {
	width: 26%;
	font-weight: 900;
}

.polagro-page .description-card p,
.polagro-page .service-card p,
.polagro-page .richtext {
	color: #475467;
	font-size: 14px;
	line-height: 1.65;
}

.polagro-page .description-card p,
.polagro-page .service-card p {
	margin: 0 0 12px;
}

.polagro-page .description-card p:last-child,
.polagro-page .richtext > :last-child {
	margin-bottom: 0;
}

.polagro-page .richtext > :first-child {
	margin-top: 0;
}

.polagro-page .video-frame {
	overflow: hidden;
	background: var(--bg);
	border-radius: 10px;
}

.polagro-page .video-frame iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.polagro-page .service-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 24px;
	align-items: center;
}

.polagro-page .related {
	padding: 20px;
}

.polagro-page .related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.polagro-page .related-grid article {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 92px;
	padding: 10px;
	background: #fafafa;
	border: 1px solid var(--line);
	border-radius: 9px;
}

.polagro-page .related-photo {
	width: 120px;
	height: 72px;
	border-radius: 7px;
}

.polagro-page .related-grid h3 {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.28;
}

.polagro-page .related-grid strong {
	color: var(--red);
	font-size: 12px;
	line-height: 1.3;
}

.polagro-page .contact-strip {
	padding: 0 0 34px;
	background: var(--bg);
}

.polagro-page .contact-inner {
	display: grid;
	grid-template-columns: 1.1fr 1.1fr 1fr 1fr 1.1fr;
	align-items: center;
	min-height: 58px;
	color: var(--white);
	background: var(--red);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(215, 25, 32, .16);
}

.polagro-page .contact-inner div,
.polagro-page .contact-inner a,
.polagro-page .contact-inner > strong {
	display: grid;
	gap: 2px;
	padding: 0 22px;
	border-right: 1px solid rgba(255, 255, 255, .22);
	font-size: 13px;
	font-weight: 850;
}

.polagro-page .contact-inner span {
	color: rgba(255, 255, 255, .76);
	font-size: 11px;
	font-weight: 550;
}

.polagro-page .contact-inner > *:last-child {
	border-right: 0;
}

.polagro-archive-hero {
	margin-bottom: 36px;
	padding: 66px 0;
	background: linear-gradient(135deg, #ffffff, #f5f6f7);
	border-bottom: 1px solid #e5e7eb;
}

.polagro-archive-hero h1,
.polagro-home-hero h1 {
	margin: 0;
	color: #111827;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.03;
}

.polagro-archive-hero p,
.polagro-home-hero p {
	max-width: 720px;
	color: #6b7280;
	font-size: 18px;
	line-height: 1.65;
}

.polagro-archive-hero--offer {
	background: linear-gradient(135deg, #fff5f5, #f5f6f7);
}

.polagro-machine-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 24px;
}

.polagro-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
}

.polagro-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background: #f5f6f7;
}

.polagro-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.polagro-card__body {
	padding: 22px;
}

.polagro-card__body h2 {
	margin: 12px 0 10px;
	font-size: 22px;
	line-height: 1.22;
}

.polagro-card__body h2 a {
	color: #111827;
}

.polagro-card__body p {
	color: #6b7280;
	line-height: 1.6;
}

.polagro-card__meta {
	margin: 14px 0 0;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.polagro-card__price {
	display: block;
	margin: 14px 0 18px;
	color: #111827;
	font-size: 18px;
}

.polagro-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.polagro-badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	color: #2f8f2f;
	background: rgba(47, 143, 47, .09);
	border: 1px solid rgba(47, 143, 47, .18);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.polagro-badge--red {
	color: #d71920;
	background: rgba(215, 25, 32, .08);
	border-color: rgba(215, 25, 32, .18);
}

.polagro-pagination {
	margin: 34px 0 60px;
}

.polagro-empty {
	padding: 22px;
	background: #f5f6f7;
	border-radius: 10px;
}

.polagro-home-hero {
	min-height: 560px;
	display: flex;
	align-items: center;
	padding: 86px 0;
	background-color: #111827;
	background-position: center;
	background-size: cover;
}

.polagro-home-hero__inner {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.polagro-home-hero .polagro-eyebrow,
.polagro-home-hero h1,
.polagro-home-hero p {
	color: #ffffff;
}

.polagro-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

@media (max-width: 1120px) {
	.polagro-page .hero-card,
	.polagro-page .content-grid {
		grid-template-columns: 1fr;
	}

	.polagro-page .product-panel {
		padding: 0;
	}

	.polagro-page .side-menu {
		display: none;
	}

	.polagro-page .top-content-row {
		grid-template-columns: 1fr;
	}

	.polagro-page .benefit-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.polagro-page .benefit-list article:nth-child(2n) {
		border-right: 0;
	}
}

@media (max-width: 820px) {
	.polagro-page .shell {
		width: min(100% - 24px, 1280px);
	}

	.polagro-page .breadcrumb {
		margin-top: 10px;
		padding: 8px 2px 10px;
		background: transparent;
		border: 0;
	}

	.polagro-page .hero-card {
		padding: 10px;
		border-radius: 14px;
	}

	.polagro-page .badge-top {
		top: 12px;
		left: 12px;
		height: 28px;
		padding: 0 10px;
		font-size: 10px;
	}

	.polagro-page .gallery-arrow {
		width: 34px;
		height: 34px;
		font-size: 24px;
	}

	.polagro-page .gallery-arrow--left {
		left: 12px;
	}

	.polagro-page .gallery-arrow--right {
		right: 12px;
	}

	.polagro-page .gallery-count {
		left: 12px;
		bottom: 12px;
	}

	.polagro-page .thumb-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.polagro-page .product-panel h1 {
		font-size: 31px;
	}

	.polagro-page .fact-grid,
	.polagro-page .trust-bar,
	.polagro-component.trust-bar,
	.polagro-page .related-grid,
	.polagro-page .service-card,
	.polagro-page .contact-inner {
		grid-template-columns: 1fr;
	}

	.polagro-page .trust-bar div,
	.polagro-component.trust-bar div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.polagro-page .trust-bar div:last-child,
	.polagro-component.trust-bar div:last-child {
		border-bottom: 0;
	}

	.polagro-page .benefit-list {
		grid-template-columns: 1fr;
	}

	.polagro-page .benefit-list article,
	.polagro-page .benefit-list article:nth-child(2n) {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.polagro-page .benefit-list article:last-child {
		border-bottom: 0;
	}

	.polagro-page .parameters-card table,
	.polagro-page .parameters-card tbody,
	.polagro-page .parameters-card tr,
	.polagro-page .parameters-card th,
	.polagro-page .parameters-card td {
		display: block;
		width: 100%;
	}

	.polagro-page .parameters-card th {
		padding-bottom: 2px;
		border-bottom: 0;
	}

	.polagro-page .parameters-card td {
		padding-top: 2px;
	}

	.polagro-page .related-grid article {
		grid-template-columns: 104px minmax(0, 1fr);
	}

	.polagro-page .related-photo {
		width: 104px;
	}

	.polagro-page .contact-strip {
		padding-bottom: 24px;
	}

	.polagro-page .contact-inner {
		margin-top: 20px;
		border-radius: 14px;
	}

	.polagro-page .contact-inner div,
	.polagro-page .contact-inner a,
	.polagro-page .contact-inner > strong {
		min-height: 48px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .22);
	}
}
