/* Rieker shell + homepage theme
   Keeps catalog/PDP selectors functional via compatible IDs/classes */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,500;0,8..60,600;1,8..60,500&display=swap');

:root {
	--rk-bg: #F7F5F2;
	--rk-bg-elevated: #FFFFFF;
	--rk-ink: #1A1A1A;
	--rk-ink-muted: #6B6560;
	--rk-line: #E6E2DC;
	--rk-red: #C8102E;
	--rk-red-dark: #A00D24;
	--rk-header-h: 96px;
	--rk-header-top-h: 40px;
	--rk-radius: 2px;
	--rk-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--rk-font: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--rk-serif: 'Source Serif 4', Georgia, serif;
	--rk-shadow-sm: 0 1px 0 rgba(26, 26, 26, 0.06);
	--rk-shadow-md: 0 12px 40px rgba(26, 26, 26, 0.08);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body#system-content {
	margin: 0;
	font-family: var(--rk-font);
	font-size: 15px;
	line-height: 1.5;
	color: var(--rk-ink);
	background: var(--rk-bg);
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

a {
	color: var(--rk-ink);
	text-decoration: none;
	transition: color 0.2s var(--rk-ease);
}

a:hover {
	color: var(--rk-red);
}

img {
	max-width: 100%;
	height: auto;
}

.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow-x: hidden;
}

/* ——— Header ——— */
body#system-content header.site-header,
header.site-header {
	position: sticky !important;
	top: 0 !important;
	z-index: 1000;
	height: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: background 0.35s var(--rk-ease), box-shadow 0.35s var(--rk-ease), border-color 0.35s var(--rk-ease);
	animation: rkHeaderIn 0.55s var(--rk-ease) both;
}

header.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.97);
	border-bottom-color: var(--rk-line);
	box-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
}

header.site-header.is-compact .header-top {
	max-height: 0;
	opacity: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
	border: 0;
}

header.site-header.is-compact .header-main {
	min-height: 76px;
}

header.site-header.is-compact .header-logo img,
header.site-header.is-compact .hm-logo img {
	width: 96px;
}

.header-inner {
	width: 100%;
}

.header-top {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 40px;
	max-height: 44px;
	padding: 0 40px !important;
	background: var(--rk-ink) !important;
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.02em;
	overflow: hidden;
	transition: max-height 0.35s var(--rk-ease), opacity 0.3s var(--rk-ease), padding 0.35s var(--rk-ease);
}

body#system-content header.site-header .official-notice,
header.site-header .official-notice,
header.site-header .rk-header-notice {
	position: static !important;
	float: none !important;
	width: auto !important;
	max-width: 52%;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 13px !important;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 1;
}

.header-top a {
	color: rgba(255, 255, 255, 0.78);
}

.header-top a:hover {
	color: #fff;
}

.header-top nav,
.header-top .header-utils {
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.header-top nav ul,
.header-utils ul {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 4px 16px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	float: none !important;
}

.header-top nav ul li,
.header-utils ul li,
body#system-content .header-top nav ul li {
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.header-top nav ul li a,
.header-utils ul li a,
body#system-content .header-top nav ul li a {
	display: inline-block;
	padding: 0 !important;
	font-size: 12px !important;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78) !important;
	text-decoration: none !important;
	transition: color 0.2s var(--rk-ease);
}

.header-main {
	display: none;
	align-items: center;
	gap: 36px;
	min-height: 96px;
	padding: 0 40px;
	transition: min-height 0.35s var(--rk-ease);
}

.header-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	line-height: 0;
	z-index: 2;
}

.header-logo a {
	display: block;
	line-height: 0;
}

.header-logo img {
	width: 124px;
	height: auto;
	display: block;
	transition: width 0.35s var(--rk-ease), transform 0.35s var(--rk-ease);
}

.header-logo:hover img {
	transform: scale(1.03);
}

.header-catalog {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
}

.header-catalog ul.cmsnav,
body#system-content .header-catalog ul.cmsnav {
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 2px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	float: none !important;
	width: auto !important;
}

