:root {
	--rpm-red: #d71920;
	--rpm-red-dark: #a90f16;
	--rpm-blue: #1d4ed8;
	--rpm-green: #15803d;
	--rpm-orange: #f97316;
	--rpm-ink: #111827;
	--rpm-muted: #64748b;
	--rpm-line: #e5e7eb;
	--rpm-soft: #f6f8fb;
	--rpm-panel: #ffffff;
	--rpm-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	--rpm-radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--rpm-soft);
	color: var(--rpm-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
	letter-spacing: 0;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	white-space: nowrap;
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	clip: auto;
	width: auto;
	height: auto;
	border-radius: 6px;
	background: #fff;
	padding: 10px 12px;
}

.rpm-container {
	width: min(100% - 32px, 1440px);
	margin-inline: auto;
}

.rpm-site-header {
	position: relative;
	z-index: 20;
	background: #fff;
	border-bottom: 1px solid var(--rpm-line);
}

.rpm-topbar {
	border-bottom: 1px solid #eef1f5;
	background: #f8fafc;
	color: #475569;
	font-size: 13px;
}

.rpm-topbar__inner,
.rpm-brand-row,
.rpm-mainnav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.rpm-topbar__inner {
	min-height: 34px;
}

.rpm-topbar nav,
.rpm-header-actions,
.rpm-primary-nav ul {
	display: flex;
	align-items: center;
	gap: 18px;
}

.rpm-topbar a:hover,
.rpm-primary-nav a:hover {
	color: var(--rpm-red);
}

.rpm-brand-row {
	min-height: 92px;
}

.rpm-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	min-width: 230px;
}

.rpm-brand-mark {
	display: inline-grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border: 3px solid var(--rpm-red);
	border-radius: 50%;
	color: var(--rpm-red);
	font-size: 18px;
	font-weight: 900;
}

.rpm-brand strong {
	display: block;
	font-size: 25px;
	line-height: 1.05;
}

.rpm-brand small {
	display: block;
	color: var(--rpm-muted);
	font-size: 13px;
	margin-top: 5px;
}

.rpm-search {
	display: grid;
	grid-template-columns: 150px minmax(160px, 1fr) 108px;
	flex: 1 1 720px;
	min-width: 260px;
	max-width: 760px;
	border: 2px solid var(--rpm-red);
	border-radius: 7px;
	background: #fff;
	overflow: hidden;
}

.rpm-search select,
.rpm-search input {
	min-width: 0;
	border: 0;
	border-right: 1px solid #eef1f5;
	background: #fff;
	padding: 12px 14px;
}

.rpm-search button {
	border: 0;
	background: var(--rpm-red);
	color: #fff;
	cursor: pointer;
	font-weight: 800;
}

.rpm-header-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0f172a;
	font-weight: 800;
	white-space: nowrap;
}

.rpm-action-icon {
	display: inline-grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid #dbe2ea;
	border-radius: 50%;
	color: var(--rpm-red);
	font-size: 11px;
	font-weight: 900;
}

.rpm-cart-link em {
	position: absolute;
	top: -8px;
	left: 24px;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--rpm-red);
	color: #fff;
	font-size: 11px;
	font-style: normal;
	line-height: 18px;
	text-align: center;
}

.rpm-mainnav-wrap {
	border-top: 1px solid #eef1f5;
}

.rpm-mainnav {
	position: relative;
	min-height: 54px;
	justify-content: flex-start;
}

.rpm-category-button {
	align-self: stretch;
	min-width: 210px;
	border: 0;
	background: var(--rpm-red);
	color: #fff;
	cursor: pointer;
	font-weight: 900;
	padding: 0 18px;
	text-align: left;
}

.rpm-category-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 50;
	display: none;
	width: min(340px, calc(100vw - 32px));
	border: 1px solid var(--rpm-line);
	border-radius: 0 0 var(--rpm-radius) var(--rpm-radius);
	background: #fff;
	box-shadow: var(--rpm-shadow);
}

.rpm-categories-open .rpm-category-menu {
	display: block;
}

.rpm-category-menu .rpm-category-rail {
	max-height: min(68vh, 560px);
	overflow-y: auto;
}

.rpm-primary-nav ul {
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rpm-primary-nav a {
	display: block;
	font-size: 15px;
	font-weight: 800;
	padding: 16px 6px;
}

.rpm-hero {
	background: #fff;
	padding: 18px 0 12px;
}

.rpm-hero__grid {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr) 320px;
	gap: 16px;
	align-items: stretch;
}

.rpm-hero__categories,
.rpm-hero__main,
.rpm-promo-card,
.rpm-category-tile,
.rpm-product-card,
.rpm-widget,
.rpm-content-shell,
.rpm-contact-card,
.rpm-contact-side section,
.rpm-topic-band,
.rpm-ranking-board,
.rpm-empty-state,
.rpm-post-card,
.rpm-article,
.rpm-product-rfq {
	border: 1px solid var(--rpm-line);
	border-radius: var(--rpm-radius);
	background: #fff;
}

