:root {
	--background: #fbf7ef;
	--surface: #fffdfa;
	--primary: #b68a3a;
	--primary-hover: #966d25;
	--primary-foreground: #272226;
	--secondary: #671b2b;
	--secondary-hover: #4b111e;
	--secondary-foreground: #ffffff;
	--foreground: #272226;
	--muted-foreground: #746a68;
	--border: #e8ded2;
	--accent-danger: #a32f45;
	--input-background: #fffdfa;
	--focus-ring: #b68a3a;
	--radius-sm: 6px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-pill: 999px;
	--shadow-sm: 0 2px 8px rgba(43, 33, 24, 0.05);
	--shadow-md: 0 10px 30px rgba(43, 33, 24, 0.09);
	--shadow-lg: 0 18px 50px rgba(43, 33, 24, 0.13);
	--transition-fast: 150ms ease;
	--transition-normal: 220ms ease;
	--container: 1360px;
	--content: 820px;
	--heading-font: Georgia, "Times New Roman", serif;
	--body-font: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--background);
	color: var(--foreground);
	font-family: var(--body-font);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	overflow-wrap: break-word;
}

body.rs-drawer-open {
	overflow: hidden;
}

body,
button,
input,
select,
textarea {
	font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.rs-brand {
	color: var(--foreground);
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0;
}

h1 {
	font-size: 3.5rem;
	line-height: 1.04;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.12;
}

h3 {
	font-size: 1.35rem;
	line-height: 1.25;
}

img {
	max-width: 100%;
}

a {
	color: var(--secondary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--primary-hover);
}

a,
button,
input,
select,
textarea {
	transition:
		background-color var(--transition-fast),
		border-color var(--transition-fast),
		box-shadow var(--transition-fast),
		color var(--transition-fast),
		opacity var(--transition-fast),
		transform var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--focus-ring);
	outline-offset: 3px;
}

button,
select {
	cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

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

.rs-skip-link {
	background: var(--primary);
	color: var(--primary-foreground);
	font-weight: 800;
	left: 1rem;
	padding: 0.75rem 1rem;
	position: fixed;
	top: -100px;
	z-index: 1000;
}

.rs-skip-link:focus {
	top: 1rem;
}

.dashicons {
	flex: 0 0 auto;
	font-size: 20px;
	height: 20px;
	line-height: 1;
	width: 20px;
}

.rs-announcement {
	background: var(--secondary-hover);
	color: var(--secondary-foreground);
	font-size: 0.82rem;
}

.rs-announcement__inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin: 0 auto;
	max-width: var(--container);
	min-height: 34px;
	padding: 0.3rem 1.25rem;
}

.rs-announcement span,
.rs-announcement a {
	align-items: center;
	color: rgba(255, 255, 255, 0.88);
	display: inline-flex;
	gap: 0.35rem;
	text-decoration: none;
}

.rs-announcement .dashicons {
	color: var(--primary);
	font-size: 16px;
	height: 16px;
	width: 16px;
}

.rs-announcement a {
	font-weight: 750;
	margin-left: auto;
}

.rs-announcement a:hover {
	color: var(--primary);
}

.rs-header {
	background: var(--secondary);
	border-bottom: 1px solid rgba(232, 221, 200, 0.2);
	position: sticky;
	top: 0;
	z-index: 100;
}

.rs-header__inner {
	align-items: center;
	display: grid;
	gap: 1.4rem;
	grid-template-columns: auto minmax(0, 1fr) auto;
	margin: 0 auto;
	max-width: var(--container);
	min-height: 76px;
	padding: 0.75rem 1.25rem;
}

.rs-brand {
	align-items: center;
	color: var(--secondary-foreground);
	display: inline-flex;
	gap: 0.65rem;
	text-decoration: none;
	white-space: nowrap;
}

.rs-brand:hover {
	color: var(--secondary-foreground);
}

.rs-brand__mark {
	align-items: center;
	background: var(--primary);
	border-radius: 50%;
	color: var(--primary-foreground);
	display: inline-flex;
	font-family: var(--body-font);
	font-size: 1rem;
	font-weight: 850;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.rs-brand__text {
	display: grid;
	line-height: 1.1;
}

.rs-brand__text strong {
	color: var(--secondary-foreground);
	font-family: var(--heading-font);
	font-size: 1.2rem;
}

.rs-brand__text small {
	color: rgba(255, 255, 255, 0.66);
	font-family: var(--body-font);
	font-size: 0.67rem;
	font-weight: 600;
	margin-top: 0.25rem;
}

.rs-desktop-nav {
	align-items: center;
	display: flex;
	gap: 0.2rem;
	justify-content: center;
}

.rs-desktop-nav a {
	border-radius: var(--radius-sm);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.91rem;
	font-weight: 700;
	padding: 0.6rem 0.72rem;
	text-decoration: none;
}

.rs-desktop-nav a:hover,
.rs-desktop-nav a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: var(--secondary-foreground);
}

.rs-category-nav {
	position: relative;
}

.rs-category-nav summary {
	align-items: center;
	border-radius: var(--radius-sm);
	color: rgba(255, 255, 255, 0.86);
	cursor: pointer;
	display: flex;
	font-size: 0.91rem;
	font-weight: 700;
	gap: 0.25rem;
	list-style: none;
	padding: 0.6rem 0.72rem;
}

.rs-category-nav summary::-webkit-details-marker {
	display: none;
}

.rs-category-nav summary:hover,
.rs-category-nav summary:focus-visible,
.rs-category-nav[open] summary {
	background: rgba(255, 255, 255, 0.08);
	color: var(--secondary-foreground);
}

.rs-category-nav summary .dashicons {
	font-size: 16px;
	height: 16px;
	transition: transform var(--transition-fast);
	width: 16px;
}

.rs-category-nav[open] summary .dashicons {
	transform: rotate(180deg);
}

.rs-category-menu {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	display: grid;
	left: 50%;
	margin-top: 0.55rem;
	max-height: min(60vh, 480px);
	min-width: 290px;
	overflow-y: auto;
	padding: 0.45rem;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	z-index: 130;
}

.rs-desktop-nav .rs-category-menu a {
	align-items: center;
	color: var(--foreground);
	display: flex;
	justify-content: space-between;
	min-height: 44px;
	padding: 0.6rem 0.75rem;
}

.rs-desktop-nav .rs-category-menu a:hover,
.rs-desktop-nav .rs-category-menu a:focus-visible {
	background: var(--background);
	color: var(--foreground);
}

.rs-category-menu small {
	color: var(--muted-foreground);
	font-size: 0.72rem;
	font-weight: 650;
	margin-left: 1.5rem;
}

.rs-header-actions {
	align-items: center;
	display: flex;
	gap: 0.35rem;
}

.rs-icon-button {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: var(--radius-sm);
	color: inherit;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	padding: 0;
	text-decoration: none;
	width: 44px;
}

.rs-header .rs-icon-button {
	color: rgba(255, 255, 255, 0.88);
}

.rs-header .rs-icon-button:hover {
	background: rgba(255, 255, 255, 0.09);
	color: var(--secondary-foreground);
}

.rs-menu-toggle {
	display: none;
}

.rs-cart-link {
	align-items: center;
	background: var(--primary);
	border-radius: var(--radius-md);
	color: var(--primary-foreground);
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 800;
	gap: 0.4rem;
	min-height: 44px;
	padding: 0.55rem 0.65rem 0.55rem 0.8rem;
	text-decoration: none;
}

.rs-cart-link:hover {
	background: var(--primary-hover);
	color: var(--primary-foreground);
	transform: translateY(-1px);
}

.coc-cart-count {
	align-items: center;
	background: var(--secondary);
	border-radius: var(--radius-pill);
	color: var(--secondary-foreground);
	display: inline-flex;
	font-size: 0.72rem;
	height: 24px;
	justify-content: center;
	min-width: 24px;
	padding: 0 0.35rem;
}

.rs-search-panel {
	background: var(--surface);
	border-top: 1px solid var(--border);
	box-shadow: var(--shadow-md);
}

.rs-search-panel[hidden] {
	display: none;
}

.rs-product-search {
	align-items: center;
	display: grid;
	gap: 0.7rem;
	grid-template-columns: auto minmax(0, 1fr) auto auto;
	margin: 0 auto;
	max-width: 920px;
	padding: 1rem 1.25rem;
}

.rs-product-search > .dashicons {
	color: var(--muted-foreground);
}

.rs-product-search input {
	background: var(--input-background);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	color: var(--foreground);
	font-size: 1rem;
	height: 48px;
	padding: 0 0.9rem;
	width: 100%;
}

.rs-product-search input:focus {
	border-color: var(--focus-ring);
	box-shadow: 0 0 0 3px rgba(216, 155, 43, 0.2);
	outline: 0;
}

.rs-search-close {
	color: var(--foreground);
}

.rs-mobile-drawer,
.rs-drawer-backdrop {
	display: none;
}