.header-catalog ul.cmsnav:after {
	display: none !important;
	content: none !important;
}

.header-catalog ul.cmsnav > li,
body#system-content .header-catalog ul.cmsnav > li {
	float: none !important;
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
	width: auto !important;
	border: 0 !important;
}

.header-catalog ul.cmsnav > li > a,
body#system-content .header-catalog ul.cmsnav > li > a {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	padding: 12px 18px !important;
	margin: 0 !important;
	font-size: 15px !important;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rk-ink) !important;
	text-decoration: none !important;
	border: 0 !important;
	border-radius: 0;
	background: transparent;
	transition: color 0.25s var(--rk-ease);
}

.header-catalog ul.cmsnav > li > a::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 1.5px;
	background: var(--rk-red);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s var(--rk-ease);
}

.header-catalog ul.cmsnav > li > a:hover::after,
.header-catalog ul.cmsnav > li > a.root-item-selected::after,
.header-catalog ul.cmsnav > li.item-selected > a::after {
	transform: scaleX(1);
}

.header-catalog ul.cmsnav > li > a:hover,
.header-catalog ul.cmsnav > li > a:visited,
.header-catalog ul.cmsnav > li > a.root-item-selected,
.header-catalog ul.cmsnav > li.item-selected > a {
	color: var(--rk-red) !important;
	text-decoration: none !important;
	background: transparent !important;
}

.header-catalog ul.cmsnav > li > a.sale-item {
	color: var(--rk-red) !important;
}

.header-catalog .sale-ico-menu {
	display: none !important;
}

.header-catalog ul.submenu,
body#system-content .header-catalog ul.submenu {
	display: block !important;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	min-width: 210px;
	margin: 0 !important;
	padding: 10px 0 !important;
	background: #fff;
	border: 1px solid var(--rk-line);
	box-shadow: var(--rk-shadow-md);
	z-index: 80;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.25s var(--rk-ease), transform 0.25s var(--rk-ease), visibility 0.25s;
	filter: none !important;
}

.header-catalog ul.cmsnav > li:hover > ul.submenu,
.header-catalog ul.cmsnav > li:focus-within > ul.submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.header-catalog ul.submenu > li {
	display: block !important;
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.header-catalog ul.submenu a {
	display: block !important;
	padding: 9px 18px !important;
	font-size: 13px !important;
	font-weight: 500;
	text-transform: none !important;
	letter-spacing: 0;
	color: var(--rk-ink) !important;
	text-decoration: none !important;
	transition: color 0.2s var(--rk-ease), background 0.2s var(--rk-ease), padding-left 0.2s var(--rk-ease);
}

.header-catalog ul.submenu a:hover {
	color: var(--rk-red) !important;
	background: var(--rk-bg);
	padding-left: 22px !important;
}

.header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	flex: 0 0 auto;
	margin-left: auto;
}

.header-search {
	flex: 0 0 auto;
}

.header-search-form {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	width: 210px;
	transition: width 0.35s var(--rk-ease);
}

.header-search-form:focus-within {
	width: 280px;
}

.header-search .form-control,
.header-search input[type="text"] {
	width: 100% !important;
	height: 48px !important;
	padding: 0 48px 0 18px !important;
	border: 1px solid var(--rk-line) !important;
	border-radius: 999px !important;
	background: var(--rk-bg) !important;
	font-family: var(--rk-font) !important;
	font-size: 15px !important;
	color: var(--rk-ink) !important;
	box-shadow: none !important;
	outline: none !important;
	transition: border-color 0.25s var(--rk-ease), background 0.25s var(--rk-ease), box-shadow 0.25s var(--rk-ease);
}

.header-search .form-control:focus,
.header-search input[type="text"]:focus {
	border-color: rgba(200, 16, 46, 0.35) !important;
	background: #fff !important;
	box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08) !important;
}

