:root {
	--rhino-color-brand: #b30d0d;
	--rhino-color-brand-dark: #781111;
	--rhino-color-gold: #c28b1e;
	--rhino-color-ink: #171717;
	--rhino-color-muted: #5e6268;
	--rhino-color-border: #d9dde2;
	--rhino-color-surface: #ffffff;
	--rhino-color-surface-soft: #f6f7f8;
	--rhino-color-success: #287a3c;
	--rhino-color-notice: #fff7df;
	--rhino-shadow-card: 0 12px 32px rgb(23 23 23 / 8%);
	--rhino-radius-sm: 0.375rem;
	--rhino-radius-md: 0.75rem;
	--rhino-radius-lg: 1rem;
	--rhino-space-1: 0.25rem;
	--rhino-space-2: 0.5rem;
	--rhino-space-3: 0.75rem;
	--rhino-space-4: 1rem;
	--rhino-space-5: 1.5rem;
	--rhino-space-6: 2rem;
	--rhino-space-7: 3rem;
	--rhino-space-8: 4.5rem;
	--rhino-container: 80rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--rhino-color-surface);
	color: var(--rhino-color-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--rhino-color-brand); text-underline-offset: 0.16em; }
a:hover { color: var(--rhino-color-brand-dark); }
:focus-visible { outline: 3px solid var(--rhino-color-brand); outline-offset: 3px; box-shadow: 0 0 0 2px var(--rhino-color-surface); }
h1, h2, h3, h4, h5, h6 { color: var(--rhino-color-ink); line-height: 1.15; text-wrap: balance; }
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus {
	top: var(--rhino-space-4);
	left: var(--rhino-space-4);
	z-index: 100000;
	width: auto;
	height: auto;
	padding: var(--rhino-space-3) var(--rhino-space-4);
	clip: auto;
	background: var(--rhino-color-surface);
}
.rhino-container { width: min(100% - 2rem, var(--rhino-container)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--rhino-color-border); background: var(--rhino-color-surface); }
.site-header__inner { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: var(--rhino-space-5); }
.custom-logo { width: auto; max-height: 4.25rem; }
.site-title { color: var(--rhino-color-ink); font-size: 1.35rem; font-weight: 800; text-decoration: none; }
.menu-toggle { display: none; }
.primary-navigation ul { display: flex; align-items: center; gap: var(--rhino-space-5); margin: 0; padding: 0; list-style: none; }
.menu-link { color: var(--rhino-color-ink); font-weight: 700; text-decoration: none; }
.site-main { min-height: 55vh; }
.content-layout, .page-shell { padding-block: var(--rhino-space-7); }
.entry-card { margin-block: var(--rhino-space-6); padding: var(--rhino-space-6); border: 1px solid var(--rhino-color-border); border-radius: var(--rhino-radius-lg); box-shadow: var(--rhino-shadow-card); }
.entry-meta { color: var(--rhino-color-muted); font-size: 0.9rem; }
.site-footer { margin-top: var(--rhino-space-8); border-top: 4px solid var(--rhino-color-brand); background: var(--rhino-color-ink); color: #fff; }
.site-footer__inner { display: grid; gap: var(--rhino-space-5); padding-block: var(--rhino-space-7); }
.site-footer a, .site-footer h2 { color: #fff; }
.site-footer ul { display: flex; flex-wrap: wrap; gap: var(--rhino-space-4); padding: 0; list-style: none; }

.button, button, input[type="submit"], .wp-element-button {
	min-height: 2.75rem;
	padding: 0.65rem 1.1rem;
	border: 2px solid var(--rhino-color-brand);
	border-radius: var(--rhino-radius-sm);
	background: var(--rhino-color-brand);
	color: #fff;
	font: inherit;
	font-weight: 750;
	cursor: pointer;
	text-decoration: none;
}
.button:hover, button:hover, input[type="submit"]:hover, .wp-element-button:hover { background: var(--rhino-color-brand-dark); border-color: var(--rhino-color-brand-dark); color: #fff; }
input, select, textarea { width: 100%; min-height: 2.75rem; padding: 0.65rem 0.75rem; border: 1px solid var(--rhino-color-border); border-radius: var(--rhino-radius-sm); background: #fff; color: var(--rhino-color-ink); font: inherit; }
.search-form { display: flex; max-width: 38rem; gap: var(--rhino-space-2); }
.search-form label { flex: 1; }

.product-card, .department-card { overflow: hidden; border: 1px solid var(--rhino-color-border); border-radius: var(--rhino-radius-md); background: #fff; box-shadow: var(--rhino-shadow-card); }
.product-card__body, .department-card__body { padding: var(--rhino-space-5); }
.price, .woocommerce-Price-amount { color: var(--rhino-color-ink); font-weight: 800; }
.price del { color: var(--rhino-color-muted); font-weight: 500; }
.price ins { color: var(--rhino-color-brand); text-decoration: none; }
.badge { display: inline-flex; padding: 0.25rem 0.55rem; border-radius: 999px; background: var(--rhino-color-brand); color: #fff; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.notice, .woocommerce-message, .woocommerce-info { padding: var(--rhino-space-4); border-left: 4px solid var(--rhino-color-gold); border-radius: var(--rhino-radius-sm); background: var(--rhino-color-notice); }
.alignwide { width: min(100%, var(--rhino-container)); margin-inline: auto; }
.alignfull { width: 100%; max-width: none; }

@media (max-width: 48rem) {
	.site-header__inner { flex-wrap: wrap; padding-block: var(--rhino-space-3); }
	.menu-toggle { display: inline-flex; width: auto; }
	.primary-navigation { display: none; width: 100%; }
	.primary-navigation.is-open { display: block; }
	.primary-navigation ul { align-items: stretch; flex-direction: column; gap: 0; padding-bottom: var(--rhino-space-3); }
	.primary-navigation .menu-link { display: block; padding: var(--rhino-space-3) 0; }
	.search-form { flex-direction: column; }
}

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