.rs-toast-region {
	bottom: 1rem;
	display: grid;
	gap: 0.6rem;
	max-width: min(390px, calc(100vw - 2rem));
	position: fixed;
	right: 1rem;
	z-index: 300;
}

.rs-toast {
	align-items: center;
	background: var(--secondary);
	border: 1px solid rgba(232, 221, 200, 0.25);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	color: var(--secondary-foreground);
	display: flex;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
}

.rs-toast .dashicons {
	color: var(--primary);
}

.rs-button,
.rs-button-outline,
.wp-element-button {
	align-items: center;
	appearance: none;
	background: var(--primary);
	border: 1px solid var(--primary);
	border-radius: var(--radius-md);
	box-shadow: none;
	color: var(--primary-foreground);
	display: inline-flex;
	font-size: 0.94rem;
	font-weight: 800;
	gap: 0.45rem;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: 0.75rem 1.05rem;
	text-align: center;
	text-decoration: none;
}

.rs-button:hover,
.rs-button-outline:hover,
.wp-element-button:hover {
	background: var(--primary-hover);
	border-color: var(--primary-hover);
	box-shadow: var(--shadow-sm);
	color: var(--primary-foreground);
	transform: translateY(-1px);
}

.rs-button:active,
.rs-button-outline:active,
.wp-element-button:active {
	box-shadow: none;
	transform: scale(0.98);
}

.rs-button--secondary {
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--secondary-foreground);
}

.rs-button--secondary:hover {
	background: var(--secondary-hover);
	border-color: var(--secondary-hover);
	color: var(--secondary-foreground);
}

.rs-button--outline,
.rs-button-outline {
	background: transparent;
	border-color: var(--secondary);
	color: var(--secondary);
}

.rs-button--outline:hover,
.rs-button-outline:hover {
	background: rgba(35, 75, 58, 0.08);
	border-color: var(--secondary);
	color: var(--secondary);
}

.rs-button--light-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--secondary-foreground);
}

.rs-button--light-outline:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: var(--secondary-foreground);
	color: var(--secondary-foreground);
}

.rs-button.is-loading,
button.is-loading {
	color: transparent !important;
	pointer-events: none;
	position: relative;
}

.rs-button.is-loading::after,
button.is-loading::after {
	animation: rs-spin 0.75s linear infinite;
	border: 2px solid rgba(43, 33, 24, 0.3);
	border-radius: 50%;
	border-top-color: var(--foreground);
	content: "";
	height: 18px;
	left: calc(50% - 9px);
	position: absolute;
	top: calc(50% - 9px);
	width: 18px;
}

@keyframes rs-spin {
	to {
		transform: rotate(360deg);
	}
}

.rs-hero {
	background: var(--background);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}

.rs-hero__inner {
	align-items: center;
	display: grid;
	gap: 4rem;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
	margin: 0 auto;
	max-width: var(--container);
	min-height: 610px;
	padding: 4.75rem 1.25rem 4rem;
}

.rs-hero__content {
	max-width: 600px;
}

.rs-eyebrow,
.rs-section-kicker,
.rs-card__label {
	color: var(--primary-hover);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.rs-hero h1 {
	font-size: 4.7rem;
	margin: 0 0 1.1rem;
	max-width: 9ch;
}

.rs-hero__lead {
	color: var(--muted-foreground);
	font-size: 1.13rem;
	line-height: 1.7;
	margin: 0 0 1.6rem;
	max-width: 54ch;
}

.rs-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.rs-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.1rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.rs-hero__proof li {
	align-items: center;
	color: var(--muted-foreground);
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 700;
	gap: 0.3rem;
}

.rs-hero__proof .dashicons {
	color: var(--secondary);
	font-size: 17px;
	height: 17px;
	width: 17px;
}

.rs-hero__media {
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	margin: 0;
	overflow: hidden;
	position: relative;
}

.rs-hero__media img {
	aspect-ratio: 17 / 10;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.rs-hero__media figcaption {
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md) 0 0 0;
	bottom: 0;
	display: grid;
	left: auto;
	padding: 0.85rem 1rem;
	position: absolute;
	right: 0;
}

.rs-hero__media figcaption strong {
	color: var(--foreground);
	font-family: var(--heading-font);
	font-size: 1rem;
}

.rs-hero__media figcaption span {
	color: var(--muted-foreground);
	font-size: 0.76rem;
}

.rs-trust-strip {
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}

.rs-trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 auto;
	max-width: var(--container);
	padding: 1.2rem 1.25rem;
}

.rs-trust-strip__inner > div {
	align-items: center;
	border-right: 1px solid var(--border);
	display: flex;
	gap: 0.8rem;
	justify-content: center;
	padding: 0.25rem 1.5rem;
}

.rs-trust-strip__inner > div:last-child {
	border-right: 0;
}

.rs-trust-strip .dashicons {
	color: var(--primary-hover);
	font-size: 26px;
	height: 26px;
	width: 26px;
}

.rs-trust-strip__inner > div > span:last-child {
	display: grid;
}

.rs-trust-strip strong {
	font-size: 0.9rem;
}

.rs-trust-strip small {
	color: var(--muted-foreground);
	font-size: 0.76rem;
}

.rs-section {
	background: var(--background);
	padding: 5rem 1.25rem;
}

.rs-section__inner {
	margin: 0 auto;
	max-width: var(--container);
}

.rs-section-heading {
	align-items: end;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.rs-section-heading h2 {
	margin: 0;
	max-width: 760px;
}

.rs-text-link {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.9rem;
	font-weight: 800;
	gap: 0.25rem;
	text-decoration: none;
}

.rs-text-link:hover .dashicons {
	transform: translateX(3px);
}

.rs-category-section {
	background: var(--surface);
}

.rs-category-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-category-card {
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	color: var(--foreground);
	display: grid;
	overflow: hidden;
	text-decoration: none;
}

.rs-category-card:hover {
	border-color: rgba(216, 155, 43, 0.75);
	box-shadow: var(--shadow-md);
	color: var(--foreground);
	transform: translateY(-3px);
}

.rs-category-card__media {
	background: var(--background);
	overflow: hidden;
	position: relative;
}

.rs-category-card__image {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform var(--transition-normal);
	width: 100%;
}

.rs-category-card:hover .rs-category-card__image {
	transform: scale(1.025);
}

.rs-category-card__count {
	background: var(--surface);
	border-radius: var(--radius-pill);
	bottom: 0.7rem;
	color: var(--foreground);
	font-size: 0.72rem;
	font-weight: 800;
	left: 0.7rem;
	padding: 0.3rem 0.55rem;
	position: absolute;
}

.rs-category-card__body {
	display: flex;
	flex-direction: column;
	padding: 1.15rem;
}

.rs-category-card h3 {
	margin: 0 0 0.35rem;
}

.rs-category-card p {
	color: var(--muted-foreground);
	flex: 1;
	font-size: 0.91rem;
	line-height: 1.55;
	margin: 0;
}

.rs-category-card strong {
	align-items: center;
	color: var(--secondary);
	display: inline-flex;
	font-size: 0.86rem;
	gap: 0.25rem;
	margin-top: 1rem;
}

.rs-featured-products {
	background: var(--background);
}

.rs-product-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rs-product-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	position: relative;
	transition:
		border-color var(--transition-normal),
		box-shadow var(--transition-normal),
		transform var(--transition-normal);
}

.rs-product-card:hover,
.rs-product-card:focus-within {
	border-color: rgba(216, 155, 43, 0.75);
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.rs-product-card__media {
	background: var(--background);
	display: block;
	overflow: hidden;
	position: relative;
}

.rs-product-card__media img {
	aspect-ratio: 4 / 5;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform var(--transition-normal);
	width: 100%;
}

.rs-product-card:hover .rs-product-card__media img {
	transform: scale(1.025);
}

.rs-product-badge {
	background: var(--primary);
	border-radius: var(--radius-sm);
	color: var(--primary-foreground);
	font-size: 0.7rem;
	font-weight: 850;
	left: 0.7rem;
	padding: 0.28rem 0.5rem;
	position: absolute;
	top: 0.7rem;
}

.rs-product-badge--sale {
	background: var(--accent-danger);
	color: var(--secondary-foreground);
}

.rs-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem;
}

.rs-product-card__category {
	color: var(--primary-hover);
	font-size: 0.7rem;
	font-weight: 850;
	text-decoration: none;
	text-transform: uppercase;
}

.rs-product-card h3 {
	font-size: 1.16rem;
	margin: 0.35rem 0 0.45rem;
}

.rs-product-card h3 a {
	color: var(--foreground);
	text-decoration: none;
}

.rs-product-card__description {
	color: var(--muted-foreground);
	flex: 1;
	font-size: 0.86rem;
	line-height: 1.55;
	margin: 0 0 0.75rem;
}

.rs-product-card__rating {
	margin-bottom: 0.65rem;
}