.header-search-submit {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	color: var(--rk-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.65;
	transition: opacity 0.2s var(--rk-ease), color 0.2s var(--rk-ease);
}

.header-search-submit:hover {
	opacity: 1;
	color: var(--rk-red);
}

.header-search-submit svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-phone {
	display: none;
	text-align: right;
	line-height: 1.25;
	min-width: 168px;
}

.header-phone a {
	display: block;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--rk-ink) !important;
	white-space: nowrap;
	text-decoration: none !important;
	transition: color 0.2s var(--rk-ease);
}

.header-phone a.phone-secondary {
	margin-top: 2px;
	font-size: 14px;
	font-weight: 600;
	color: var(--rk-ink-muted) !important;
}

.header-phone a:hover,
.header-phone a.phone-secondary:hover {
	color: var(--rk-red) !important;
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 4px;
}

.header-icon-btn,
.header-messenger {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--rk-ink);
	cursor: pointer;
	transition: background 0.25s var(--rk-ease), color 0.25s var(--rk-ease), transform 0.25s var(--rk-ease);
}

.header-icon-btn:hover,
.header-messenger:hover .messenger-toggle,
.header-messenger.is-open .messenger-toggle {
	background: var(--rk-bg);
	color: var(--rk-red);
}

.header-icon-btn:active,
.wish-list-top a:active,
.small-basket a:active {
	transform: scale(0.94);
}

.header-icon-btn svg,
.header-messenger svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body#system-content #wish-list-top,
body#system-content #small-basket,
.wish-list-top,
.small-basket {
	position: static !important;
	float: none !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	top: auto !important;
	right: auto !important;
	background: none !important;
	background-image: none !important;
}

body#system-content #wish-list-top a,
body#system-content #small-basket a,
.wish-list-top a,
.small-basket a {
	position: relative !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 48px !important;
	height: 48px !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 50%;
	background: transparent !important;
	background-image: none !important;
	text-decoration: none !important;
	transition: background 0.25s var(--rk-ease), transform 0.25s var(--rk-ease);
}

body#system-content #wish-list-top a:hover,
body#system-content #small-basket a:hover,
.wish-list-top a:hover,
.small-basket a:hover {
	background: var(--rk-bg) !important;
}

body#system-content #wish-list-top a::before,
body#system-content #small-basket a::before,
.wish-list-top a::before,
.small-basket a::before {
	content: '';
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

body#system-content #wish-list-top a::before,
.wish-list-top a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A1A1A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7' d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78L12 21.23l8.84-8.84a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
}

body#system-content #small-basket a::before,
.small-basket a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A1A1A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7' d='M6 6h15l-1.5 9h-12zM6 6L5 3H2M9 20a1 1 0 100-2 1 1 0 000 2zm9 0a1 1 0 100-2 1 1 0 000 2z'/%3E%3C/svg%3E");
}

body#system-content .wish-list-quant,
body#system-content .small-basket-quant,
.wish-list-quant,
.small-basket-quant {
	position: absolute !important;
	top: 2px !important;
	right: 0 !important;
	left: auto !important;
	min-width: 17px !important;
	width: auto !important;
	height: 17px !important;
	padding: 0 4px !important;
	margin: 0 !important;
	border-radius: 999px !important;
	background: var(--rk-red) !important;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	line-height: 17px !important;
	text-align: center !important;
	display: inline-block !important;
	transform: scale(0.95);
	animation: rkBadgePop 0.35s var(--rk-ease) both;
}

.header-messenger-panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: 248px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--rk-line);
	box-shadow: var(--rk-shadow-md);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.25s var(--rk-ease), transform 0.25s var(--rk-ease), visibility 0.25s;
}

.header-messenger.is-open .header-messenger-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.header-messenger-panel .mess-label {
	margin: 0 0 10px;
	font-size: 12px;
	color: var(--rk-ink-muted);
}

.header-messenger-panel .mess-icons {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.header-messenger-panel .mess-icons a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--rk-line);
	border-radius: 50%;
	transition: border-color 0.2s var(--rk-ease), transform 0.2s var(--rk-ease);
}

.header-messenger-panel .mess-icons a:hover {
	border-color: var(--rk-ink);
	transform: translateY(-2px);
}