.rpm-hero__categories {
	overflow: hidden;
}

.rpm-panel-title {
	background: var(--rpm-red);
	color: #fff;
	font-weight: 900;
	padding: 14px 16px;
}

.rpm-category-rail {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.rpm-category-rail a {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 10px 14px;
}

.rpm-category-rail a:hover {
	background: #fff5f5;
	color: var(--rpm-red);
}

.rpm-mini-icon {
	display: inline-grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid #dde4ee;
	border-radius: 6px;
	background: #f8fafc;
	color: #334155;
	font-size: 10px;
	font-weight: 900;
}

.rpm-category-rail strong,
.rpm-category-rail small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rpm-category-rail strong {
	font-size: 14px;
}

.rpm-category-rail small {
	color: var(--rpm-muted);
	font-size: 12px;
}

.rpm-hero__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
	min-height: 390px;
	overflow: hidden;
	background: #eaf4ff;
}

.rpm-hero__copy {
	align-self: center;
	padding: 44px 28px 44px 54px;
}

.rpm-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--rpm-red);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.rpm-hero h1,
.rpm-page-hero h1,
.rpm-section-head h2,
.rpm-rfq-band h2,
.rpm-newsletter-band h2,
.rpm-topic-band h2,
.rpm-article h1 {
	margin: 8px 0 12px;
	color: #10233f;
	font-weight: 900;
	line-height: 1.08;
}

.rpm-hero h1 {
	font-size: clamp(34px, 3.4vw, 50px);
	max-width: 520px;
	overflow-wrap: break-word;
}

.rpm-hero p,
.rpm-page-hero p,
.rpm-section-head p,
.rpm-rfq-band p,
.rpm-newsletter-band p,
.rpm-topic-band p {
	color: #475569;
	margin: 0;
}

.rpm-hero__actions,
.rpm-product-actions,
.rpm-page-hero__inner,
.rpm-section-head,
.rpm-topic-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.rpm-hero__actions {
	justify-content: flex-start;
	margin-top: 24px;
}

.rpm-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.rpm-product-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 900;
	padding: 10px 16px;
	text-decoration: none;
}

.rpm-button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.rpm-product-actions .button {
	background: var(--rpm-red);
	color: #fff;
}

.rpm-button--ghost {
	border-color: #cbd5e1;
	background: #fff;
	color: #0f172a;
}

.rpm-service-points {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}

.rpm-service-points li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(29, 78, 216, 0.12);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.72);
	color: #1e3a8a;
	font-size: 13px;
	font-weight: 800;
	min-height: 38px;
	padding: 8px 12px;
	text-align: center;
	white-space: nowrap;
}

.rpm-hero__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
}

.rpm-hero__media img {
	width: 100%;
	max-height: 350px;
	object-fit: contain;
}

.rpm-promo-stack {
	display: grid;
	gap: 10px;
}

.rpm-promo-card {
	display: grid;
	align-content: center;
	min-height: 120px;
	padding: 18px;
	overflow: hidden;
}

.rpm-promo-card strong {
	color: #10233f;
	font-size: 20px;
}

.rpm-promo-card span {
	color: #475569;
	margin: 3px 0 10px;
}

.rpm-promo-card em {
	color: #0f172a;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.rpm-promo-card--red {
	background: #fff1f2;
}

.rpm-promo-card--blue {
	background: #eff6ff;
}

.rpm-promo-card--green {
	background: #f0fdf4;
}

.rpm-section {
	padding: 18px 0;
}

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

.rpm-section-head h2,
.rpm-rfq-band h2,
.rpm-newsletter-band h2,
.rpm-topic-band h2 {
	font-size: 28px;
}

.rpm-section-head > a {
	color: var(--rpm-muted);
	font-size: 14px;
	font-weight: 800;
}

.rpm-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.rpm-category-tile {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-height: 98px;
	padding: 12px;
}

.rpm-category-tile:hover {
	border-color: #fca5a5;
	box-shadow: var(--rpm-shadow);
	transform: translateY(-1px);
}

.rpm-category-tile__media {
	display: grid;
	aspect-ratio: 1;
	place-items: center;
	border-radius: 7px;
	background: #f8fafc;
}

.rpm-category-placeholder {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: var(--rpm-red);
	font-size: 12px;
	font-weight: 900;
}