.rs-product-card__status {
	align-items: end;
	display: flex;
	gap: 0.5rem;
	justify-content: space-between;
	margin-bottom: 0.85rem;
}

.rs-product-card__status > span:first-child {
	align-items: center;
	display: inline-flex;
	font-size: 0.73rem;
	font-weight: 700;
	gap: 0.2rem;
}

.rs-product-card__status .dashicons {
	font-size: 16px;
	height: 16px;
	width: 16px;
}

.is-in-stock {
	color: var(--secondary);
}

.is-out-of-stock {
	color: var(--accent-danger);
}

.rs-product-card__price {
	align-items: baseline;
	color: var(--secondary);
	display: flex;
	flex-wrap: wrap;
	font-size: 1.02rem;
	font-weight: 850;
	gap: 0.2rem;
	justify-content: flex-end;
	text-align: right;
}

.rs-product-card__price del {
	color: var(--muted-foreground);
	font-size: 0.76rem;
	font-weight: 600;
}

.rs-product-card__price ins {
	text-decoration: none;
}

.rs-product-card__button {
	width: 100%;
}

.rs-promo-band {
	background: var(--secondary);
	color: var(--secondary-foreground);
	padding: 4.5rem 1.25rem;
}

.rs-promo-band__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
	grid-template-columns: minmax(0, 1fr) auto;
}

.rs-promo-band h2,
.rs-promo-band .rs-section-kicker {
	color: var(--secondary-foreground);
	margin: 0 0 0.8rem;
}

.rs-promo-band .rs-section-kicker {
	color: var(--primary);
}

.rs-promo-band p {
	color: rgba(255, 248, 232, 0.82);
	margin: 0;
	max-width: 760px;
}

.rs-promo-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.rs-benefits {
	background: var(--surface);
}

.rs-benefit-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-benefit-grid article {
	align-items: flex-start;
	border-top: 3px solid var(--primary);
	display: flex;
	gap: 1rem;
	padding: 1.4rem 0.5rem 0;
}

.rs-benefit-grid article > .dashicons {
	color: var(--secondary);
	font-size: 30px;
	height: 30px;
	width: 30px;
}

.rs-benefit-grid h3 {
	margin: 0 0 0.35rem;
}

.rs-benefit-grid p {
	color: var(--muted-foreground);
	font-size: 0.92rem;
	margin: 0;
}

.rs-enquiry-band {
	background: var(--background);
	border-top: 1px solid var(--border);
	padding: 3.25rem 1.25rem;
}

.rs-enquiry-band__inner {
	align-items: center;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.rs-enquiry-band h2 {
	font-size: 2rem;
	margin: 0 0 0.4rem;
}

.rs-enquiry-band p {
	color: var(--muted-foreground);
	margin: 0;
}

.rs-page-shell {
	margin: 0 auto;
	max-width: var(--container);
	min-height: 55vh;
	padding-bottom: 5rem !important;
	padding-left: 1.25rem !important;
	padding-right: 1.25rem !important;
	padding-top: 3.5rem !important;
}

.rs-page-shell > .wp-block-post-title {
	font-size: 3rem;
	margin: 0 auto 2rem;
	max-width: var(--content);
}

.rs-page-shell > .wp-block-post-content {
	max-width: var(--content);
}

.rs-page-shell > .wp-block-post-content:has(.woocommerce) {
	max-width: var(--container);
}

.rs-page-shell > .wp-block-post-content:has(.rs-catalog) {
	max-width: var(--container);
	width: 100%;
}

.rs-page-shell:has(.rs-catalog) {
	padding-top: 0 !important;
}

.rs-page-shell:has(.rs-catalog) > .wp-block-post-title {
	display: none;
}

.rs-catalog {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 1.25rem 5rem;
}

.rs-catalog-hero {
	border-bottom: 1px solid var(--border);
	padding: 3.5rem 0 2.5rem;
}

.rs-catalog-hero h1 {
	font-size: 3.2rem;
	margin: 0 0 0.8rem;
	max-width: 800px;
}

.rs-catalog-hero p {
	color: var(--muted-foreground);
	font-size: 1.03rem;
	margin: 0;
	max-width: 720px;
}

.rs-catalog-layout {
	display: grid;
	gap: 2rem;
	grid-template-columns: 230px minmax(0, 1fr);
	padding-top: 2rem;
}

.rs-filter-panel {
	align-self: start;
	position: sticky;
	top: 98px;
}

.rs-filter-panel__header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.8rem;
}

.rs-filter-panel h2 {
	font-family: var(--body-font);
	font-size: 0.92rem;
	margin: 0;
	text-transform: uppercase;
}

.rs-filter-close {
	display: none;
}

.rs-filter-list {
	display: grid;
	gap: 0.2rem;
}

.rs-filter-list a {
	align-items: center;
	border-radius: var(--radius-sm);
	color: var(--foreground);
	display: flex;
	font-size: 0.88rem;
	font-weight: 650;
	justify-content: space-between;
	padding: 0.55rem 0.65rem;
	text-decoration: none;
}

.rs-filter-list a span:last-child {
	color: var(--muted-foreground);
	font-size: 0.75rem;
}

.rs-filter-list a:hover {
	background: rgba(216, 155, 43, 0.1);
}

.rs-filter-list a.is-active {
	background: var(--secondary);
	color: var(--secondary-foreground);
}

.rs-filter-list a.is-active span:last-child {
	color: rgba(255, 255, 255, 0.7);
}

.rs-filter-panel__help {
	background: var(--secondary);
	border-radius: var(--radius-md);
	color: var(--secondary-foreground);
	margin-top: 1.5rem;
	padding: 1rem;
}

.rs-filter-panel__help > .dashicons {
	color: var(--primary);
	font-size: 25px;
	height: 25px;
	margin-bottom: 0.65rem;
	width: 25px;
}

.rs-filter-panel__help strong {
	display: block;
	font-family: var(--heading-font);
}

.rs-filter-panel__help p {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.78rem;
	line-height: 1.5;
	margin: 0.3rem 0 0.65rem;
}

.rs-filter-panel__help a {
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 800;
}

.rs-catalog-toolbar {
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	display: grid;
	gap: 0.7rem;
	grid-template-columns: minmax(180px, 1fr) auto auto auto;
	margin-bottom: 1rem;
	padding: 0.7rem;
}

.rs-filter-toggle {
	display: none;
}

.rs-catalog-search {
	align-items: center;
	display: flex;
	position: relative;
}

.rs-catalog-search .dashicons {
	color: var(--muted-foreground);
	left: 0.7rem;
	position: absolute;
}

.rs-catalog-search input {
	background: var(--input-background);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--foreground);
	height: 42px;
	padding: 0 0.7rem 0 2.2rem;
	width: 100%;
}

.rs-product-count {
	color: var(--muted-foreground);
	font-size: 0.8rem;
	margin: 0;
	white-space: nowrap;
}

.rs-sort-control {
	align-items: center;
	display: flex;
	gap: 0.45rem;
}

.rs-sort-control > span {
	color: var(--muted-foreground);
	font-size: 0.78rem;
}

.rs-sort-control select {
	appearance: none;
	background-color: var(--input-background);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--foreground);
	height: 42px;
	padding: 0 2rem 0 0.65rem;
}

.rs-catalog-submit {
	display: none;
}

.rs-active-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 1rem;
}

.rs-active-filters > span {
	color: var(--muted-foreground);
	font-size: 0.78rem;
}

.rs-active-filters a {
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	color: var(--foreground);
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 750;
	gap: 0.15rem;
	padding: 0.3rem 0.5rem;
	text-decoration: none;
}

.rs-active-filters .dashicons {
	font-size: 15px;
	height: 15px;
	width: 15px;
}

.rs-active-filters .rs-active-filters__clear {
	background: transparent;
	border: 0;
	color: var(--accent-danger);
}

.rs-pagination {
	display: flex;
	gap: 0.4rem;
	justify-content: center;
	margin-top: 2rem;
}

.rs-pagination a {
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--foreground);
	display: inline-flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	text-decoration: none;
	width: 42px;
}

.rs-pagination a:hover,
.rs-pagination a.is-current {
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--secondary-foreground);
}

.rs-empty-state {
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
	padding: 3.5rem 1.5rem;
	text-align: center;
}

.rs-empty-state > .dashicons {
	align-items: center;
	background: rgba(216, 155, 43, 0.15);
	border-radius: 50%;
	color: var(--primary-hover);
	display: inline-flex;
	font-size: 34px;
	height: 64px;
	justify-content: center;
	width: 64px;
}

.rs-empty-state h2 {
	font-size: 1.8rem;
	margin: 1rem 0 0.4rem;
}

.rs-empty-state p {
	color: var(--muted-foreground);
	margin: 0 0 1.2rem;
	max-width: 460px;
}

.rs-footer {
	background: var(--secondary-hover);
	color: var(--secondary-foreground);
}