.header-messenger-panel .mess-icons img {
	width: 18px;
	height: 18px;
}

.header-messenger-panel .mess-phone {
	font-size: 13px;
	font-weight: 600;
	color: var(--rk-ink);
}

.header-messenger-panel .mess-phone span {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 400;
	color: var(--rk-ink-muted);
}

.header-mobile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 64px;
	padding: 0 14px;
	background: transparent;
	position: relative;
}

.header-mobile .hm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--rk-ink);
	cursor: pointer;
	padding: 0;
	transition: background 0.25s var(--rk-ease), transform 0.25s var(--rk-ease);
}

.header-mobile .hm-btn:hover {
	background: var(--rk-bg);
}

.header-mobile .hm-btn:active {
	transform: scale(0.94);
}

.header-mobile .hm-btn svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-mobile .hm-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0;
}

.header-mobile .hm-logo img {
	width: 84px;
	height: auto;
	display: block;
	transition: width 0.35s var(--rk-ease);
}

.header-mobile .hm-actions {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-left: auto;
}

.header-mobile .wish-list-top,
.header-mobile .small-basket {
	display: inline-flex;
}

.header-mobile-search {
	max-height: 0;
	overflow: hidden;
	padding: 0 14px;
	opacity: 0;
	background: transparent;
	transition: max-height 0.35s var(--rk-ease), opacity 0.3s var(--rk-ease), padding 0.35s var(--rk-ease);
}

.header-mobile-search.is-open {
	max-height: 72px;
	opacity: 1;
	padding: 0 14px 14px;
}

.header-mobile-search .form-control {
	width: 100%;
	height: 44px;
	padding: 0 16px;
	border: 1px solid var(--rk-line);
	border-radius: 999px;
	background: var(--rk-bg);
	font-family: var(--rk-font);
	font-size: 15px;
}

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(26, 26, 26, 0.42);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s var(--rk-ease), visibility 0.35s;
	z-index: 1100;
	backdrop-filter: blur(2px);
}

.nav-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.nav-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: min(88vw, 340px);
	height: 100%;
	background: #fff;
	transform: translateX(-105%);
	transition: transform 0.4s var(--rk-ease);
	z-index: 1200;
	overflow-y: auto;
	padding: 22px 22px 40px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	box-shadow: 16px 0 40px rgba(26, 26, 26, 0.12);
}

.nav-drawer.is-open {
	transform: translateX(0);
}

.nav-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-drawer-head img {
	width: 90px;
}

.nav-drawer-close {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--rk-bg);
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	color: var(--rk-ink);
	transition: background 0.2s var(--rk-ease), transform 0.2s var(--rk-ease);
}

.nav-drawer-close:hover {
	background: #ebe7e1;
	transform: rotate(90deg);
}

.nav-drawer .cmsnav.mobile,
.nav-drawer ul.cmsnav {
	display: block !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.nav-drawer ul.cmsnav > li {
	float: none !important;
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: 1px solid var(--rk-line);
	opacity: 0;
	transform: translateX(-10px);
}

.nav-drawer.is-open ul.cmsnav > li {
	animation: rkDrawerItem 0.4s var(--rk-ease) both;
}

.nav-drawer.is-open ul.cmsnav > li:nth-child(1) { animation-delay: 0.05s; }
.nav-drawer.is-open ul.cmsnav > li:nth-child(2) { animation-delay: 0.1s; }
.nav-drawer.is-open ul.cmsnav > li:nth-child(3) { animation-delay: 0.15s; }
.nav-drawer.is-open ul.cmsnav > li:nth-child(4) { animation-delay: 0.2s; }
.nav-drawer.is-open ul.cmsnav > li:nth-child(5) { animation-delay: 0.25s; }

.nav-drawer ul.cmsnav > li > a {
	display: block !important;
	padding: 15px 0 !important;
	margin: 0 !important;
	font-size: 15px !important;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--rk-ink) !important;
	border: 0 !important;
}

.nav-drawer ul.cmsnav > li > a.sale-item {
	color: var(--rk-red) !important;
}