.rpm-category-visual {
	position: relative;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 7px;
	background: linear-gradient(145deg, #ffffff, #eef4ff);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.rpm-category-visual::before,
.rpm-category-visual::after {
	content: "";
	position: absolute;
	display: block;
	background: currentColor;
	opacity: 0.92;
}

.rpm-visual-mark {
	position: relative;
	z-index: 1;
	border-radius: 999px;
	background: #fff;
	color: currentColor;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	padding: 6px 7px;
	box-shadow: 0 6px 12px rgba(15, 23, 42, 0.1);
}

.rpm-visual--fpv,
.rpm-visual--motor,
.rpm-visual--frame,
.rpm-visual--camera {
	color: #d71920;
}

.rpm-visual--drone,
.rpm-visual--battery,
.rpm-visual--charger,
.rpm-visual--radio {
	color: #1d4ed8;
}

.rpm-visual--agri,
.rpm-visual--pump,
.rpm-visual--nozzle {
	color: #15803d;
}

.rpm-visual--car,
.rpm-visual--car-motor,
.rpm-visual--shock {
	color: #f97316;
}

.rpm-visual--boat,
.rpm-visual--boat-prop,
.rpm-visual--esc {
	color: #0f766e;
}

.rpm-visual--tool,
.rpm-visual--driver,
.rpm-visual--propeller {
	color: #475569;
}

.rpm-category-visual::before {
	width: 38px;
	height: 12px;
	border-radius: 999px;
	transform: rotate(-22deg);
}

.rpm-category-visual::after {
	width: 12px;
	height: 38px;
	border-radius: 999px;
	transform: rotate(22deg);
}

.rpm-category-tile strong,
.rpm-category-tile small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rpm-category-tile strong {
	font-size: 15px;
	line-height: 1.2;
}

.rpm-category-tile small {
	color: var(--rpm-muted);
	font-size: 12px;
	margin-top: 4px;
}

.rpm-product-grid,
.woocommerce ul.products.rpm-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rpm-products-section--wide .rpm-product-grid {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.rpm-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.rpm-product-card:hover {
	border-color: #fca5a5;
	box-shadow: var(--rpm-shadow);
	transform: translateY(-1px);
}

.rpm-product-card__media {
	position: relative;
	display: grid;
	aspect-ratio: 1.18;
	place-items: center;
	background: #f8fafc;
	padding: 12px;
}

.rpm-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rpm-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 1;
	border-radius: 5px;
	background: var(--rpm-red);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	padding: 4px 6px;
}

.rpm-product-placeholder {
	display: grid;
	width: 72%;
	aspect-ratio: 1;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #dbe2ea;
	color: var(--rpm-red);
	font-size: 24px;
	font-weight: 900;
}

.rpm-product-visual {
	position: relative;
	display: grid;
	width: min(82%, 220px);
	aspect-ratio: 1.08;
	place-items: center;
	border-radius: 8px;
	background:
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 44%, rgba(255, 255, 255, 0) 45%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(226, 232, 240, 0.72));
	color: #d71920;
	overflow: hidden;
}

.rpm-product-visual::before,
.rpm-product-visual::after,
.rpm-product-visual__object {
	content: "";
	position: absolute;
	display: block;
}

.rpm-product-visual__object {
	width: 38%;
	height: 38%;
	border: 12px solid currentColor;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.rpm-product-visual::before {
	width: 72%;
	height: 13%;
	border-radius: 999px;
	background: currentColor;
	transform: rotate(24deg);
}

.rpm-product-visual::after {
	width: 72%;
	height: 13%;
	border-radius: 999px;
	background: currentColor;
	transform: rotate(-24deg);
	opacity: 0.86;
}

.rpm-product-visual__label {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	z-index: 2;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.92);
	color: #0f172a;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.15;
	padding: 7px 8px;
	text-align: center;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.rpm-visual--battery .rpm-product-visual__object,
.rpm-visual--charger .rpm-product-visual__object,
.rpm-visual--esc .rpm-product-visual__object,
.rpm-visual--radio .rpm-product-visual__object,
.rpm-visual--driver .rpm-product-visual__object {
	width: 58%;
	height: 34%;
	border-width: 8px;
	border-radius: 8px;
}

.rpm-visual--battery::before {
	width: 12%;
	height: 16%;
	right: 14%;
	left: auto;
	border-radius: 3px;
	transform: none;
}

.rpm-visual--battery::after {
	width: 54%;
	height: 7%;
	top: 43%;
	transform: none;
}

.rpm-visual--frame .rpm-product-visual__object {
	width: 52%;
	height: 52%;
	border-width: 10px;
	border-radius: 8px;
	transform: rotate(45deg);
}

.rpm-visual--frame::before,
.rpm-visual--frame::after {
	width: 76%;
	height: 8%;
}

.rpm-visual--camera .rpm-product-visual__object {
	width: 46%;
	height: 32%;
	border-width: 8px;
	border-radius: 10px;
}

.rpm-visual--camera::before,
.rpm-visual--camera::after,
.rpm-visual--charger::before,
.rpm-visual--charger::after,
.rpm-visual--radio::before,
.rpm-visual--radio::after,
.rpm-visual--tool::before,
.rpm-visual--tool::after,
.rpm-visual--driver::before,
.rpm-visual--driver::after {
	width: 0;
	height: 0;
}

.rpm-visual--propeller .rpm-product-visual__object,
.rpm-visual--boat-prop .rpm-product-visual__object {
	width: 22%;
	height: 22%;
	border-width: 7px;
}

.rpm-visual--pump .rpm-product-visual__object,
.rpm-visual--car-motor .rpm-product-visual__object {
	width: 56%;
	height: 36%;
	border-width: 9px;
	border-radius: 999px;
}

.rpm-visual--nozzle .rpm-product-visual__object {
	width: 34%;
	height: 48%;
	border-width: 8px;
	border-radius: 8px 8px 22px 22px;
}

.rpm-visual--shock .rpm-product-visual__object {
	width: 22%;
	height: 64%;
	border-width: 8px;
	border-radius: 999px;
}

.rpm-visual--shock::before,
.rpm-visual--shock::after {
	width: 64%;
	height: 8%;
}

.rpm-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 12px;
}

.rpm-product-meta {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	color: var(--rpm-muted);
	font-size: 12px;
}

.rpm-product-meta span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rpm-product-card h3 {
	margin: 8px 0;
	font-size: 15px;
	line-height: 1.25;
}

.rpm-product-card h3 a {
	display: -webkit-box;
	overflow: hidden;
	min-height: 38px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rpm-product-price {
	margin-top: auto;
	color: var(--rpm-red);
	font-size: 18px;
	font-weight: 900;
}

.rpm-product-actions {
	margin-top: 10px;
}

.rpm-product-actions .button {
	flex: 1;
	min-height: 36px;
	font-size: 13px;
	padding: 8px 10px;
}

.rpm-card-link {
	color: var(--rpm-blue);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.rpm-rfq-band,
.rpm-newsletter-band {
	padding: 22px 0;
}

.rpm-rfq-band__grid,
.rpm-newsletter-band__grid,
.rpm-contact-grid,
.rpm-shop-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	gap: 22px;
	align-items: start;
}

.rpm-rfq-band__grid {
	align-items: center;
}

.rpm-rfq-band .rpm-container,
.rpm-newsletter-band__grid {
	border-radius: var(--rpm-radius);
	background: #10233f;
	color: #fff;
	padding: 28px;
}

.rpm-rfq-band p,
.rpm-newsletter-band p,
.rpm-rfq-band .rpm-kicker,
.rpm-newsletter-band .rpm-kicker {
	color: #dbeafe;
}

.rpm-rfq-band h2,
.rpm-newsletter-band h2 {
	color: #fff;
}

.rpm-page-hero {
	background: #fff;
	border-bottom: 1px solid var(--rpm-line);
	padding: 28px 0;
}

.rpm-page-hero__inner h1 {
	font-size: 40px;
}

.rpm-content-shell,
.rpm-article-shell,
.rpm-search-page .rpm-container,
.rpm-ranking .rpm-container {
	margin-top: 24px;
	margin-bottom: 34px;
}

.rpm-content-shell {
	padding: 24px;
}

.rpm-entry-head h1 {
	margin-top: 0;
	font-size: 36px;
}

.rpm-entry-content > *:first-child {
	margin-top: 0;
}

.rpm-entry-content a {
	color: var(--rpm-blue);
	font-weight: 800;
}

.rpm-shop-layout {
	grid-template-columns: minmax(320px, 340px) minmax(0, 1fr);
	align-items: start;
	padding: 24px 0 36px;
}

.rpm-shop-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	align-content: start;
	min-width: 0;
	width: 100%;
}

.rpm-shop-sidebar > *,
.rpm-shop-sidebar .rpm-widget {
	min-width: 0;
	max-width: 100%;
	width: 100%;
}

.rpm-shop-sidebar .rpm-category-rail a,
.rpm-shop-sidebar .wp-block-search,
.rpm-shop-sidebar .wp-block-search__inside-wrapper {
	min-width: 0;
	max-width: 100%;
}

.rpm-shop-sidebar .wp-block-search__inside-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.rpm-shop-sidebar input,
.rpm-shop-sidebar select,
.rpm-shop-sidebar textarea {
	min-width: 0;
	max-width: 100%;
}

.rpm-shop-results {
	min-width: 0;
	width: 100%;
}

.woocommerce .rpm-shop-results ul.products.rpm-product-grid {
	clear: none;
	display: grid;
	float: none;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	width: 100%;
}

.woocommerce .rpm-shop-results ul.products.rpm-product-grid::before,
.woocommerce .rpm-shop-results ul.products.rpm-product-grid::after {
	display: none;
}

.woocommerce .rpm-shop-results ul.products.rpm-product-grid li.product {
	float: none;
	margin: 0;
	width: auto;
}

.woocommerce .rpm-shop-results .woocommerce-no-products-found {
	min-width: 0;
	width: 100%;
}

.rpm-widget {
	padding: 16px;
}

.rpm-widget-title {
	margin: 0 0 12px;
	font-size: 18px;
}

.rpm-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.woocommerce-result-count,
.woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select {
	border: 1px solid #d9dee8;
	border-radius: 6px;
	padding: 9px 10px;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 24px;
	text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	border: 0;
	margin: 0;
	padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border: 1px solid #d9dee8;
	border-radius: 6px;
	background: #fff;
	color: #10233f;
	font-weight: 900;
	padding: 0 12px;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: var(--rpm-red);
	background: var(--rpm-red);
	color: #fff;
}

.rpm-single-product {
	padding: 24px 0 36px;
}

.rpm-product-rfq {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
	gap: 20px;
	margin-top: 24px;
	padding: 22px;
}

.rpm-contact-grid {
	padding: 24px 0 36px;
}

.rpm-contact-card,
.rpm-contact-side section {
	padding: 22px;
}

.rpm-contact-side {
	display: grid;
	gap: 16px;
}

.rpm-contact-side h2,
.rpm-contact-card h2 {
	margin-top: 0;
}

.rpm-contact-side ul {
	padding-left: 20px;
}

.rpm-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 24px 0 36px;
}