.rs-footer__inner {
	display: grid;
	gap: 4rem;
	grid-template-columns: minmax(260px, 0.85fr) minmax(0, 2.15fr);
	margin: 0 auto;
	max-width: var(--container);
	padding: 4.5rem 1.25rem 3.5rem;
}

.rs-footer__brand > p {
	color: rgba(255, 248, 232, 0.72);
	font-size: 0.9rem;
	margin: 1rem 0;
	max-width: 360px;
}

.rs-footer__trust {
	display: grid;
	gap: 0.45rem;
}

.rs-footer__trust span {
	align-items: center;
	color: rgba(255, 248, 232, 0.8);
	display: flex;
	font-size: 0.78rem;
	gap: 0.35rem;
}

.rs-footer__trust .dashicons {
	color: var(--primary);
	font-size: 17px;
	height: 17px;
	width: 17px;
}

.rs-footer__columns {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rs-footer__columns section {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.rs-footer__columns h2 {
	color: var(--secondary-foreground);
	font-family: var(--body-font);
	font-size: 0.8rem;
	margin: 0 0 0.45rem;
	text-transform: uppercase;
}

.rs-footer__columns a {
	color: rgba(255, 248, 232, 0.72);
	font-size: 0.84rem;
	text-decoration: none;
}

.rs-footer__columns a:hover {
	color: var(--primary);
}

.rs-footer__columns p {
	color: rgba(255, 248, 232, 0.72);
	font-size: 0.82rem;
	line-height: 1.55;
	margin: 0;
}

.rs-footer__columns .rs-footer__cta {
	color: var(--primary);
	font-weight: 800;
	text-decoration: underline;
}

.rs-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(232, 221, 200, 0.16);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--container);
	padding: 1.2rem 1.25rem;
}

.rs-footer__bottom p {
	color: rgba(255, 248, 232, 0.58);
	font-size: 0.75rem;
	margin: 0;
}

.rs-footer__bottom nav {
	display: flex;
	gap: 1rem;
}

.rs-footer__bottom a {
	color: rgba(255, 248, 232, 0.7);
	font-size: 0.75rem;
}