.nav-drawer ul.submenu {
	position: static !important;
	display: block !important;
	padding: 0 0 12px 8px !important;
	background: transparent !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	box-shadow: none !important;
	border: 0 !important;
	pointer-events: auto !important;
}

.nav-drawer ul.submenu a {
	display: block !important;
	padding: 8px 0 !important;
	font-size: 14px !important;
	text-transform: none !important;
	color: var(--rk-ink-muted) !important;
}

.nav-drawer-phones {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nav-drawer-phones a {
	font-size: 18px;
	font-weight: 700;
}

.nav-drawer-mess .mess-icons {
	display: flex;
	gap: 10px;
	margin: 8px 0;
}

.nav-drawer-mess .mess-icons img {
	width: 28px;
	height: 28px;
}

.nav-drawer-mess .mess-note {
	font-size: 12px;
	color: var(--rk-ink-muted);
}

.nav-drawer .filter-top {
	display: block !important;
	position: static !important;
	background: transparent;
	padding: 0;
}

@keyframes rkHeaderIn {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rkBadgePop {
	from {
		transform: scale(0.4);
		opacity: 0;
	}
	to {
		transform: scale(0.95);
		opacity: 1;
	}
}

@keyframes rkDrawerItem {
	from {
		opacity: 0;
		transform: translateX(-12px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Breadcrumbs */
.breadcrumbs {
	padding: 12px 28px 0;
	margin: 0;
	background: var(--rk-bg);
}

.breadcrumbs ul.items {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	color: var(--rk-ink-muted);
}

/* Content shell */
#content {
	flex: 1 1 auto;
	background: var(--rk-bg);
	padding: 0;
	float: none !important;
	width: 100% !important;
}

#content.main-content {
	padding: 0;
	background: var(--rk-bg);
}

#content .static-block {
	max-width: 1280px;
	margin: 16px auto 32px;
	padding: 24px 28px;
	background: var(--rk-bg-elevated);
	font-size: 16px;
	float: none !important;
	width: auto !important;
}

#content .static-block h1,
#content .static-block h2,
h1, h2 {
	font-family: var(--rk-font);
	font-weight: 600;
	letter-spacing: -0.02em;
}

h1.text-page,
h2.text-page {
	color: var(--rk-red);
}

/* ——— Homepage ——— */
.home-page {
	width: 100%;
	padding: 0;
	margin: 0;
}

.home-hero {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #e8e4de;
	animation: rkFadeIn 0.8s var(--rk-ease) both;
}

.home-hero #banner,
.home-hero.col-xs-12,
.home-page > section.col-xs-12 {
	float: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.home-hero .innova-slider,
.home-hero .slick-slider,
.home-hero img {
	display: block;
	width: 100%;
}

.home-categories {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
	margin: 0;
	padding: 0;
	background: var(--rk-ink);
	animation: rkRise 0.7s var(--rk-ease) 0.1s both;
}

.home-categories .item,
.home-categories .home-cat-wrap {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
	background: transparent !important;
	position: relative;
}

#two-banners.home-categories .item h2,
.home-categories .home-cat-panel h2 {
	margin: 0 0 8px;
	font-family: var(--rk-serif);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 500;
	font-style: italic;
	color: #fff;
	transform: none !important;
	position: static !important;
	left: auto !important;
	top: auto !important;
	white-space: normal;
	z-index: auto;
}

#two-banners.home-categories .item a:hover,
.home-categories .home-cat-panel:hover {
	opacity: 1;
	filter: none;
}

#two-banners.home-categories .item .arrow,
.home-cat-panel .arrow {
	display: none !important;
}

.home-cat-panel {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 280px;
	background: #2a2a2a;
	color: #fff;
}

.home-cat-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 280px;
	transition: transform 0.7s var(--rk-ease);
}

.home-cat-panel:hover img {
	transform: scale(1.04);
}

.home-cat-panel .home-cat-copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px 24px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
	color: #fff;
	z-index: 2;
}

.home-cat-panel .home-cat-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
}

