:root {
	--opop-orange: #f47c22;
	--opop-orange-dark: #db812e;
	--opop-black: #231f20;
	--opop-charcoal: #4b4b4b;
	--opop-gray: #6f6f6f;
	--opop-light: #f1f3f6;
	--opop-white: #fff;
	--opop-radius: 22px;
	--opop-container: 1400px;
	--opop-shadow: 0 14px 25px rgba(35, 31, 32, .16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--opop-black);
	background: var(--opop-light);
	font-family: "Nunito", sans-serif;
	font-size: 17px;
	line-height: 1.52;
	-webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.14; }
.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	background: #fff;
	color: #000;
}
.opop-container {
	width: min(calc(100% - 40px), var(--opop-container));
	margin-inline: auto;
}
.site-header {
	position: relative;
	z-index: 100;
	min-height: 76px;
	background: var(--opop-black);
	border-top: 2px solid var(--opop-orange);
	color: #fff;
}
.header-inner {
	display: grid;
	grid-template-columns: 160px 1fr 160px;
	align-items: center;
	min-height: 74px;
	gap: 26px;
}
.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: auto;
	color: #fff;
}
.site-logo img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}
.brand-wordmark {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: .08em;
}
.primary-navigation { justify-self: center; }
.opop-nav-list,
.opop-nav-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.opop-nav-list {
	display: flex;
	align-items: center;
	gap: 28px;
}
.opop-nav-list > li { position: relative; display: flex; align-items: center; }
.opop-nav-list > li > a {
	display: block;
	padding: 26px 0;
	font-size: 16px;
	transition: color .2s ease;
}
.opop-nav-list a:hover,
.opop-nav-list .current-menu-item > a { color: var(--opop-orange); }
.submenu-toggle {
	width: 24px;
	padding: 0 0 3px 6px;
	border: 0;
	background: none;
	color: inherit;
}
.sub-menu {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	top: calc(100% - 8px);
	left: -24px;
	width: 260px;
	padding: 12px !important;
	border-top: 2px solid var(--opop-orange);
	background: var(--opop-black);
	box-shadow: var(--opop-shadow);
	transform: translateY(8px);
	transition: .2s ease;
}
.sub-menu a { display: block; padding: 10px 12px; font-size: 15px; }
.has-children:hover > .sub-menu,
.has-children:focus-within > .sub-menu,
.has-children.submenu-open > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: none;
}
.header-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.search-toggle {
	padding: 0;
	border: 0;
	background: none;
	color: #fff;
	font-size: 30px;
	line-height: 1;
}
.language-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border: 1px solid rgba(255,255,255,.8);
	border-radius: 8px;
	font-size: 15px;
}
.search-panel {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 20px;
	background: var(--opop-black);
	box-shadow: var(--opop-shadow);
}
.search-panel form {
	display: flex;
	gap: 10px;
	width: min(100%, 720px);
	margin: auto;
}
.search-panel label { position: absolute; clip: rect(0 0 0 0); }
.search-panel input {
	flex: 1;
	padding: 13px 16px;
	border: 1px solid #858585;
	border-radius: 10px;
	background: #fff;
}
.search-panel button {
	padding: 12px 22px;
	border: 0;
	border-radius: 10px;
	background: var(--opop-orange);
	color: #fff;
	font-weight: 700;
}
.mobile-menu-toggle { display: none; }

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	padding: 12px 30px;
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1.2;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.btn-primary { background: var(--opop-orange); color: #fff; }
.btn-primary:hover { background: #e86f19; }
.btn-secondary { background: var(--opop-black); color: #fff; }
.section-title {
	margin-bottom: 48px;
	font-size: clamp(34px, 4vw, 46px);
	font-weight: 400;
	text-align: center;
}
.section-action { margin: 46px 0 0; text-align: center; }

.home-hero {
	position: relative;
	min-height: 690px;
	overflow: hidden;
	color: #fff;
	background: #3a3a3a;
}
.home-hero picture,
.home-hero-image,
.home-hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.home-hero-image { object-fit: cover; object-position: center top; }
.home-hero-overlay {
	background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.05) 50%, rgba(0,0,0,.58) 100%);
}
.home-hero-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 690px;
	padding-top: 110px;
	padding-bottom: 54px;
}
.home-hero-title { max-width: 620px; margin-inline: auto; text-align: center; }
.home-hero-title p { margin-bottom: 2px; font-size: clamp(42px, 5vw, 66px); font-weight: 400; line-height: 1.1; }
.home-hero-title h1 { margin: 0 0 30px; color: var(--opop-orange); font-size: clamp(50px, 6vw, 76px); font-weight: 500; }
.home-hero-title .btn { min-width: 250px; }
.hero-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 58px;
}
.hero-features article { display: grid; grid-template-columns: 62px 1fr; gap: 20px; }
.hero-features img { width: 48px; max-height: 58px; object-fit: contain; filter: brightness(0) invert(1); }
.hero-features h2 { margin-bottom: 8px; font-size: 20px; }
.hero-features p { margin: 0; font-size: 17px; }
.section-light { background: var(--opop-light); }
.home-products { padding: 80px 0 88px; }
.home-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.home-category-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 186px;
	padding: 28px 24px 18px;
	border-radius: 20px;
	background: var(--opop-charcoal);
	color: #fff;
	box-shadow: var(--opop-shadow);
	transition: transform .2s ease, background .2s ease;
}
.home-category-card:hover { transform: translateY(-5px); background: #414141; }
.home-category-card img { width: 98px; height: 92px; margin-inline: auto; object-fit: contain; filter: brightness(0) invert(1); }
.home-category-card span { font-size: 18px; text-align: center; }
.home-benefits { padding: 76px 0 88px; background: #9b9b9b; color: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.benefit-grid article { text-align: left; }
.benefit-grid img { width: 74px; height: 74px; margin: 0 0 24px; object-fit: contain; filter: brightness(0) invert(1); }
.benefit-grid h3 { margin-bottom: 12px; font-size: 20px; }
.benefit-grid p { margin: 0; color: #fff; }

.page-hero {
	padding: 42px 0 28px;
	background: #fff;
	color: var(--opop-black);
}
.page-hero.compact { padding-bottom: 54px; }
.page-hero h1 { max-width: 900px; margin: 24px 0 14px; font-size: clamp(38px, 5vw, 54px); font-weight: 400; }
.page-hero > .opop-container > p:last-child { max-width: 800px; font-size: 20px; }
.page-hero .breadcrumbs { color: #777; }
.breadcrumbs {
	margin: 0;
	overflow: hidden;
	color: rgba(255,255,255,.64);
	font-size: 15px;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.breadcrumbs a:hover { color: #fff; }
.catalog-section { min-height: 50vh; padding: 64px 0 90px; background: var(--opop-light); }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.catalog-filters a {
	padding: 10px 18px;
	border: 1px solid var(--opop-orange);
	border-radius: 999px;
	color: var(--opop-orange);
	font-weight: 700;
}
.catalog-filters a:hover,
.catalog-filters a.active { background: var(--opop-orange); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(35,31,32,.12);
}
.product-card-image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1.14 / 1;
	padding: 22px;
	background: var(--opop-charcoal);
}
.product-card-image img { width: 100%; height: 100%; object-fit: contain; }
.product-card-body { flex: 1; padding: 24px; }
.energy-label {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 11px;
	border: 1px solid var(--opop-orange);
	color: var(--opop-orange);
	font-size: 14px;
}
.product-card h2 { margin-bottom: 12px; font-size: 25px; }
.product-card p { color: #5f5f5f; }
.text-link { color: var(--opop-orange); font-weight: 800; }

.product-hero {
	padding: 20px 0 82px;
	background: var(--opop-charcoal);
	color: #fff;
}
.product-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 72px;
	align-items: start;
	margin-top: 56px;
}
.product-gallery { min-width: 0; }
.gallery-stage {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
}
.gallery-stage img { width: 100%; max-height: 520px; object-fit: contain; }
.gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 6px;
	margin-top: 16px;
}
.gallery-thumbs button {
	aspect-ratio: 1;
	padding: 5px;
	overflow: hidden;
	border: 1px solid transparent;
	background: rgba(255,255,255,.06);
	opacity: .58;
}
.gallery-thumbs button.active { border-color: var(--opop-orange); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.color-variants { margin: 24px 0 0; padding: 0; border: 0; }
.color-variants legend { margin-bottom: 10px; font-weight: 700; }
.color-variant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.color-variant-card {
	position: relative;
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 9px;
	align-items: center;
	min-height: 62px;
	margin: 0 !important;
	padding: 7px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 6px;
	cursor: pointer;
}
.color-variant-card:has(input:checked) { border-color: var(--opop-orange); box-shadow: 0 0 0 1px var(--opop-orange); }
.color-variant-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.color-variant-card img { width: 46px; height: 46px; object-fit: cover; border-radius: 3px; }
.color-variant-card span { font-size: 11px; line-height: 1.25; }
.product-eyebrow {
	margin: 0 0 14px;
	font-size: 18px;
	text-transform: uppercase;
}
.product-summary h1 {
	margin: 0 0 24px;
	font-size: clamp(42px, 5vw, 62px);
	font-weight: 400;
}
.product-badges { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.energy-badge {
	position: relative;
	padding: 6px 24px 6px 16px;
	border: 1px solid #fff;
	font-size: 21px;
}
.energy-badge::after {
	content: "";
	position: absolute;
	top: 5px;
	right: -12px;
	width: 23px;
	height: 23px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	background: var(--opop-charcoal);
	transform: rotate(45deg);
}
.eco-badge { padding: 6px 0 6px 18px; border-left: 1px solid rgba(255,255,255,.55); }
.product-intro { margin-bottom: 25px; }
.product-intro ul { padding-left: 30px; }
.product-intro li::marker { color: var(--opop-orange); }
.product-summary label { display: block; margin-bottom: 8px; }
.variant-select {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 999px;
	background: transparent;
	color: #fff;
}
.variant-select option { color: #111; }
.product-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0; }
.product-email { text-decoration: underline; }
.product-tabs-section { padding: 58px 0 90px; background: var(--opop-light); }
.tab-buttons { display: flex; gap: 10px; margin-bottom: 28px; }
.tab-buttons button {
	min-height: 56px;
	padding: 10px 28px;
	border: 1px solid var(--opop-orange);
	border-radius: 999px;
	background: transparent;
	color: var(--opop-orange);
}
.tab-buttons button.active { background: var(--opop-orange); color: #fff; }
.tab-panel { padding: 44px; border-radius: 18px; background: #fff; }
.tab-panel[hidden] { display: none; }
.styled-content { overflow-wrap: anywhere; }
.styled-content > *:last-child { margin-bottom: 0; }
.styled-content h2, .styled-content h3 { margin-top: 38px; }
.styled-content a { color: var(--opop-orange); text-decoration: underline; }
.styled-content ul { padding-left: 28px; }
.styled-content li::marker { color: var(--opop-orange); }
.styled-content img { height: auto; }
.styled-content .table-responsive,
.styled-content table { width: 100%; }
.styled-content .table-responsive { overflow-x: auto; }
.styled-content table { border-collapse: collapse; font-size: 15px; }
.styled-content th, .styled-content td { padding: 11px 12px; border: 1px solid #d8d8d8; text-align: left; }
.styled-content th { background: var(--opop-charcoal); color: #fff; }
.styled-content tr:nth-child(even) td { background: #f4f5f6; }
.tab-panel[data-tab-panel="parameters"] table {
	overflow-wrap: normal;
	word-break: normal;
}
.tab-panel[data-tab-panel="parameters"] table th:first-child,
.tab-panel[data-tab-panel="parameters"] table td:first-child {
	width: 34% !important;
	min-width: 280px;
}
.tab-panel[data-tab-panel="parameters"] table th:nth-child(2),
.tab-panel[data-tab-panel="parameters"] table td:nth-child(2) {
	min-width: 62px;
}
.tab-panel[data-tab-panel="parameters"] table:has(tr > :nth-child(5)) {
	min-width: 1050px;
}
.styled-content .container-xl { width: 100%; margin-inline: auto; }
.styled-content .row {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 28px;
}
.styled-content [class*="col-"] { grid-column: span 12; min-width: 0; }
.styled-content .col-6 { grid-column: span 6; }
.styled-content .col-12 { grid-column: span 12; }
.styled-content .d-flex { display: flex; }
.styled-content .flex-wrap { flex-wrap: wrap; }
.styled-content .flex-column { flex-direction: column; }
.styled-content .justify-content-center { justify-content: center; }
.styled-content .justify-content-start { justify-content: flex-start; }
.styled-content .justify-content-between { justify-content: space-between; }
.styled-content .align-items-center { align-items: center; }
.styled-content .flex-grow-1 { flex-grow: 1; }
.styled-content .w-100 { width: 100%; }
.styled-content .h-100 { height: 100%; }
.styled-content .img-fluid { max-width: 100%; }
.styled-content .object-fit-contain { object-fit: contain; }
.styled-content .overflow-hidden { overflow: hidden; }
.styled-content .position-relative { position: relative; }
.styled-content .text-start { text-align: left; }
.styled-content .text-center { text-align: center; }
.styled-content .fw-bold { font-weight: 700; }
.styled-content .mt-0 { margin-top: 0; }
.styled-content .mb-2 { margin-bottom: 8px; }
.styled-content .mb-3 { margin-bottom: 16px; }
.styled-content .my-5 { margin-block: 48px; }
.styled-content .py-5 { padding-block: 48px; }
.styled-content .p-4 { padding: 24px; }
.styled-content .px-3 { padding-inline: 16px; }
.styled-content .pb-3 { padding-bottom: 16px; }
.styled-content .pt-3 { padding-top: 16px; }
.styled-content .me-3 { margin-right: 16px; }
.styled-content .mt-auto { margin-top: auto; }
.styled-content .border-top { border-top: 1px solid #d8d8d8; }
.styled-content .border-start { border-left: 1px solid currentColor; }
.styled-content .border-light { border-color: rgba(255,255,255,.45); }
.styled-content .shadow { box-shadow: 0 10px 26px rgba(0,0,0,.14); }
.styled-content .rounded { border-radius: 20px; }
.styled-content .bg-dark { background: var(--opop-charcoal); color: #fff; }
.styled-content .bg-primary { background: var(--opop-orange); color: #fff; }
.styled-content .bg-gray { background: #9b9b9b; color: #fff; }
.styled-content .text-white { color: #fff; }
.styled-content .text-dark { color: var(--opop-black); }
.styled-content .text-muted { color: #707070; }
.styled-content .text-sm { font-size: 15px; }
.styled-content .text-lg { font-size: 21px; }
.styled-content .gap-3 { gap: 16px; }
.styled-content .component-product-advantages > .container-xl > .row img { height: 92px; }
.styled-content .component-product-teaser-vertical {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
}
.styled-content .component-product-teaser-vertical > .position-relative {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 235px;
	padding: 18px;
	background: var(--opop-charcoal);
}
.styled-content .component-product-teaser-vertical > .position-relative img { width: 100%; max-height: 210px; object-fit: contain; }
.styled-content .component-product-teaser-vertical .btn { text-decoration: none; }
.styled-content .component-product-teaser-grid {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
}
.styled-content .component-product-teaser-grid .product-image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: 20px;
}
.styled-content .component-product-teaser-grid .product-image picture,
.styled-content .component-product-teaser-grid .product-image img {
	width: 100%;
	height: 100%;
}
.styled-content .component-product-teaser-grid .product-image img { object-fit: contain; }
.styled-content .component-product-teaser-grid .flex-grow-1 { background: #fff; }
.styled-content .component-product-teaser-grid h3 { margin: 0 0 8px; font-size: 21px; }
.styled-content .component-product-teaser-grid .btn {
	min-height: 42px;
	padding: 9px 20px;
	color: #fff;
	text-decoration: none;
}
.styled-content .component-product-teaser-grid .stretched-link::after,
.styled-content .component-product-teaser-vertical .stretched-link::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
}
.styled-content .component-product-teaser-grid,
.styled-content .component-product-teaser-vertical {
	cursor: pointer;
}
.styled-content .product-grade { position: relative; min-width: 62px; padding: 5px 14px 5px 8px; }
.styled-content .product-grade .svg { position: absolute; inset: 0; }
.styled-content .product-grade .svg svg { width: 100%; height: 100%; }
.styled-content .product-grade > span:last-child { position: relative; }
.styled-content .files { margin: 0; padding: 0; list-style: none; }
.styled-content .file {
	margin-bottom: 10px;
	padding: 16px 18px 16px 50px;
	border: 1px solid #dedede;
	border-radius: 8px;
	background: linear-gradient(90deg, var(--opop-orange) 0 36px, #fff 36px);
}
.styled-content .file a { font-weight: 700; }
.page-content { min-height: 50vh; padding: 64px 0 90px; background: #fff; }
.page-content.has-source-hero { padding-top: 0; }
.page-content .component-jumbotron-image {
	margin-inline: calc((100% - 100vw) / 2);
	padding: 54px max(24px, calc((100vw - var(--opop-container)) / 2)) 42px;
}
.page-content .component-jumbotron-image .row { align-items: center; }
.page-content .component-jumbotron-image img {
	width: 100%;
	max-height: 430px;
	object-fit: cover;
}
.page-content .light-wrapper {
	margin-inline: calc((100% - 100vw) / 2);
	padding: 100px 0 1px;
	background: #fff;
}
.page-content .light-wrapper .content-wrapper {
	width: min(calc(100% - 40px), var(--opop-container));
	margin: 0 auto 50px;
}
.page-content .paragraphs.full-width { display: flow-root; }
.page-content .obsah-par-left.heading {
	float: left;
	width: 35%;
	padding-right: 42px;
	font-size: 32px;
	font-weight: 300;
	line-height: 1.5;
}
.page-content .obsah-par-right {
	float: right;
	width: 65%;
	margin-bottom: 30px;
}
.page-content .zasady > div {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px;
}
.page-content .vlastnost-wrapper .nadpis {
	margin: 20px 0 30px;
	font-size: 32px;
	font-weight: 300;
	line-height: 1.1;
}
.page-content .vlastnost-wrapper .popis { margin-bottom: 30px; font-weight: 300; line-height: 1.4; }
.page-content .historie-wrapper { position: relative; padding: 0 0 42px 46px; }
.page-content .historie-wrapper::before {
	content: "";
	position: absolute;
	top: 12px;
	bottom: -12px;
	left: 15px;
	width: 2px;
	background: #dedede;
}
.page-content .hist-circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	border: 8px solid #fff;
	border-radius: 50%;
	background: var(--opop-orange);
	box-shadow: 0 0 0 1px #dedede;
}
.page-content .hist-data-text .heading { margin-bottom: 18px; font-size: 22px; font-weight: 300; }
.page-content .hist-data-image img { width: 100%; }
.page-content .contacts-block .view { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.page-content .contacts-block .title { grid-column: 1 / -1; margin: 36px 0 0; }
.page-content .contacts-block .kontakt-row {
	padding: 24px;
	border-top: 3px solid var(--opop-orange);
	background: #f4f5f6;
}
.page-content .contacts-block .views-field { margin-bottom: 11px; }
.page-content .contacts-block .views-field-field-nazev-pozice { font-weight: 800; }
.page-content .contacts-block ul { margin: 0; padding: 0; list-style: none; }
.page-content .component-breadcrumb,
.page-content header,
.page-content footer { display: none; }

.taxonomy-source-content {
	min-height: 50vh;
	padding: 30px 0 90px;
	background: var(--opop-light);
}
.taxonomy-source-content .container-xl {
	width: min(calc(100% - 40px), var(--opop-container));
	margin-inline: auto;
}
.taxonomy-source-content .component-page-header { margin: 0 0 54px; }
.taxonomy-source-content .component-page-header h1 {
	margin: 24px 0 26px;
	font-size: clamp(40px, 4vw, 54px);
	font-weight: 400;
}
.taxonomy-source-content .component-product-list { margin: 52px 0 76px; }
.taxonomy-source-content .component-product-list .row { row-gap: 28px; }
.taxonomy-source-content .component-heading { margin-bottom: 44px; }
.taxonomy-source-content .component-heading h2 { margin: 0; font-size: clamp(32px, 3vw, 44px); font-weight: 400; }
.taxonomy-source-content .component-advantages {
	margin-inline: calc((100% - 100vw) / 2);
	padding: 74px 0;
}
.taxonomy-source-content .component-advantages .row { row-gap: 42px; }
.taxonomy-source-content .component-advantages img { width: 92px; height: 92px; object-fit: contain; }
.taxonomy-source-content .component-advantages h3 { margin: 20px 0 10px; font-size: 24px; }
.taxonomy-source-content .component-content { margin: 72px 0; }
.taxonomy-source-content .component-content h3 { font-size: 27px; }
.taxonomy-source-content .component-content p,
.taxonomy-source-content .component-content li { max-width: 1080px; }
.opop-contact-form {
	margin-top: 64px;
	padding: 40px;
	border-radius: 18px;
	background: #f4f4f4;
}
.opop-contact-form .forminator-ui.forminator-custom-form {
	margin-top: 28px;
}
.opop-contact-form .forminator-ui .forminator-input,
.opop-contact-form .forminator-ui .forminator-textarea {
	border-radius: 6px !important;
}
.opop-contact-form .forminator-ui .forminator-button-submit {
	padding: 13px 28px !important;
	border-radius: 999px !important;
	background: var(--opop-orange) !important;
	font-weight: 800 !important;
}
.opop-modal[hidden] { display: none; }
.opop-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 22px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.68); }
.modal-dialog {
	position: relative;
	width: min(100%, 650px);
	padding: 48px;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.modal-dialog h2 { font-size: 34px; }
.modal-close {
	position: absolute;
	top: 14px;
	right: 18px;
	border: 0;
	background: none;
	font-size: 32px;
}
.error-page { min-height: 70vh; padding: 110px 0; text-align: center; }
.error-code { margin: 0; color: var(--opop-orange); font-size: 110px; font-weight: 800; line-height: 1; }
.error-page h1 { font-size: 48px; }
.site-footer { background: #4a4a4a; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 80px; padding-top: 64px; padding-bottom: 56px; }
.footer-grid h2 { margin-bottom: 18px; font-size: 20px; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--opop-orange); }
.footer-brand p { max-width: 320px; margin-top: 24px; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	color: #4a4a4a;
	font-weight: 900;
	text-transform: lowercase;
}
.footer-social a:hover { background: var(--opop-orange); color: #fff; }
.footer-bottom { padding: 20px 0 58px; color: rgba(255,255,255,.6); font-size: 14px; }

/* CookieYes keeps consent functional; these rules reproduce the reference layout. */
body .cky-consent-container {
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	max-width: none !important;
}
body .cky-consent-container .cky-consent-bar {
	display: grid !important;
	grid-template-columns: minmax(280px, 510px) minmax(360px, 520px) !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 44px !important;
	max-width: none !important;
	padding: 26px 40px !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: 0 -5px 18px rgba(0,0,0,.14) !important;
}
body .cky-consent-bar .cky-title,
body .cky-consent-bar .cky-notice-des { text-align: center !important; }
body .cky-consent-bar .cky-title { margin-bottom: 8px !important; font-size: 17px !important; }
body .cky-consent-bar .cky-notice-des { font-size: 13px !important; line-height: 1.45 !important; }
body .cky-consent-bar .cky-notice-btn-wrapper {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
	margin-top: 0 !important;
}
body .cky-consent-bar .cky-btn {
	min-height: 46px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 3px !important;
	font-weight: 700 !important;
}
body .cky-consent-bar .cky-btn-accept { grid-column: 2; grid-row: 1; background: var(--opop-orange) !important; color: #fff !important; }
body .cky-consent-bar .cky-btn-customize { grid-column: 1; grid-row: 1; background: #e8edf0 !important; color: #3f5366 !important; }
body .cky-consent-bar .cky-btn-reject { display: none !important; }

@media (min-width: 576px) {
	.styled-content .col-sm-6 { grid-column: span 6; }
}

@media (min-width: 768px) {
	.styled-content .col-md-4 { grid-column: span 4; }
	.styled-content .col-md-6 { grid-column: span 6; }
	.styled-content .col-md-8 { grid-column: span 8; }
}

@media (min-width: 992px) {
	.styled-content .col-lg-3 { grid-column: span 3; }
	.styled-content .col-lg-4 { grid-column: span 4; }
	.styled-content .col-lg-6 { grid-column: span 6; }
	.styled-content .col-lg-8 { grid-column: span 8; }
}

@media (max-width: 1024px) {
	.opop-container { width: min(calc(100% - 36px), var(--opop-container)); }
	.header-inner { grid-template-columns: 130px 1fr 130px; }
	.opop-nav-list { gap: 18px; }
	.hero-features { gap: 24px; }
	.hero-features article { grid-template-columns: 48px 1fr; gap: 12px; }
	.home-category-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.product-hero-grid { gap: 38px; }
	.gallery-stage { min-height: 400px; }
	.tab-buttons { overflow-x: auto; padding-bottom: 8px; }
	.tab-buttons button { flex: 0 0 auto; }
}

@media (max-width: 767px) {
	body { font-size: 16px; }
	.opop-container { width: min(calc(100% - 28px), var(--opop-container)); }
	.site-header { min-height: 68px; }
	.header-inner { display: flex; justify-content: space-between; min-height: 66px; }
	.site-logo { width: 108px; }
	.mobile-menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		order: 3;
		width: 38px;
		padding: 7px;
		border: 0;
		background: transparent;
	}
	.mobile-menu-toggle span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; background: #fff; }
	.primary-navigation {
		position: absolute;
		display: none;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 10px 20px 22px;
		background: var(--opop-black);
		border-top: 1px solid rgba(255,255,255,.1);
	}
	.primary-navigation.open { display: block; }
	.opop-nav-list { display: block; }
	.opop-nav-list > li { display: grid; grid-template-columns: 1fr 44px; }
	.opop-nav-list > li > a { padding: 13px 0; }
	.sub-menu {
		position: static;
		display: none;
		visibility: visible;
		opacity: 1;
		grid-column: 1 / -1;
		width: 100%;
		padding: 0 0 8px 14px !important;
		border: 0;
		box-shadow: none;
		transform: none;
	}
	.has-children.submenu-open > .sub-menu { display: block; }
	.header-actions { margin-left: auto; }
	.language-pill { display: none; }
	.search-toggle { font-size: 28px; }
	.home-hero { min-height: 560px; }
	.home-hero-image { object-fit: cover; object-position: center center; }
	.home-hero-content { min-height: 560px; padding-top: 76px; padding-bottom: 26px; }
	.home-hero-title p { font-size: 39px; }
	.home-hero-title h1 { font-size: 54px; }
	.hero-features { display: none; }
	.hero-features article { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.2); }
	.hero-features p { font-size: 15px; }
	.home-products, .home-benefits { padding: 58px 0 64px; }
	.section-title { margin-bottom: 32px; }
	.home-category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.home-category-card { min-height: 155px; padding: 20px 12px 14px; }
	.home-category-card img { width: 75px; height: 75px; }
	.home-category-card span { font-size: 15px; }
	.benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 24px; }
	.benefit-grid img { width: 58px; height: 58px; margin-bottom: 18px; }
	.benefit-grid h3 { font-size: 17px; }
	.benefit-grid p { font-size: 15px; }
	.page-hero { padding: 32px 0 48px; }
	.page-hero h1 { margin-top: 26px; font-size: 42px; }
	.product-grid { grid-template-columns: 1fr; }
	.product-hero { padding-bottom: 54px; }
	.product-hero-grid { grid-template-columns: 1fr; margin-top: 32px; }
	.product-gallery { order: 2; }
	.product-summary { order: 1; }
	.product-summary h1 { font-size: 40px; }
	.gallery-stage { min-height: 330px; }
	.gallery-thumbs { grid-template-columns: repeat(5, 72px); overflow-x: auto; }
	.color-variant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-actions { display: grid; grid-template-columns: 1fr; }
	.tab-buttons { display: grid; grid-template-columns: repeat(2, minmax(170px, 1fr)); }
	.tab-buttons button { min-height: 52px; padding: 9px 18px; }
	.tab-panel { padding: 24px 18px; }
	.page-content .component-jumbotron-image {
		margin-inline: -14px;
		padding: 40px 14px 28px;
	}
	.page-content .light-wrapper { margin-inline: -14px; padding-top: 58px; }
	.page-content .light-wrapper .content-wrapper { width: calc(100% - 28px); }
	.page-content .obsah-par-left.heading,
	.page-content .obsah-par-right { float: none; width: 100%; padding-right: 0; }
	.page-content .obsah-par-left.heading { margin-bottom: 34px; font-size: 29px; }
	.page-content .zasady > div { grid-template-columns: 1fr; gap: 24px; }
	.page-content .vlastnost-wrapper .nadpis { margin-bottom: 16px; font-size: 27px; }
	.taxonomy-source-content { padding-top: 18px; }
	.taxonomy-source-content .container-xl { width: calc(100% - 28px); }
	.taxonomy-source-content .component-product-list { margin: 40px 0 56px; }
	.taxonomy-source-content .component-advantages { padding: 54px 0; }
	.page-content .contacts-block .view { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 48px; }
	body .cky-consent-container .cky-consent-bar {
		display: block !important;
		padding: 24px 16px 18px !important;
	}
	body .cky-consent-bar .cky-notice-btn-wrapper { margin-top: 18px !important; }
	.modal-dialog { padding: 38px 22px 28px; }
	.modal-dialog h2 { font-size: 28px; }
}

@media (max-width: 380px) {
	.home-category-grid { grid-template-columns: 1fr; }
	.tab-buttons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