@media (max-width: 1100px) {
	.rs-desktop-nav a:nth-child(2),
	.rs-desktop-nav a:nth-child(3) {
		display: none;
	}

	.rs-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rs-footer__inner {
		gap: 2.5rem;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.15rem;
	}

	.rs-announcement__inner span:nth-child(2) {
		display: none;
	}

	.rs-header__inner {
		gap: 0.5rem;
		grid-template-columns: auto minmax(0, 1fr) auto;
		min-height: 68px;
		padding: 0.6rem 1rem;
	}

	.rs-menu-toggle {
		display: inline-flex;
	}

	.rs-desktop-nav {
		display: none;
	}

	.rs-brand {
		justify-self: start;
	}

	.rs-brand__text small {
		display: none;
	}

	.rs-header-actions > .rs-icon-button:not(.rs-search-toggle) {
		display: none;
	}

	.rs-mobile-drawer {
		background: var(--surface);
		box-shadow: var(--shadow-lg);
		display: flex;
		flex-direction: column;
		height: 100%;
		left: 0;
		max-width: 380px;
		position: fixed;
		top: 0;
		transform: translateX(-102%);
		transition: transform var(--transition-normal);
		width: min(88vw, 380px);
		z-index: 250;
	}

	.rs-mobile-drawer.is-open {
		transform: translateX(0);
	}

	.rs-drawer-backdrop {
		background: rgba(43, 33, 24, 0.55);
		inset: 0;
		position: fixed;
		z-index: 240;
	}

	.rs-drawer-backdrop:not([hidden]) {
		display: block;
	}

	.rs-mobile-drawer__header {
		align-items: center;
		background: var(--secondary);
		color: var(--secondary-foreground);
		display: flex;
		justify-content: space-between;
		min-height: 70px;
		padding: 0.75rem 1rem;
	}

	.rs-mobile-drawer__header strong {
		font-family: var(--heading-font);
	}

	.rs-mobile-drawer__header .rs-icon-button {
		color: var(--secondary-foreground);
	}

	.rs-product-search--mobile {
		border-bottom: 1px solid var(--border);
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		margin: 0;
		padding: 0.8rem 1rem;
	}

	.rs-product-search--mobile input {
		height: 44px;
	}

	.rs-mobile-drawer nav {
		display: grid;
		overflow-y: auto;
		padding: 0.7rem;
	}

	.rs-mobile-drawer nav a {
		align-items: center;
		border-radius: var(--radius-sm);
		color: var(--foreground);
		display: flex;
		font-weight: 700;
		gap: 0.6rem;
		min-height: 46px;
		padding: 0.65rem 0.75rem;
		text-decoration: none;
	}

	.rs-mobile-drawer nav a:hover {
		background: var(--background);
	}

	.rs-mobile-drawer nav a small {
		color: var(--muted-foreground);
		font-size: 0.74rem;
		margin-left: auto;
	}

	.rs-mobile-drawer__footer {
		border-top: 1px solid var(--border);
		display: flex;
		gap: 1rem;
		margin-top: auto;
		padding: 1rem;
	}

	.rs-mobile-drawer__footer a {
		font-size: 0.8rem;
		font-weight: 750;
	}

	.rs-hero__inner {
		gap: 2.5rem;
		grid-template-columns: 1fr;
		min-height: auto;
		padding-bottom: 3.5rem;
		padding-top: 3.5rem;
	}

	.rs-hero__content {
		max-width: 720px;
	}

	.rs-hero h1 {
		font-size: 4rem;
	}

	.rs-category-grid,
	.rs-benefit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.rs-promo-band__inner {
		grid-template-columns: 1fr;
	}

	.rs-catalog-layout {
		grid-template-columns: 1fr;
	}

	.rs-filter-panel {
		background: var(--surface);
		box-shadow: var(--shadow-lg);
		height: 100%;
		left: 0;
		max-width: 360px;
		overflow-y: auto;
		padding: 1rem;
		position: fixed;
		top: 0;
		transform: translateX(-102%);
		transition: transform var(--transition-normal);
		width: min(88vw, 360px);
		z-index: 260;
	}

	.rs-filter-panel.is-open {
		transform: translateX(0);
	}

	.rs-filter-close,
	.rs-filter-toggle {
		display: inline-flex;
	}

	.rs-catalog-toolbar {
		grid-template-columns: auto minmax(180px, 1fr) auto;
	}

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

@media (max-width: 640px) {
	h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 1.85rem;
	}

	.rs-announcement__inner {
		justify-content: center;
	}

	.rs-announcement__inner > span {
		display: none;
	}

	.rs-announcement a {
		margin-left: 0;
	}

	.rs-brand__mark {
		height: 38px;
		width: 38px;
	}

	.rs-brand__text strong {
		font-size: 1rem;
	}

	.rs-header-actions {
		gap: 0;
	}

	.rs-cart-link {
		padding: 0.5rem;
	}

	.rs-cart-link__label {
		display: none;
	}

	.rs-search-panel .rs-product-search {
		grid-template-columns: auto minmax(0, 1fr) auto;
		padding: 0.75rem 1rem;
	}

	.rs-search-panel .rs-product-search .rs-button {
		display: none;
	}

	.rs-hero__inner {
		gap: 2rem;
		padding: 2.6rem 1rem 2.75rem;
	}

	.rs-hero h1 {
		font-size: 3.2rem;
	}

	.rs-hero__lead {
		font-size: 1rem;
	}

	.rs-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.rs-actions .rs-button {
		width: 100%;
	}

	.rs-hero__proof {
		display: grid;
		gap: 0.45rem;
	}

	.rs-hero__media figcaption {
		display: none;
	}

	.rs-hero__media img {
		aspect-ratio: 16 / 7;
	}

	.rs-trust-strip__inner {
		grid-template-columns: 1fr;
		padding: 0.6rem 1rem;
	}

	.rs-trust-strip__inner > div {
		border-bottom: 1px solid var(--border);
		border-right: 0;
		justify-content: flex-start;
		padding: 0.75rem 0;
	}

	.rs-trust-strip__inner > div:last-child {
		border-bottom: 0;
	}

	.rs-section {
		padding: 3.75rem 1rem;
	}

	.rs-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.8rem;
		margin-bottom: 1.5rem;
	}

	.rs-category-grid,
	.rs-benefit-grid {
		grid-template-columns: 1fr;
	}

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

	.rs-category-card {
		grid-template-columns: 42% minmax(0, 1fr);
	}

	.rs-category-card__image {
		aspect-ratio: auto;
		height: 100%;
		min-height: 205px;
	}

	.rs-category-card__count {
		display: none;
	}

	.rs-category-card__body {
		padding: 1rem;
	}

	.rs-category-card p {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.rs-product-card {
		display: grid;
		grid-template-columns: 42% minmax(0, 1fr);
	}

	.rs-product-card__media {
		height: 100%;
	}

	.rs-product-card__media img {
		aspect-ratio: auto;
		height: 100%;
		min-height: 260px;
	}

	.rs-product-card__description {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.rs-product-card__status {
		align-items: flex-start;
		flex-direction: column-reverse;
	}

	.rs-product-card__price {
		justify-content: flex-start;
		text-align: left;
	}

	.rs-promo-band {
		padding: 3.5rem 1rem;
	}

	.rs-promo-band__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.rs-enquiry-band {
		padding: 3rem 1rem;
	}

	.rs-enquiry-band__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.rs-page-shell {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
		padding-top: 2.5rem !important;
	}

	.rs-page-shell > .wp-block-post-title {
		font-size: 2.35rem;
	}

	.rs-catalog {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.rs-catalog-hero {
		padding: 2.5rem 0 1.8rem;
	}

	.rs-catalog-hero h1 {
		font-size: 2.45rem;
	}

	.rs-catalog-toolbar {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.rs-product-count {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.rs-sort-control > span {
		display: none;
	}

	.rs-sort-control select {
		max-width: 132px;
		width: 100%;
	}

	.rs-footer__inner {
		padding: 3.5rem 1rem 2.5rem;
	}

	.rs-footer__columns {
		grid-template-columns: 1fr;
	}

	.rs-footer__columns section {
		border-top: 1px solid rgba(232, 221, 200, 0.14);
		padding-top: 1.2rem;
	}

	.rs-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		padding: 1.2rem 1rem;
	}
}

/* KSC studio system: a measured editorial grid shared by the catalogue, content pages,
 * and WooCommerce surfaces.  This layer intentionally keeps the existing markup so
 * product data and checkout behaviour remain untouched while the presentation is unified. */
:root {
	--background: #f7f8fb;
	--surface: #ffffff;
	--surface-soft: #f0f3f7;
	--primary: #c99535;
	--primary-hover: #a87921;
	--primary-foreground: #111a27;
	--secondary: #071426;
	--secondary-hover: #10243c;
	--secondary-foreground: #ffffff;
	--foreground: #152033;
	--muted-foreground: #657186;
	--border: #dfe5ec;
	--focus-ring: #c99535;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-sm: 0 4px 16px rgba(7,20,38,.06);
	--shadow-md: 0 14px 38px rgba(7,20,38,.10);
	--shadow-lg: 0 24px 70px rgba(7,20,38,.14);
	--container: 1240px;
	--content: 760px;
	--heading-font: Georgia, "Times New Roman", serif;
	--body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { background: var(--background); color: var(--foreground); font-size: 16px; line-height: 1.65; }
h1, h2, h3, h4, h5, h6 { letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.1vw, 3rem); }
h3 { font-size: clamp(1.18rem, 1.8vw, 1.45rem); }

.rs-announcement { background: var(--secondary); font-size: .76rem; letter-spacing: .015em; }
.rs-announcement__inner { min-height: 38px; max-width: var(--container); }
.rs-header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); box-shadow: 0 3px 18px rgba(7,20,38,.05); backdrop-filter: blur(14px); }
.rs-header__inner { max-width: var(--container); min-height: 86px; padding: .8rem 1.5rem; }
.rs-brand { gap: .75rem; color: var(--secondary); }
.rs-brand__mark { width: 52px; height: 52px; border: 1px solid var(--primary); background: var(--secondary); box-shadow: 0 4px 12px rgba(7,20,38,.15); }
.rs-brand__text strong { color: var(--secondary); font-family: var(--heading-font); font-size: 1.32rem; letter-spacing: -.02em; }
.rs-brand__text small { color: var(--muted-foreground); font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; }
.rs-desktop-nav { gap: clamp(1rem, 2.2vw, 2.2rem); }
.rs-desktop-nav > a, .rs-category-nav summary { color: var(--foreground); font-family: var(--body-font); font-size: .83rem; font-weight: 750; letter-spacing: .01em; text-decoration: none; }
.rs-desktop-nav > a:first-child { border: 0; padding: .55rem 0; }
.rs-desktop-nav > a:hover, .rs-category-nav summary:hover { color: var(--primary-hover); }
.rs-header-actions { gap: .4rem; }
.rs-icon-button { border-radius: 10px; }
.rs-icon-button:hover { background: var(--surface-soft); }
.rs-cart-link { border-radius: 10px; font-size: .8rem; padding: .7rem .85rem; }

.rs-hero { overflow: hidden; position: relative; }
.rs-hero::before { background: radial-gradient(circle, rgba(201,149,53,.16), transparent 66%); content: ""; height: 720px; pointer-events: none; position: absolute; right: 38%; top: -300px; width: 720px; }
.rs-hero__inner { min-height: 570px; max-width: var(--container); padding: 0 1.5rem; position: relative; }
.rs-hero__content { padding: 4rem 0; }
.rs-eyebrow, .rs-section-kicker { font-family: var(--body-font); font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.rs-eyebrow { color: var(--primary); }
.rs-hero h1 { letter-spacing: -.045em; margin: 0 0 1.3rem; }
.rs-hero__lead { color: rgba(255,255,255,.75); font-size: 1.03rem; max-width: 46ch; }
.rs-actions { gap: .75rem; margin-top: 2rem; }
.rs-button { border-radius: 10px; font-size: .82rem; letter-spacing: .015em; min-height: 48px; padding: .85rem 1.25rem; }
.rs-button:hover { box-shadow: 0 8px 18px rgba(201,149,53,.2); transform: translateY(-2px); }
.rs-hero__media { border-radius: 0; margin-right: -1.5rem; }
.rs-hero__media img { min-height: 570px; object-position: center; }
.rs-hero__proof { gap: .7rem 1.5rem; margin-top: 2.25rem; }
.rs-hero__proof li { font-size: .78rem; }

.rs-trust-strip { margin-top: -44px; }
.rs-trust-strip__inner { border: 1px solid rgba(7,20,38,.07); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); max-width: calc(var(--container) - 3rem); padding: 1.15rem .75rem; }
.rs-trust-strip__inner > div { border-right: 1px solid var(--border); gap: .75rem; padding: .35rem 1.35rem; }
.rs-trust-strip__inner > div:last-child { border-right: 0; }
.rs-trust-strip .dashicons { background: #eef2f7; color: var(--secondary); height: 42px; width: 42px; }
.rs-trust-strip__inner strong { font-size: .82rem; letter-spacing: .01em; }
.rs-trust-strip__inner small { font-size: .72rem; }

.rs-section, .rs-category-section, .rs-featured-products { padding: clamp(4.4rem, 8vw, 7rem) 1.5rem; }
.rs-category-section { background: var(--surface); }
.rs-section__inner { margin: 0 auto; max-width: var(--container); }
.rs-section-heading { margin-bottom: 2.5rem; }
.rs-section-heading h2 { margin: .25rem 0 0; }
.rs-section-kicker { color: var(--primary-hover); margin: 0; }
.rs-category-grid { gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }
.rs-category-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.rs-category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.rs-category-card__image { aspect-ratio: 1.25 / 1; }
.rs-category-card__image img { transition: transform .45s ease; }
.rs-category-card:hover .rs-category-card__image img { transform: scale(1.05); }
.rs-category-card__body { min-height: 148px; padding: 1.05rem 1.1rem 1.15rem; }
.rs-category-card h3 { font-size: 1.04rem; margin-bottom: .45rem; }
.rs-category-card p { color: var(--muted-foreground); font-size: .79rem; }
.rs-category-card strong::after { background: var(--secondary); height: 32px; width: 32px; }

.rs-featured-products { background: var(--background); }
.rs-product-grid { gap: 1.25rem; }
.rs-product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.rs-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.rs-product-card__media { background: var(--surface-soft); }
.rs-product-card__media img { transition: transform .45s ease; }
.rs-product-card:hover .rs-product-card__media img { transform: scale(1.045); }
.rs-product-card__body { padding: 1.1rem 1.15rem 1.2rem; }
.rs-product-card__category { color: var(--primary-hover); font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.rs-product-card h3 { font-family: var(--body-font); font-size: 1.03rem; letter-spacing: -.02em; margin: .35rem 0 .45rem; }
.rs-product-card__description { color: var(--muted-foreground); font-size: .8rem; }
.rs-product-card__price { font-size: 1rem; margin-top: .7rem; }
.rs-product-card__button { border-radius: 9px; font-size: .77rem; }
.rs-product-card__quote { border-color: #25a244; color: #167a32; font-size: .75rem; margin-top: .45rem; }
.rs-product-card__quote:hover, .rs-button--whatsapp:hover { background: #25a244; border-color: #25a244; color: #fff; }
.rs-button--whatsapp { align-items: center; background: transparent; border: 1px solid #25a244; color: #167a32; display: inline-flex; gap: .35rem; justify-content: center; }
.ksc-single-quote { margin: 0 0 1.2rem; width: 100%; }

.rs-promo-band, .rs-enquiry-band { background: var(--secondary); color: #fff; padding: clamp(3.6rem, 7vw, 5.5rem) 1.5rem; }
.rs-promo-band h2, .rs-enquiry-band h2 { color: #fff; max-width: 18ch; }
.rs-promo-band p:not(.rs-section-kicker), .rs-enquiry-band p:not(.rs-section-kicker) { color: rgba(255,255,255,.72); max-width: 54ch; }
.rs-button--light-outline { border-color: rgba(255,255,255,.42); color: #fff; }
.rs-button--light-outline:hover { background: #fff; border-color: #fff; color: var(--secondary); }
.rs-benefits { background: var(--surface); }
.rs-benefit-grid { gap: 1rem; }
.rs-benefit-grid article { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 1.4rem; }
.rs-benefit-grid article > .dashicons { background: #eef2f7; border-radius: 12px; color: var(--secondary); padding: 11px; height: 44px; width: 44px; }
.rs-benefit-grid h3 { font-family: var(--body-font); font-size: 1rem; }
.rs-benefit-grid p { color: var(--muted-foreground); font-size: .84rem; }

.rs-catalog { background: var(--background); padding: 3rem 1.5rem 6rem; }
.rs-catalog-hero { background: var(--secondary); border-radius: var(--radius-lg); color: #fff; margin: 0 auto 2rem; max-width: var(--container); padding: clamp(2.5rem, 5vw, 4.5rem); }
.rs-catalog-hero h1 { color: #fff; margin: .2rem 0 .6rem; }
.rs-catalog-hero p { color: rgba(255,255,255,.72); max-width: 56ch; }
.rs-catalog-layout { align-items: start; gap: 1.5rem; margin: 0 auto; max-width: var(--container); }
.rs-filter-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.rs-catalog-toolbar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 1rem; padding: .75rem 1rem; }
.rs-sort-control select, .rs-catalog-search input { border-radius: 9px; }

.rs-page-shell { background: var(--background); padding: clamp(2.75rem, 6vw, 5rem) 1.5rem; }
.rs-page-shell > * { max-width: var(--content); margin-left: auto; margin-right: auto; }
.rs-page-shell h1 { font-size: clamp(2.3rem, 4vw, 3.6rem); }
.rs-footer { background: #040e1b; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.72); padding: 4rem 1.5rem 1.5rem; }
.rs-footer a { color: rgba(255,255,255,.72); }
.rs-footer a:hover { color: var(--primary); }
.rs-footer__brand strong, .rs-footer h2, .rs-footer h3 { color: #fff; }
.rs-footer__columns { gap: 2rem; }
.rs-footer__bottom { border-top-color: rgba(255,255,255,.12); font-size: .76rem; margin-top: 3rem; padding-top: 1.25rem; }

@media (max-width: 900px) {
	.rs-header__inner { min-height: 74px; }
	.rs-hero__inner { padding-bottom: 2.5rem; padding-top: 2.5rem; }
	.rs-hero__content { padding: 1rem 0; }
	.rs-hero__media img { min-height: 360px; }
	.rs-trust-strip__inner > div:nth-child(2) { border-right: 0; }
}
@media (max-width: 640px) {
	.rs-announcement__inner { font-size: .68rem; min-height: 34px; }
	.rs-header__inner { padding-left: 1rem; padding-right: 1rem; }
	.rs-brand__text strong { font-size: 1.05rem; }
	.rs-brand__text small { display: none; }
	.rs-brand__mark { height: 44px; width: 44px; }
	.rs-hero__inner { padding-left: 1rem; padding-right: 1rem; }
	.rs-hero h1 { font-size: clamp(2.65rem, 13vw, 3.35rem); }
	.rs-hero__media { margin: 0 -1rem; }
	.rs-hero__media img { min-height: 245px; }
	.rs-trust-strip { margin-top: -24px; padding: 0 1rem; }
	.rs-trust-strip__inner { grid-template-columns: 1fr 1fr; padding: .7rem .35rem; }
	.rs-trust-strip__inner > div { border-bottom: 1px solid var(--border); border-right: 0; min-height: 76px; padding: .55rem .45rem; }
	.rs-trust-strip__inner > div:nth-last-child(-n+2) { border-bottom: 0; }
	.rs-trust-strip__inner strong { font-size: .71rem; }
	.rs-trust-strip__inner small { font-size: .65rem; }
	.rs-section, .rs-category-section, .rs-featured-products { padding-left: 1rem; padding-right: 1rem; }
	.rs-category-grid, .rs-product-grid { gap: .75rem; }
	.rs-category-card__body { min-height: 138px; padding: .85rem .8rem; }
	.rs-category-card h3 { font-size: .9rem; }
	.rs-category-card p { font-size: .72rem; }
	.rs-promo-band, .rs-enquiry-band, .rs-catalog { padding-left: 1rem; padding-right: 1rem; }
	.rs-promo-band__inner, .rs-enquiry-band__inner { gap: 1.5rem; }
}

/* Final hero proportion: compact enough to reveal the catalogue sooner. */
.rs-hero__inner { min-height: 485px; }
.rs-hero__content { padding: 3rem 0; }
.rs-hero__media img { min-height: 485px; }
.rs-hero h1 { font-size: clamp(2.8rem, 4.35vw, 4.2rem); }
.rs-hero__lead { margin-bottom: 0; }
@media (max-width: 900px) {
	.rs-hero__inner { min-height: auto; }
	.rs-hero__content { padding: 2.5rem 0 2rem; }
	.rs-hero__media img { min-height: 315px; }
}
@media (max-width: 640px) {
	.rs-hero__content { padding: 2.25rem 0 1.5rem; }
	.rs-hero__media img { min-height: 235px; }
}

@media (max-width: 420px) {
	.rs-brand__text {
		display: none;
	}

	.rs-category-card,
	.rs-product-card {
		grid-template-columns: 1fr;
	}

	.rs-category-card__image,
	.rs-category-card__image {
		aspect-ratio: 4 / 3;
		height: auto;
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* KSC reference theme: navy, ivory, and restrained antique gold. */
:root {
	--background: #ffffff;
	--surface: #ffffff;
	--primary: #d39a2c;
	--primary-hover: #b77d16;
	--primary-foreground: #071426;
	--secondary: #071426;
	--secondary-hover: #0d2038;
	--secondary-foreground: #ffffff;
	--foreground: #071426;
	--muted-foreground: #59616d;
	--border: #e7e9ed;
	--focus-ring: #d39a2c;
	--heading-font: Georgia, "Times New Roman", serif;
	--body-font: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1280px;
}

body { background: #fff; color: var(--foreground); }
.rs-announcement { background: var(--secondary); min-height: 44px; }
.rs-announcement__inner { min-height: 44px; max-width: var(--container); font-size: .82rem; }
.rs-announcement .dashicons { color: var(--primary); }
.rs-header { background: #fff; border-bottom: 1px solid #edf0f4; box-shadow: 0 1px 0 rgba(7,20,38,.04); }
.rs-header__inner { max-width: var(--container); min-height: 92px; padding: .8rem 1.25rem; }
.rs-brand { color: var(--secondary); gap: .8rem; }
.rs-brand:hover { color: var(--secondary); }
.rs-brand__mark { align-items: center; background: var(--secondary); border: 2px solid var(--primary); border-radius: 50%; color: var(--primary); display: inline-flex; font-family: Georgia, serif; font-size: 1rem; height: 58px; justify-content: center; letter-spacing: -.08em; width: 58px; }
.rs-brand__text strong { color: var(--secondary); font-size: 1.55rem; letter-spacing: -.02em; }
.rs-brand__text small { color: #313b4b; font-size: .73rem; }
.rs-desktop-nav { align-items: center; justify-content: center; gap: 2.15rem; }
.rs-desktop-nav > a, .rs-category-nav summary { color: var(--secondary); font-family: var(--heading-font); font-size: 1rem; font-weight: 500; text-decoration: none; }
.rs-desktop-nav > a:first-child { border-bottom: 2px solid var(--primary); padding-bottom: .55rem; }
.rs-desktop-nav > a:hover, .rs-category-nav summary:hover { color: var(--primary-hover); }
.rs-header-actions { gap: .5rem; }
.rs-header-actions .rs-icon-button { color: var(--secondary); }
.rs-cart-link { background: var(--secondary); border: 1px solid var(--secondary); border-radius: 6px; color: #fff; padding: .72rem 1rem; }
.rs-cart-link:hover { background: var(--secondary-hover); color: #fff; }
.rs-cart-link .dashicons { color: var(--primary); }
.rs-hero { background: var(--secondary); border: 0; color: #fff; }
.rs-hero__inner { gap: 2rem; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); max-width: var(--container); min-height: 510px; padding: 0 1.25rem; }
.rs-hero__content { max-width: 580px; position: relative; z-index: 2; }
.rs-eyebrow { color: var(--primary); letter-spacing: .08em; margin-bottom: 1rem; }
.rs-hero h1 { color: #fff; font-size: clamp(3.15rem, 5.2vw, 5rem); line-height: 1.03; max-width: 10ch; }
.rs-hero h1 em { color: var(--primary); font-style: normal; }
.rs-hero__lead { color: rgba(255,255,255,.9); font-size: 1.02rem; line-height: 1.75; max-width: 48ch; }
.rs-hero__media { align-self: stretch; border-radius: 0; box-shadow: none; margin: 0 -1.25rem 0 0; }
.rs-hero__media img { height: 100%; min-height: 510px; object-fit: cover; object-position: right center; }
.rs-hero__media figcaption { display: none; }
.rs-button { background: var(--primary); border: 1px solid var(--primary); border-radius: 7px; color: var(--primary-foreground); font-weight: 800; padding: .82rem 1.35rem; }
.rs-button:hover { background: #e0ac4a; border-color: #e0ac4a; color: var(--primary-foreground); }
.rs-button--outline { background: transparent; border-color: var(--primary); color: #fff; }
.rs-button--outline:hover { color: var(--secondary); }
.rs-hero__proof { margin-top: 1.8rem; }
.rs-hero__proof li { color: rgba(255,255,255,.82); }
.rs-hero__proof .dashicons { color: var(--primary); }
.rs-trust-strip { background: transparent; border: 0; margin: -52px auto 0; position: relative; z-index: 4; }
.rs-trust-strip__inner { background: #fff; border-radius: 11px; box-shadow: 0 10px 28px rgba(7,20,38,.12); grid-template-columns: repeat(4, minmax(0,1fr)); max-width: calc(var(--container) - 2.5rem); padding: 1.25rem .8rem; }
.rs-trust-strip__inner > div { min-height: 64px; padding: .25rem 1.35rem; }
.rs-trust-strip .dashicons { align-items: center; background: var(--secondary); border-radius: 50%; color: var(--primary); display: inline-flex; font-size: 22px; height: 46px; justify-content: center; width: 46px; }
.rs-trust-strip__inner > div > span:last-child { gap: .15rem; }
.rs-trust-strip__inner strong { color: var(--secondary); font-size: .93rem; }
.rs-trust-strip__inner small { color: var(--muted-foreground); font-size: .76rem; line-height: 1.4; }
.rs-category-section { background: #fff; padding-top: 4.8rem; }
.rs-section-heading { align-items: center; flex-direction: column; gap: .4rem; margin-bottom: 1.8rem; text-align: center; }
.rs-section-heading h2 { color: var(--secondary); font-size: 2.25rem; }
.rs-section-kicker { color: var(--primary-hover); letter-spacing: .08em; }
.rs-category-grid { gap: 1.25rem; grid-template-columns: repeat(5, minmax(0,1fr)); }
.rs-category-card { background: #f6f7f9; border: 0; border-radius: 8px; box-shadow: none; }
.rs-category-card:hover { border: 0; box-shadow: 0 9px 20px rgba(7,20,38,.12); color: var(--foreground); transform: translateY(-4px); }
.rs-category-card__image { aspect-ratio: 1.42 / 1; }
.rs-category-card__count { display: none; }
.rs-category-card__body { min-height: 138px; padding: .8rem .95rem 1rem; position: relative; }
.rs-category-card .rs-card__label { display: none; }
.rs-category-card h3 { color: var(--secondary); font-family: var(--body-font); font-size: 1rem; margin: 0 0 .35rem; }
.rs-category-card p { color: #59616d; font-size: .82rem; line-height: 1.45; max-width: 16ch; }
.rs-category-card strong { align-items: center; bottom: .9rem; color: transparent; font-size: 0; margin: 0; position: absolute; right: .9rem; }
.rs-category-card strong::after { align-items: center; background: var(--secondary); border-radius: 50%; color: #fff; content: '→'; display: inline-flex; font-size: 1rem; height: 29px; justify-content: center; width: 29px; }

@media (max-width: 1100px) {
	.rs-category-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 900px) {
	.rs-header__inner { min-height: 76px; }
	.rs-hero__inner { grid-template-columns: 1fr; min-height: auto; padding-bottom: 3rem; padding-top: 3.5rem; }
	.rs-hero__media { margin: 0; }
	.rs-hero__media img { min-height: 320px; }
	.rs-trust-strip { margin-top: -28px; }
	.rs-trust-strip__inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
	.rs-brand__text strong { font-size: 1.15rem; }
	.rs-brand__text small { font-size: .63rem; }
	.rs-brand__mark { height: 48px; width: 48px; }
	.rs-announcement__inner { gap: .65rem; justify-content: space-between; }
	.rs-announcement a { display: none; }
	.rs-hero h1 { font-size: 3rem; }
	.rs-hero__media img { min-height: 250px; }
	.rs-trust-strip__inner { grid-template-columns: 1fr; }
	.rs-category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.rs-category-card__body { min-height: 150px; }
}

/* Phase 2 — global store modernization */
:root {
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--shadow-sm: 0 12px 28px rgba(34, 40, 54, 0.08);
	--shadow-md: 0 20px 45px rgba(34, 40, 54, 0.12);
	--shadow-lg: 0 28px 60px rgba(34, 40, 54, 0.16);
}

body {
	background:
		radial-gradient(circle at top, rgba(201, 149, 53, 0.09), transparent 30%),
		#fffdf9;
	font-size: 17px;
}

p,
li,
label,
input,
select,
textarea {
	font-size: 0.98rem;
}

h1 {
	font-size: clamp(2.9rem, 5vw, 4.9rem);
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(2rem, 3vw, 3rem);
	letter-spacing: -0.02em;
}

h3 {
	font-size: clamp(1.12rem, 1.6vw, 1.45rem);
}

.rs-header {
	box-shadow: 0 10px 30px rgba(34, 40, 54, 0.08);
}

.rs-header__inner,
.rs-hero__inner,
.rs-section,
.rs-catalog-layout,
.rs-footer__inner,
.rs-footer__bottom {
	padding-left: clamp(1rem, 2.2vw, 1.5rem);
	padding-right: clamp(1rem, 2.2vw, 1.5rem);
}

.rs-section {
	padding-bottom: clamp(3.25rem, 6vw, 5.25rem);
	padding-top: clamp(3.25rem, 6vw, 5.25rem);
}

.rs-section-heading {
	margin-bottom: clamp(1.4rem, 2.2vw, 2.4rem);
}

.rs-section-heading h2,
.rs-catalog-hero h1,
.rs-catalog-hero h2 {
	max-width: 14ch;
}

.rs-icon-button,
.rs-cart-link,
.rs-button,
.rs-product-card__button,
.rs-product-search button,
.rs-active-filters a,
.rs-pagination a,
.rs-pagination span {
	min-height: 46px;
}

.rs-icon-button,
.rs-cart-link,
.rs-button,
.rs-product-card__button {
	border-radius: 14px;
}

.rs-button,
.rs-product-card__button {
	box-shadow: 0 12px 24px rgba(201, 149, 53, 0.18);
	font-weight: 800;
	letter-spacing: 0.01em;
}

.rs-button:hover,
.rs-product-card__button:hover {
	transform: translateY(-2px);
}

.rs-button:active,
.rs-product-card__button:active,
.rs-cart-link:active,
.rs-icon-button:active {
	transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline-width: 2px;
	outline-offset: 4px;
}

.rs-hero,
.rs-catalog-hero {
	overflow: clip;
}

.rs-hero__content,
.rs-catalog-hero__content {
	position: relative;
	z-index: 1;
}

.rs-hero__media img,
.rs-category-card__image img,
.rs-product-card__image img,
.woocommerce div.product div.images img,
.woocommerce ul.products li.product a img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.rs-category-card,
.rs-product-card,
.rs-filter-panel,
.rs-catalog-toolbar,
.rs-benefit-grid article,
.rs-trust-strip__inner,
.rs-catalog-hero {
	border-radius: var(--radius-md);
}

.rs-category-card,
.rs-product-card,
.rs-filter-panel,
.rs-catalog-toolbar,
.rs-benefit-grid article {
	border: 1px solid rgba(34, 40, 54, 0.08);
	box-shadow: var(--shadow-sm);
}

.rs-category-card:hover,
.rs-category-card:focus-within,
.rs-product-card:hover,
.rs-product-card:focus-within,
.rs-benefit-grid article:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.rs-category-card__body,
.rs-product-card__body {
	padding: 1rem 1rem 1.1rem;
}

.rs-category-card__image,
.rs-product-card__image {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(34, 40, 54, 0.05));
}

.rs-product-card__image {
	aspect-ratio: 1 / 1;
}

.rs-product-card__meta {
	gap: 0.75rem;
}

.rs-product-card__title,
.rs-product-card h3 {
	font-size: 1.04rem;
	line-height: 1.35;
}

.rs-product-card__price,
.price {
	font-size: 1.05rem;
	font-weight: 800;
}

.rs-product-card__badge,
.onsale {
	border-radius: var(--radius-pill);
	box-shadow: 0 8px 18px rgba(34, 40, 54, 0.12);
}

.rs-product-search,
.rs-catalog-search input,
.rs-sort-control select {
	border-radius: 16px;
}

.rs-catalog-toolbar,
.rs-filter-panel {
	backdrop-filter: blur(8px);
}

.rs-catalog-grid,
.rs-product-grid,
.woocommerce ul.products {
	row-gap: clamp(1rem, 2vw, 1.5rem);
}

.rs-empty-state,
.rs-no-results,
.rs-product-promises,
.rs-footer__cta,
.rs-mobile-drawer,
.rs-search-panel {
	border-radius: var(--radius-md);
}

.rs-mobile-drawer,
.rs-search-panel {
	box-shadow: var(--shadow-lg);
}

.rs-search-panel,
.rs-mobile-drawer,
.rs-category-menu {
	border: 1px solid rgba(34, 40, 54, 0.1);
}

.rs-skeleton,
.rs-product-grid.is-loading .rs-product-card,
.woocommerce .blockUI.blockOverlay,
.woocommerce .loader::before {
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.55) 50%,
			rgba(255, 255, 255, 0) 100%
		),
		linear-gradient(180deg, rgba(34, 40, 54, 0.06), rgba(34, 40, 54, 0.12));
	background-size: 240px 100%, 100% 100%;
	animation: rs-skeleton-shimmer 1.4s linear infinite;
}

@keyframes rs-skeleton-shimmer {
	from {
		background-position: -240px 0, 0 0;
	}

	to {
		background-position: calc(100% + 240px) 0, 0 0;
	}
}

@media (max-width: 900px) {
	body {
		font-size: 16px;
	}

	.rs-section {
		padding-bottom: 3rem;
		padding-top: 3rem;
	}

	.rs-hero__inner,
	.rs-header__inner {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.rs-category-grid,
	.rs-product-grid,
	.woocommerce ul.products {
		gap: 1rem;
	}
}

@media (max-width: 640px) {
	.rs-icon-button,
	.rs-cart-link,
	.rs-button,
	.rs-product-card__button {
		min-height: 48px;
	}

	.rs-product-card__image,
	.woocommerce ul.products li.product a img {
		aspect-ratio: 1 / 1;
	}

	.rs-category-card__body,
	.rs-product-card__body {
		padding: 0.9rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Phase 2 finish: shared rhythm, surfaces, and resilient loading states. */
:root {
	--space-section: clamp(3.5rem, 7vw, 6rem);
	--surface-soft: #f7f8fa;
	--border-strong: #d9dee6;
	--shadow-card: 0 8px 24px rgba(7, 20, 38, 0.07);
	--shadow-card-hover: 0 16px 34px rgba(7, 20, 38, 0.12);
	--focus-ring: #b77d16;
}

body {
	background: var(--background);
	line-height: 1.62;
}

.rs-section,
.rs-category-section,
.rs-featured-products {
	padding-bottom: var(--space-section);
	padding-top: var(--space-section);
}

.rs-section-heading {
	gap: 0.6rem;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.rs-section-heading h2,
.rs-catalog-hero h1,
.rs-catalog-hero h2 {
	line-height: 1.12;
	margin-top: 0;
}

.rs-category-card,
.rs-product-card,
.rs-filter-panel,
.rs-catalog-toolbar,
.rs-benefit-grid article,
.rs-trust-strip__inner {
	border-color: var(--border);
	box-shadow: var(--shadow-card);
}

.rs-category-card:hover,
.rs-category-card:focus-within,
.rs-product-card:hover,
.rs-product-card:focus-within,
.rs-benefit-grid article:hover {
	box-shadow: var(--shadow-card-hover);
}

.rs-category-card__image,
.rs-product-card__image,
.rs-product-card__media {
	background: var(--surface-soft);
	overflow: hidden;
}

.rs-category-card__image img,
.rs-product-card__image img,
.rs-product-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.rs-category-card__body,
.rs-product-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.rs-product-card__description,
.rs-category-card p {
	line-height: 1.5;
}

.rs-product-card__price {
	margin-top: auto;
}

.rs-button,
.rs-product-card__button,
.rs-cart-link,
.rs-icon-button {
	min-height: 46px;
}

.rs-button:focus-visible,
.rs-product-card__button:focus-visible,
.rs-cart-link:focus-visible,
.rs-icon-button:focus-visible,
.rs-category-card:focus-visible,
.rs-product-card:focus-visible {
	box-shadow: 0 0 0 3px var(--background), 0 0 0 5px var(--focus-ring);
	outline: 0;
}

.rs-skeleton {
	background-color: var(--surface-soft);
	border-radius: var(--radius-md);
	min-height: 10rem;
}

.rs-product-grid.is-loading {
	opacity: 0.68;
	pointer-events: none;
}

.rs-product-grid.is-loading .rs-product-card {
	animation: none;
	background-color: var(--surface-soft);
	min-height: 22rem;
}

.rs-product-grid.is-loading .rs-product-card > * {
	visibility: hidden;
}

img:not(.is-loaded) {
	background-color: var(--surface-soft);
}

.rs-header,
.rs-mobile-drawer,
.rs-search-panel {
	box-shadow: var(--shadow-card);
}

@media (max-width: 900px) {
	.rs-section,
	.rs-category-section,
	.rs-featured-products {
		padding-bottom: 3.5rem;
		padding-top: 3.5rem;
	}

	.rs-category-grid,
	.rs-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.rs-category-grid,
	.rs-product-grid {
		gap: 0.75rem;
	}

	.rs-category-card__body,
	.rs-product-card__body {
		padding: 0.85rem;
	}

	.rs-button,
	.rs-product-card__button {
		width: 100%;
	}
}

/* Custom-order studio and compact moving announcement. */
.rs-announcement__inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; overflow:hidden; }
.rs-announcement__ticker { display:flex; align-items:center; gap:.75rem; min-width:0; white-space:nowrap; }
.rs-announcement__ticker span { animation: ksc-ticker 18s linear infinite; }
.rs-announcement__ticker a { color:inherit; font-weight:800; text-decoration:underline; }
.rs-announcement__proof { display:flex; gap:1rem; white-space:nowrap; }
.rs-nav-custom { color:var(--primary-hover) !important; font-weight:800 !important; }
.rs-nav-custom .dashicons { font-size:1rem; height:1rem; vertical-align:-.2rem; width:1rem; }
@keyframes ksc-ticker { from { transform:translateX(12%); } to { transform:translateX(-105%); } }
@media (prefers-reduced-motion: reduce) { .rs-announcement__ticker span { animation:none; } }
.ksc-custom-order { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); margin:clamp(2rem,6vw,5rem) auto; max-width:920px; overflow:hidden; padding:clamp(1.5rem,5vw,4rem); position:relative; }
.ksc-custom-order::before { background:linear-gradient(135deg,rgba(216,155,43,.15),transparent 55%),url('../assets/ksc-category-custom.webp') center/cover; content:""; inset:0; opacity:.1; pointer-events:none; position:absolute; }
.ksc-custom-order > * { position:relative; }
.ksc-custom-order__intro { max-width:650px; }
.ksc-custom-order__intro h1 { color:var(--secondary); font-family:var(--heading-font); font-size:clamp(2rem,5vw,3.5rem); margin:.2rem 0 .8rem; }
.ksc-custom-order__intro p:last-child { color:var(--muted-foreground); font-size:1.05rem; }
.ksc-custom-order__notice { background:#edf8f0; border:1px solid #a9d6b2; border-radius:10px; color:#17632b; margin:1.5rem 0; padding:1rem; }
.ksc-custom-order__notice--error { background:#fff3f1; border-color:#e7aaa1; color:#9e2d20; }
.ksc-custom-order__form { margin-top:2rem; }
.ksc-custom-order__grid { display:grid; gap:1.1rem 1.25rem; grid-template-columns:repeat(2,minmax(0,1fr)); }
.ksc-custom-order__grid label { color:var(--secondary); display:flex; flex-direction:column; font-size:.8rem; font-weight:800; gap:.45rem; }
.ksc-custom-order__grid input,.ksc-custom-order__grid select,.ksc-custom-order__grid textarea { background:rgba(255,255,255,.9); border:1px solid var(--border); border-radius:9px; color:var(--foreground); font:inherit; font-weight:400; padding:.8rem .9rem; width:100%; }
.ksc-custom-order__grid textarea { resize:vertical; }
.ksc-custom-order__full { grid-column:1/-1; }
.ksc-custom-order__upload small { color:var(--muted-foreground); font-size:.72rem; font-weight:500; }
.ksc-custom-order__form > .rs-button { margin-top:1.5rem; }
@media (max-width:700px) { .rs-announcement__proof { display:none; } .rs-announcement__inner { justify-content:center; } .ksc-custom-order__grid { grid-template-columns:1fr; } .ksc-custom-order__full { grid-column:auto; } }