.home-cat-panel .home-cat-cta::after {
	content: '';
	width: 28px;
	height: 1px;
	background: #fff;
	transition: width 0.3s var(--rk-ease);
}

.home-cat-panel:hover .home-cat-cta::after {
	width: 44px;
}

.home-trust {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	margin: 0;
	padding: 0;
	background: var(--rk-line);
	border-top: 1px solid var(--rk-line);
	border-bottom: 1px solid var(--rk-line);
}

.home-trust-item {
	background: var(--rk-bg-elevated);
	padding: 36px 28px;
	text-align: center;
}

.home-trust-item strong {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.home-trust-item span {
	font-size: 15px;
	color: var(--rk-ink-muted);
	line-height: 1.5;
}

.home-trust-item a {
	color: var(--rk-red);
	font-weight: 700;
	font-size: 16px;
}

.home-products {
	padding: 64px 24px 36px;
	background: var(--rk-bg-elevated);
	animation: rkRise 0.7s var(--rk-ease) both;
}

.home-section-head {
	max-width: 1280px;
	margin: 0 auto 40px;
	text-align: center;
}

.home-section-head h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	letter-spacing: -0.03em;
}

.home-section-head p {
	margin: 0 auto;
	max-width: 520px;
	color: var(--rk-ink-muted);
	font-size: 17px;
	line-height: 1.5;
}

.home-products #main-products {
	margin: 0;
	padding: 0;
	background: transparent;
	float: none !important;
	width: 100% !important;
}

.home-products-carousel {
	max-width: 1280px;
	margin: 0 auto;
}

.home-product-card {
	text-align: center;
	padding: 12px 8px 24px;
}

.home-product-card > a {
	display: block;
	color: var(--rk-ink);
}

.home-product-media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	margin-bottom: 16px;
	background: linear-gradient(180deg, #faf9f7 0%, #f3f0eb 100%);
	overflow: hidden;
}

.home-product-card img {
	display: block;
	margin: 0 auto;
	max-height: 250px;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
	transition: transform 0.45s var(--rk-ease);
}

.home-product-card:hover img {
	transform: translateY(-6px) scale(1.02);
}

.home-product-card .home-product-article {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--rk-ink);
}

.home-product-card .home-product-price {
	margin: 0 0 14px;
}

.home-product-card .list-price {
	font-size: 22px !important;
	font-weight: 700;
	color: var(--rk-red);
}

.home-product-card .list-price.black {
	color: var(--rk-ink) !important;
}

.home-product-card .list-old-price {
	font-size: 14px;
	color: var(--rk-ink-muted);
}

.home-product-card .bx_stick_disc.main {
	left: 16px;
	top: 12px;
}

.home-product-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px;
	border: 1px solid var(--rk-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rk-ink) !important;
	transition: background 0.25s var(--rk-ease), color 0.25s var(--rk-ease), border-color 0.25s var(--rk-ease);
}

.home-product-link:hover {
	background: var(--rk-red);
	border-color: var(--rk-red);
	color: #fff !important;
}

.home-products-carousel .owl-nav {
	position: absolute;
	top: 35%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.home-products-carousel .owl-nav button {
	pointer-events: auto;
	width: 48px;
	height: 48px;
	margin: 0 -8px;
	border: 1px solid var(--rk-line) !important;
	border-radius: 50% !important;
	background: #fff !important;
	color: var(--rk-ink) !important;
	font-size: 22px !important;
	line-height: 1;
	box-shadow: var(--rk-shadow-sm);
	transition: background 0.2s var(--rk-ease), color 0.2s var(--rk-ease), border-color 0.2s var(--rk-ease);
}

.home-products-carousel .owl-nav button:hover {
	background: var(--rk-ink) !important;
	border-color: var(--rk-ink) !important;
	color: #fff !important;
}

.home-products-carousel .owl-dots {
	margin-top: 18px;
	text-align: center;
}

.home-products-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	max-width: 1280px;
	margin: 36px auto 0;
	padding-top: 8px;
}

.home-ghost-link,
.home-solid-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.25s var(--rk-ease), color 0.25s var(--rk-ease), border-color 0.25s var(--rk-ease), transform 0.25s var(--rk-ease);
}