.rpm-post-card {
	overflow: hidden;
}

.rpm-post-card__media {
	display: block;
	aspect-ratio: 1.62;
	background: #eff6ff;
}

.rpm-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rpm-post-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--rpm-blue);
	font-weight: 900;
}

.rpm-post-card__body {
	padding: 16px;
}

.rpm-post-card h2 {
	font-size: 20px;
	line-height: 1.25;
	margin: 6px 0 8px;
}

.rpm-post-card p {
	color: var(--rpm-muted);
	margin: 0 0 12px;
}

.rpm-post-meta {
	color: var(--rpm-muted);
	font-size: 13px;
	font-weight: 700;
}

.rpm-home-guides,
.rpm-home-article-sections,
.rpm-brand-partners {
	background: #f8fafc;
}

.rpm-article-category-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.rpm-article-category {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	gap: 2px 10px;
	min-height: 76px;
	padding: 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rpm-article-category:hover,
.rpm-home-article:hover,
.rpm-partner-brand:hover {
	border-color: #fca5a5;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.rpm-article-category span {
	grid-row: 1 / span 2;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 7px;
	background: #eff6ff;
	color: var(--rpm-blue);
	font-size: 12px;
	font-weight: 900;
}

.rpm-article-category strong,
.rpm-partner-brand strong {
	overflow: hidden;
	color: #0f172a;
	font-size: 14px;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rpm-article-category small,
.rpm-partner-brand small {
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
}

.rpm-home-article-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.rpm-home-article-section {
	min-width: 0;
}

.rpm-home-article-section__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.rpm-home-article-section__head h3 {
	margin: 0;
	color: #10233f;
	font-size: 18px;
	line-height: 1.2;
}

.rpm-home-article-section__head p {
	margin: 3px 0 0;
	color: #64748b;
	font-size: 12px;
}

.rpm-home-article-section__head a {
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.rpm-home-article-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.rpm-home-article {
	display: grid;
	min-width: 0;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rpm-home-article__media {
	display: grid;
	aspect-ratio: 1.55;
	place-items: center;
	background: linear-gradient(135deg, #eff6ff, #fef2f2);
	color: #d71920;
	font-size: 13px;
	font-weight: 900;
}

.rpm-home-article__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rpm-home-article__body {
	display: grid;
	gap: 5px;
	padding: 10px;
}

.rpm-home-article__body small {
	overflow: hidden;
	color: #64748b;
	font-size: 11px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rpm-home-article__body strong {
	display: -webkit-box;
	overflow: hidden;
	min-height: 34px;
	color: #0f172a;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rpm-home-article__body em {
	display: -webkit-box;
	overflow: hidden;
	color: #64748b;
	font-size: 12px;
	font-style: normal;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rpm-partner-brand-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 8px;
}

.rpm-partner-brand {
	display: grid;
	min-width: 0;
	gap: 5px;
	justify-items: center;
	padding: 14px 10px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	text-align: center;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rpm-partner-brand span {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: #0f172a;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
}

.rpm-article {
	max-width: 860px;
	margin: 0 auto 36px;
	padding: 28px;
}

.rpm-article-head h1 {
	font-size: 42px;
}

.rpm-article-image {
	margin: 20px 0;
}

.rpm-article-image img {
	border-radius: 8px;
}

.rpm-comments {
	max-width: 860px;
	margin: 0 auto 36px;
	border-top: 1px solid var(--rpm-line);
	padding-top: 20px;
}

.rpm-search-again {
	margin-bottom: 18px;
}

.rpm-search-again .rpm-search {
	max-width: none;
}

.rpm-empty-state {
	padding: 34px;
	text-align: center;
}

.rpm-empty-state .rpm-search {
	margin: 18px auto 0;
}

.rpm-ranking-board {
	padding: 20px;
}

.rpm-topic-band {
	margin-top: 20px;
	padding: 24px;
}

.rpm-newsletter-band {
	background: #fff;
}

.rpm-newsletter-band__grid {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.rpm-site-footer {
	background: #0f172a;
	color: #cbd5e1;
	padding-top: 34px;
}

.rpm-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.rpm-brand--footer .rpm-brand-mark {
	border-color: #fff;
	color: #fff;
}

.rpm-footer-brand p {
	max-width: 330px;
	color: #cbd5e1;
}

.rpm-footer-title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 16px;
}

.rpm-footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rpm-footer-widget li {
	margin: 8px 0;
}

.rpm-footer-widget a:hover,
.rpm-footer-bottom a:hover {
	color: #fff;
}

.rpm-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 26px;
	min-height: 62px;
}

.rpm-footer-bottom ul {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rpm-form-notice {
	width: min(100% - 32px, 1440px);
	margin: 16px auto 0;
	border-radius: 8px;
	padding: 12px 14px;
	font-weight: 800;
}

.rpm-form-notice--success {
	background: #ecfdf5;
	color: #047857;
}

.rpm-form-notice--error {
	background: #fff1f2;
	color: #be123c;
}

.woocommerce div.product {
	background: #fff;
	border: 1px solid var(--rpm-line);
	border-radius: 8px;
	padding: 22px;
}

.woocommerce div.product .product_title {
	color: #10233f;
	font-size: 34px;
	font-weight: 900;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--rpm-red);
	font-size: 28px;
	font-weight: 900;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.woocommerce .quantity .qty {
	width: 82px;
	border: 1px solid #d9dee8;
	border-radius: 6px;
	padding: 10px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 8px;
	background: #fff;
}

.rpm-market-home {
	background: #f5f7fb;
}

.rpm-market-hero {
	background: #fff;
	padding: 14px 0 8px;
}

.rpm-market-hero__grid {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr) 320px;
	grid-template-areas:
		"categories banner deals"
		"categories hot hot";
	gap: 12px;
	align-items: start;
}

.rpm-market-categories,
.rpm-market-banner,
.rpm-deal-card,
.rpm-hot-category,
.rpm-shelf-card,
.rpm-compact-product {
	border: 1px solid var(--rpm-line);
	border-radius: 8px;
	background: #fff;
}

.rpm-market-categories {
	grid-area: categories;
	overflow: hidden;
}

.rpm-market-categories .rpm-panel-title {
	padding: 12px 16px;
}

.rpm-market-categories .rpm-category-rail {
	padding: 6px 0;
}

.rpm-market-categories .rpm-category-rail a {
	position: relative;
	padding: 7px 28px 7px 14px;
}

.rpm-market-categories .rpm-mini-icon {
	width: 30px;
	height: 30px;
	font-size: 9px;
}

.rpm-market-categories .rpm-category-rail strong {
	font-size: 13px;
}

.rpm-market-categories .rpm-category-rail small {
	font-size: 11px;
}

.rpm-market-categories .rpm-category-rail a::after {
	content: "›";
	position: absolute;
	right: 12px;
	color: #94a3b8;
	font-size: 20px;
	line-height: 1;
}

.rpm-market-banner {
	position: relative;
	grid-area: banner;
	min-height: 318px;
	overflow: hidden;
	background-position: center;
	background-size: cover;
}

.rpm-market-banner__copy {
	position: relative;
	z-index: 1;
	max-width: 560px;
	padding: 34px 40px 26px;
}

.rpm-market-banner h1 {
	max-width: 520px;
	margin: 10px 0 12px;
	color: #10233f;
	font-size: clamp(38px, 4vw, 56px);
	font-weight: 900;
	line-height: 1.04;
}

.rpm-market-banner p {
	max-width: 470px;
	color: #243b5a;
	font-weight: 600;
}

.rpm-market-banner .rpm-hero__actions {
	margin-top: 18px;
}

.rpm-market-banner .rpm-button {
	min-height: 42px;
	padding: 10px 18px;
	white-space: nowrap;
}

.rpm-market-banner .rpm-service-points {
	margin-top: 18px;
}

.rpm-market-banner .rpm-service-points li {
	min-width: 112px;
	border-color: rgba(29, 78, 216, 0.16);
	background: rgba(255, 255, 255, 0.82);
	color: #1e3a8a;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.rpm-market-dots {
	position: absolute;
	right: 0;
	bottom: 14px;
	left: 0;
	display: flex;
	justify-content: center;
	gap: 9px;
}

.rpm-market-dots span {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.rpm-market-dots span:first-child {
	background: var(--rpm-red);
}

.rpm-deal-stack {
	grid-area: deals;
	display: grid;
	gap: 10px;
}

.rpm-deal-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 118px;
	gap: 10px;
	align-items: center;
	min-height: 99px;
	overflow: hidden;
	padding: 15px 16px;
}

.rpm-deal-card strong,
.rpm-deal-card small,
.rpm-deal-card em {
	display: block;
}

.rpm-deal-card strong {
	color: #10233f;
	font-size: 20px;
	line-height: 1.15;
}

.rpm-deal-card small {
	color: #475569;
	font-size: 14px;
	margin-top: 4px;
}

.rpm-deal-card em {
	color: #8a1a1a;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	margin-top: 12px;
	text-transform: uppercase;
}

.rpm-deal-card .rpm-product-visual {
	width: 112px;
	aspect-ratio: 1.25;
	background: rgba(255, 255, 255, 0.55);
}

.rpm-deal-card .rpm-product-visual__label {
	display: none;
}

.rpm-deal-card--red {
	background: linear-gradient(105deg, #fff7f7, #fee2e2);
}

.rpm-deal-card--blue {
	background: linear-gradient(105deg, #eff6ff, #dbeafe);
}

.rpm-deal-card--green {
	background: linear-gradient(105deg, #f0fdf4, #dcfce7);
}

.rpm-market-band {
	padding: 9px 0;
}

.rpm-hero-hot-row {
	grid-area: hot;
	min-width: 0;
}

.rpm-market-section-head,
.rpm-shelf-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.rpm-market-section-head {
	margin-bottom: 8px;
}

.rpm-market-section-head h2,
.rpm-shelf-card__head h2 {
	margin: 0;
	color: #10233f;
	font-size: 22px;
	line-height: 1.2;
}

.rpm-market-section-head a,
.rpm-shelf-card__head a {
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.rpm-hot-category-strip {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 8px;
}

.rpm-hot-category {
	display: grid;
	gap: 7px;
	justify-items: center;
	min-height: 98px;
	padding: 10px 8px;
	text-align: center;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rpm-hot-category:hover,
.rpm-compact-product:hover,
.rpm-shelf-card:hover {
	border-color: #fca5a5;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.rpm-hot-category__media {
	display: grid;
	width: 56px;
	height: 52px;
	place-items: center;
}

.rpm-hot-category .rpm-category-visual {
	width: 52px;
	height: 52px;
}

.rpm-hot-category .rpm-product-visual {
	width: 58px;
	max-width: 58px;
	aspect-ratio: 1.05;
}

.rpm-hot-category .rpm-product-visual__label {
	display: none;
}

.rpm-hot-category .rpm-product-visual__object {
	border-width: 7px;
}

.rpm-hot-category strong {
	display: -webkit-box;
	overflow: hidden;
	color: #0f172a;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rpm-shelf-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.rpm-shelf-card {
	padding: 10px;
}

.rpm-shelf-card__head {
	margin-bottom: 9px;
}

.rpm-shelf-card__head h2 {
	font-size: 18px;
}

.rpm-shelf-card__head p {
	color: #64748b;
	font-size: 12px;
	margin: 2px 0 0;
}

.rpm-compact-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 7px;
}

.rpm-shelf-card:not(.rpm-shelf-card--wide) .rpm-compact-products {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rpm-compact-product {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 6px;
	padding: 7px;
	text-align: center;
}

.rpm-compact-product__media {
	position: relative;
	display: grid;
	aspect-ratio: 1.1;
	place-items: center;
	border-radius: 6px;
	background: #f8fafc;
	overflow: hidden;
}

.rpm-compact-product .rpm-product-visual {
	width: 92%;
	max-width: 96px;
}

.rpm-compact-product .rpm-product-visual__label {
	right: 5px;
	bottom: 5px;
	left: 5px;
	font-size: 10px;
	padding: 4px 5px;
}

.rpm-compact-product strong {
	display: -webkit-box;
	overflow: hidden;
	min-height: 30px;
	color: #0f172a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rpm-compact-product__price,
.rpm-compact-product__price .amount {
	display: block;
	color: var(--rpm-red);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.1;
	white-space: nowrap;
}

.rpm-rank-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: inline-grid;
	min-width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 0 0 5px 0;
	background: var(--rpm-red);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.rpm-bottom-market__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 10px;
}

.rpm-shelf-card--wide .rpm-compact-products {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.rpm-shelf-card--wide:last-child .rpm-compact-products {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

@media (max-width: 1180px) {
	.rpm-hero__grid {
		grid-template-columns: 230px minmax(0, 1fr);
	}

	.rpm-market-hero__grid {
		grid-template-columns: 230px minmax(0, 1fr);
		grid-template-areas:
			"categories banner"
			"deals deals"
			"hot hot";
	}

	.rpm-deal-stack {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rpm-hot-category-strip {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.rpm-shelf-grid,
	.rpm-bottom-market__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rpm-promo-stack {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rpm-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.rpm-products-section--wide .rpm-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.rpm-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	.rpm-brand-row,
	.rpm-mainnav,
	.rpm-page-hero__inner,
	.rpm-section-head,
	.rpm-topic-band {
		align-items: stretch;
		flex-direction: column;
	}

	.rpm-brand {
		min-width: 0;
	}

	.rpm-search {
		width: 100%;
		max-width: none;
	}

	.rpm-header-actions {
		width: 100%;
		justify-content: space-between;
	}

	.rpm-category-button {
		width: 100%;
		min-height: 46px;
	}

	.rpm-hero__grid,
	.rpm-market-hero__grid,
	.rpm-hero__main,
	.rpm-rfq-band__grid,
	.rpm-newsletter-band__grid,
	.rpm-contact-grid,
	.rpm-product-rfq,
	.rpm-shop-layout {
		grid-template-columns: 1fr;
	}

	.rpm-market-hero__grid {
		grid-template-areas:
			"categories"
			"banner"
			"deals"
			"hot";
	}

	.rpm-hero__copy {
		padding: 28px;
	}

	.rpm-service-points {
		flex-wrap: wrap;
		margin-top: -6px;
		padding: 0 28px 28px;
	}

	.rpm-market-banner__copy {
		padding: 34px 28px 28px;
	}

	.rpm-market-banner .rpm-service-points {
		margin-top: 18px;
		padding: 0;
	}

	.rpm-deal-stack {
		grid-template-columns: 1fr;
	}

		.rpm-hot-category-strip,
		.rpm-shelf-card--wide .rpm-compact-products,
		.rpm-shelf-card--wide:last-child .rpm-compact-products {
			grid-template-columns: repeat(4, minmax(0, 1fr));
		}

	.rpm-service-points,
	.rpm-promo-stack,
	.rpm-category-grid,
	.rpm-product-grid,
	.woocommerce .rpm-shop-results ul.products.rpm-product-grid,
	.woocommerce ul.products.rpm-product-grid,
	.rpm-products-section--wide .rpm-product-grid,
		.rpm-post-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.rpm-article-category-strip,
		.rpm-home-article-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.rpm-partner-brand-grid {
			grid-template-columns: repeat(4, minmax(0, 1fr));
		}
	}

@media (max-width: 640px) {
	.rpm-container {
		width: min(100% - 22px, 1440px);
	}

	.rpm-topbar__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
		padding: 8px 0;
	}

	.rpm-topbar nav {
		flex-wrap: wrap;
		gap: 10px;
	}

	.rpm-brand strong {
		font-size: 21px;
	}

	.rpm-search {
		grid-template-columns: 1fr;
	}

	.rpm-search select,
	.rpm-search input {
		border-right: 0;
		border-bottom: 1px solid #eef1f5;
	}

	.rpm-search button {
		min-height: 44px;
	}

	.rpm-primary-nav ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		gap: 0 12px;
	}

	.rpm-hero h1 {
		font-size: 34px;
	}

	.rpm-page-hero__inner h1,
	.rpm-article-head h1 {
		font-size: 31px;
	}

	.rpm-service-points {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rpm-market-banner {
		min-height: 460px;
		background-position: center right 28%;
	}

	.rpm-market-banner h1 {
		font-size: 34px;
	}

	.rpm-hot-category-strip,
	.rpm-shelf-grid,
	.rpm-bottom-market__grid,
		.rpm-compact-products,
		.rpm-shelf-card:not(.rpm-shelf-card--wide) .rpm-compact-products,
		.rpm-shelf-card--wide .rpm-compact-products,
		.rpm-shelf-card--wide:last-child .rpm-compact-products {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.rpm-article-category-strip,
		.rpm-home-article-grid,
		.rpm-home-article-list {
			grid-template-columns: 1fr;
		}

		.rpm-partner-brand-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.rpm-service-points,
	.rpm-promo-stack,
	.rpm-category-grid,
	.rpm-product-grid,
	.woocommerce .rpm-shop-results ul.products.rpm-product-grid,
	.woocommerce ul.products.rpm-product-grid,
	.rpm-products-section--wide .rpm-product-grid,
	.rpm-post-grid,
	.rpm-footer-grid {
		grid-template-columns: 1fr;
	}

	.rpm-category-tile {
		grid-template-columns: 66px minmax(0, 1fr);
	}

	.rpm-rfq-band .rpm-container,
	.rpm-newsletter-band__grid,
	.rpm-content-shell,
	.rpm-article,
	.rpm-product-rfq,
	.rpm-contact-card,
	.rpm-contact-side section,
	.rpm-ranking-board,
	.rpm-topic-band {
		padding: 18px;
	}

	.rpm-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		padding: 16px 0;
	}
}