.home-ghost-link {
	border: 1px solid var(--rk-ink);
	color: var(--rk-ink) !important;
	background: transparent;
}

.home-ghost-link:hover {
	background: var(--rk-ink);
	color: #fff !important;
	transform: translateY(-1px);
}

.home-solid-link {
	border: 1px solid var(--rk-red);
	background: var(--rk-red);
	color: #fff !important;
}

.home-solid-link:hover {
	background: var(--rk-red-dark);
	border-color: var(--rk-red-dark);
	transform: translateY(-1px);
}

.home-news,
.home-articles {
	padding: 64px 24px;
	max-width: 1280px;
	margin: 0 auto;
}

.home-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.home-news-card {
	background: var(--rk-bg-elevated);
	overflow: hidden;
	transition: transform 0.35s var(--rk-ease), box-shadow 0.35s var(--rk-ease);
}

.home-news-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rk-shadow-md);
}

.home-news-card a {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: var(--rk-ink);
}

.home-news-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #ebe7e1;
}

.home-news-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s var(--rk-ease);
}

.home-news-card:hover .home-news-media img {
	transform: scale(1.04);
}

.home-news-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px 22px 26px;
	flex: 1;
}

.home-news-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rk-red);
}

.home-news-body h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.home-news-body p {
	margin: 0;
	color: var(--rk-ink-muted);
	font-size: 15px;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-news-more {
	margin-top: auto;
	padding-top: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rk-ink);
}

.home-news-card:hover .home-news-more {
	color: var(--rk-red);
}

.home-video-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.home-video-card {
	display: grid;
	grid-template-columns: 1fr;
	background: var(--rk-bg-elevated);
	overflow: hidden;
	color: var(--rk-ink);
	transition: transform 0.35s var(--rk-ease), box-shadow 0.35s var(--rk-ease);
}

.home-video-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rk-shadow-md);
}

.home-video-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #1a1a1a;
}

.home-video-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0.92;
	transition: transform 0.6s var(--rk-ease), opacity 0.35s var(--rk-ease);
}

.home-video-card:hover .home-video-media img {
	transform: scale(1.04);
	opacity: 1;
}

.home-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	height: 64px;
	margin: -32px 0 0 -32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-video-play::before {
	content: '';
	position: absolute;
	left: 26px;
	top: 22px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent var(--rk-red);
}

.home-video-copy {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px;
}

.home-video-copy h3 {
	margin: 0;
	font-family: var(--rk-serif);
	font-size: 26px;
	font-weight: 500;
	font-style: italic;
	letter-spacing: -0.01em;
}

.home-video-copy p {
	margin: 0;
	color: var(--rk-ink-muted);
	font-size: 15px;
	line-height: 1.5;
}

.home-video-cta {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rk-red);
}

/* ——— Footer ——— */
.site-footer {
	margin-top: auto;
	background: var(--rk-ink);
	color: rgba(255, 255, 255, 0.85);
	padding: 48px 24px 28px;
	float: none !important;
	width: 100% !important;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
	color: #fff;
}

.footer-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.footer-brand img {
	width: 120px;
	height: auto;
	margin-bottom: 16px;
	opacity: 0.95;
}

.footer-brand p {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
	max-width: 260px;
}

.footer-col .title_footer_menu {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
}

.footer-col nav ul,
.site-footer nav.footer_item_wrap ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-col nav ul li,
.site-footer nav.footer_item_wrap ul li {
	float: none;
	margin: 0;
	padding: 0 0 8px;
}

.footer-col nav ul li a {
	font-size: 14px;
}

.footer-contacts .tel a {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
}

.footer-contacts .addr {
	margin-top: 12px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.footer-messengers .mess-icons {
	display: flex;
	gap: 10px;
	margin: 10px 0;
}

.footer-messengers .mess-icons img {
	width: 28px;
	height: 28px;
}

.footer-bottom {
	max-width: 1280px;
	margin: 36px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
}

/* Animations */
@keyframes rkFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes rkRise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.rk-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--rk-ease), transform 0.6s var(--rk-ease);
}

.rk-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Desktop */
@media (min-width: 1025px) {
	.header-top,
	.header-main {
		display: flex;
	}

	.header-mobile,
	.header-mobile-search {
		display: none !important;
	}

	.header-phone {
		display: block;
	}

	.home-categories {
		grid-template-columns: 1fr 1fr;
	}

	.home-cat-panel,
	.home-cat-panel img {
		min-height: 420px;
	}

	.home-trust {
		grid-template-columns: repeat(4, 1fr);
	}

	.home-products {
		padding: 80px 40px 48px;
	}

	.home-news-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.home-video-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.home-video-card {
		grid-template-columns: 1.1fr 0.9fr;
		align-items: stretch;
	}

	.home-video-media {
		aspect-ratio: auto;
		min-height: 100%;
	}

	.home-video-copy {
		justify-content: center;
		padding: 32px;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
		gap: 40px;
	}
}

@media (min-width: 1025px) and (max-width: 1240px) {
	.header-main {
		gap: 18px;
		padding: 0 24px;
	}

	.header-phone a {
		font-size: 15px;
	}

	.header-phone a.phone-secondary {
		font-size: 13px;
	}

	.header-search-form {
		width: 160px;
	}

	.header-catalog ul.cmsnav > li > a {
		padding: 12px 12px !important;
		font-size: 13px !important;
		letter-spacing: 0.04em;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.header-mobile {
		display: flex;
	}

	.home-categories {
		grid-template-columns: 1fr 1fr;
	}

	.home-trust {
		grid-template-columns: 1fr 1fr;
	}

	.home-news-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1024px) {
	.breadcrumbs.mobile-hide {
		display: none !important;
	}

	#content .static-block {
		margin: 12px 12px 24px;
		padding: 16px;
	}
}

/* Soft overrides for legacy conflicting rules inside themed pages */
body#system-content header.site-header {
	/* styled in header block */
}

body#system-content footer.site-footer {
	background: var(--rk-ink);
	margin-top: 0;
}

body#system-content .tel-header,
body#system-content .top-messenger {
	float: none;
	margin: 0;
	text-align: left;
	font-size: inherit;
	line-height: inherit;
}

/* Neutralize legacy mobile chrome that targeted old header */
@media screen and (max-width: 1024px) {
	body#system-content div.mobile_menu {
		display: none !important;
	}

	body#system-content header.site-header {
		height: auto !important;
		margin: 0 !important;
		padding-top: 0 !important;
	}

	body#system-content #articles.home-articles,
	body#system-content .home-articles {
		display: block !important;
	}

	body#system-content .header-catalog ul.cmsnav > li,
	body#system-content .nav-drawer ul.cmsnav > li {
		width: 100%;
		float: none;
	}

	body#system-content .nav-drawer ul.cmsnav > li > a {
		font-size: 15px;
		margin-bottom: 0;
		border-bottom: none;
		padding: 14px 0;
	}

	body#system-content .nav-drawer .filter-top {
		position: static !important;
		width: auto !important;
		height: auto !important;
		margin: 0 !important;
		box-shadow: none !important;
		overflow: visible !important;
	}

	body#system-content #content {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	body#system-content .product-item-news {
		margin-left: 0;
	}
}

/* Catalog / inner pages: keep product grid readable under new shell */
body#system-content #content .products-list {
	max-width: 1280px;
	margin: 0 auto;
}

body#system-content #content .product-item-news .list-price {
	font-family: var(--rk-font);
}

body#system-content .bx_filter {
	font-family: var(--rk-font);
}

@media (min-width: 1025px) {
	body#system-content .header-main #cmsnav,
	body#system-content .header-catalog {
		display: block;
		float: none;
		margin: 0;
	}

	body#system-content .header-catalog ul.cmsnav > li {
		width: auto;
		float: none;
	}

	body#system-content .header-catalog ul.cmsnav > li > a {
		font-size: 15px;
		margin-bottom: 0;
		border-bottom: none;
	}
}
