:root {
	--rush-ink-soft: #292722;
	--rush-white: #fff;
	--rush-gold-glow: rgba(255, 195, 38, 0.28);
	--rush-line-dark: rgba(255, 255, 255, 0.14);
	--rush-shadow-1: 0 12px 36px rgba(21, 17, 7, 0.10);
	--rush-shadow-2: 0 22px 70px rgba(21, 17, 7, 0.18);
}

body.rush-home-active {
	background:
		linear-gradient(180deg, rgba(251, 250, 244, 0.92), rgba(251, 250, 244, 0.98)),
		url("../img/rush-white-gold.png") center top / 100% auto no-repeat;
}

.rush-home {
	overflow: hidden;
	background: var(--rush-paper);
	color: var(--rush-ink);
}

.rush-home .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;
}

.rush-home .screen-reader-text:focus {
	z-index: 1000;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 12px 14px;
	margin: 0;
	clip: auto;
	background: var(--rush-gold);
	color: var(--rush-carbon);
	font-weight: 900;
}

.rush-home a:not(.rush-button) {
	color: inherit;
	text-decoration: none;
}

.rush-home .rush-button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--rush-radius);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.rush-home .rush-button:hover,
.rush-home .rush-button:focus-visible {
	transform: translateY(-1px);
}

.rush-home .rush-button:focus-visible,
.rush-home a:focus-visible,
.rush-home button:focus-visible {
	outline: 3px solid var(--rush-gold);
	outline-offset: 3px;
}

.rush-home .rush-button-primary {
	background: var(--rush-gold);
	color: var(--rush-carbon);
	box-shadow: 0 12px 30px rgba(222, 138, 8, 0.28);
}

.rush-home .rush-button-dark {
	background: var(--rush-carbon);
	color: var(--rush-white);
}

.rush-home .rush-button-ghost {
	border: 1px solid var(--rush-line);
	background: rgba(255, 255, 255, 0.72);
	color: var(--rush-ink);
}

.rush-header {
	position: sticky;
	top: 0;
	z-index: 50;
	color: var(--rush-white);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.98)),
		url("../img/rush-black-grain.png") center / cover;
	border-bottom: 1px solid var(--rush-line-dark);
}

.admin-bar .rush-header {
	top: 32px;
}

.rush-nav {
	width: min(100%, var(--rush-max-width));
	min-height: 76px;
	margin: 0 auto;
	padding: 0 22px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 22px;
}

.rush-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.rush-brand-logo {
	display: block;
	width: auto;
	height: clamp(48px, 4.25vw, 62px);
	object-fit: contain;
	filter: drop-shadow(0 0 14px rgba(255, 195, 38, 0.18));
}

.rush-brand-mark {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 195, 38, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
}

.rush-brand-mark img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.rush-brand-word {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.rush-brand-word strong {
	color: var(--rush-gold);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 34px;
	font-weight: 900;
}

.rush-brand-word span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.rush-nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	font-weight: 700;
}

.rush-nav-links a:hover {
	color: var(--rush-gold);
}

.rush-nav-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.rush-ticker {
	height: 38px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: var(--rush-gold);
	color: var(--rush-carbon);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 18px;
	font-weight: 900;
	white-space: nowrap;
}

.rush-ticker-track {
	display: flex;
	gap: 34px;
	min-width: max-content;
	animation: rushTicker 26s linear infinite;
}

.rush-ticker-track span {
	display: inline-flex;
	align-items: center;
	gap: 34px;
}

.rush-ticker-dot {
	width: 7px;
	height: 7px;
	background: var(--rush-carbon);
	border-radius: 999px;
	display: inline-block;
}

.rush-mobile-quicknav {
	display: none;
}

@keyframes rushTicker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.rush-section {
	padding: 74px 22px;
}

.rush-section-inner {
	width: min(100%, var(--rush-max-width));
	margin: 0 auto;
}

.rush-section-head {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
	gap: 28px;
	align-items: end;
	margin-bottom: 30px;
}

.rush-section-head p {
	margin: 0;
	color: rgba(16, 16, 14, 0.70);
	font-size: 18px;
}

.rush-eyebrow {
	margin: 0 0 18px;
	color: var(--rush-gold-deep);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 20px;
	font-weight: 900;
}

.rush-home h1,
.rush-home h2,
.rush-home h3 {
	margin: 0;
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-weight: 900;
	line-height: 0.92;
}

.rush-home h1 {
	max-width: 720px;
	font-size: clamp(54px, 7vw, 92px);
}

.rush-home h2 {
	font-size: clamp(40px, 5vw, 64px);
}

.rush-home h3 {
	font-size: 30px;
}

.rush-hero {
	position: relative;
	min-height: calc(100svh - 114px);
	display: grid;
	align-items: center;
	padding: 46px 22px 38px;
	background:
		linear-gradient(90deg, rgba(251, 250, 244, 0.95) 0%, rgba(251, 250, 244, 0.72) 52%, rgba(247, 240, 223, 0.82) 100%),
		url("../img/rush-white-gold.png") center top / cover no-repeat;
}

.rush-hero-inner {
	width: min(100%, var(--rush-max-width));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 38px;
	align-items: center;
}

.rush-hero-copy-panel {
	position: relative;
	z-index: 2;
}

.rush-hero-media {
	display: grid;
	gap: 0;
}

.rush-hero-copy {
	max-width: 560px;
	margin: 22px 0 0;
	color: var(--rush-ink-soft);
	font-size: 20px;
}

.rush-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.rush-hero-route-strip {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	width: min(100%, 560px);
}

.rush-hero-route-strip a {
	min-height: 98px;
	padding: 12px;
	display: grid;
	align-content: space-between;
	border: 1px solid rgba(16, 16, 14, 0.12);
	border-radius: var(--rush-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 235, 176, 0.62));
	box-shadow: 0 10px 24px rgba(21, 17, 7, 0.08);
	transition: transform 180ms ease, border-color 180ms ease;
}

.rush-hero-route-strip a:hover,
.rush-hero-route-strip a:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(222, 138, 8, 0.44);
}

.rush-hero-route-strip span,
.rush-hero-route-strip small {
	color: rgba(16, 16, 14, 0.58);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.rush-hero-route-strip strong {
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: clamp(23px, 2.4vw, 32px);
	line-height: 0.9;
}

.rush-hero-note {
	width: min(100%, 510px);
	margin-top: 22px;
	padding: 16px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: center;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.74);
	box-shadow: var(--rush-shadow-1);
}

.rush-note-number {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--rush-carbon);
	color: var(--rush-gold);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 22px;
	font-weight: 900;
}

.rush-hero-note strong {
	display: block;
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 22px;
	line-height: 1;
}

.rush-hero-note span span {
	display: block;
	margin-top: 3px;
	color: rgba(16, 16, 14, 0.68);
	font-size: 14px;
}

.rush-location-film {
	position: relative;
	min-height: 540px;
	overflow: hidden;
	isolation: isolate;
	border: 1px solid rgba(16, 16, 14, 0.16);
	border-radius: var(--rush-radius);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.82)),
		url("../img/rush-gold-texture.jpg") center / cover;
	box-shadow: var(--rush-shadow-2);
}

.rush-location-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rush-film-scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.08) 42%, rgba(8, 8, 8, 0.78) 100%),
		linear-gradient(90deg, rgba(8, 8, 8, 0.68) 0%, rgba(8, 8, 8, 0.12) 52%, rgba(8, 8, 8, 0.42) 100%);
	pointer-events: none;
}

.rush-film-topline {
	position: absolute;
	left: 18px;
	top: 18px;
	z-index: 4;
	display: grid;
	gap: 4px;
	max-width: calc(100% - 128px);
	padding: 12px 14px;
	border: 1px solid rgba(255, 195, 38, 0.34);
	border-radius: var(--rush-radius);
	background: rgba(8, 8, 8, 0.42);
	color: var(--rush-white);
	backdrop-filter: blur(14px);
}

.rush-film-topline span {
	color: var(--rush-gold-soft);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.rush-film-topline strong {
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 26px;
	line-height: 0.95;
}

.rush-film-caption {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 4;
	max-width: 280px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--rush-radius);
	background: rgba(8, 8, 8, 0.42);
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 800;
	backdrop-filter: blur(14px);
}

.rush-motion-panel {
	position: relative;
	min-height: 500px;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--rush-radius);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.10), rgba(8, 8, 8, 0.58)),
		url("../img/rush-gradient-gold.jpg") center / cover;
	box-shadow: var(--rush-shadow-2);
}

.rush-motion-reel,
.rush-motion-video {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.rush-motion-reel {
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(8, 8, 8, 0.92), rgba(48, 32, 6, 0.76)),
		url("../img/rush-gold-texture.jpg") center / cover;
}

.rush-motion-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rush-motion-product {
	position: absolute;
	z-index: 1;
	object-fit: contain;
	filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.34));
	will-change: transform;
}

.rush-motion-product-bag {
	left: 7%;
	bottom: 12%;
	width: min(39%, 250px);
	transform: rotate(-7deg);
	animation: rushFloatBag 7s ease-in-out infinite alternate;
}

.rush-motion-product-jar {
	left: 35%;
	top: 11%;
	width: min(34%, 218px);
	animation: rushFloatJar 8s ease-in-out infinite alternate;
}

.rush-motion-product-vape {
	right: 7%;
	bottom: 14%;
	width: min(31%, 190px);
	transform: rotate(8deg);
	animation: rushFloatVape 6.4s ease-in-out infinite alternate;
}

.rush-motion-location-map {
	position: absolute;
	left: 22px;
	top: 22px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 72%;
}

.rush-motion-location-map span {
	padding: 8px 11px;
	border: 1px solid rgba(255, 195, 38, 0.28);
	border-radius: 999px;
	background: rgba(8, 8, 8, 0.36);
	color: var(--rush-gold-soft);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 17px;
	font-weight: 900;
	backdrop-filter: blur(12px);
}

.rush-motion-orbit {
	position: absolute;
	z-index: 0;
	border: 1px solid rgba(255, 195, 38, 0.18);
	border-radius: 999px;
	pointer-events: none;
}

.rush-motion-orbit-one {
	inset: 9% 12% 18% 10%;
	animation: rushOrbitOne 13s ease-in-out infinite alternate;
}

.rush-motion-orbit-two {
	inset: 26% -8% -12% 42%;
	animation: rushOrbitTwo 10s ease-in-out infinite alternate;
}

@keyframes rushFloatBag {
	from {
		transform: translate3d(-2%, 1%, 0) rotate(-8deg);
	}

	to {
		transform: translate3d(4%, -3%, 0) rotate(-4deg);
	}
}

@keyframes rushFloatJar {
	from {
		transform: translate3d(1%, -2%, 0) rotate(2deg);
	}

	to {
		transform: translate3d(-3%, 4%, 0) rotate(-2deg);
	}
}

@keyframes rushFloatVape {
	from {
		transform: translate3d(1%, 2%, 0) rotate(8deg);
	}

	to {
		transform: translate3d(-4%, -3%, 0) rotate(4deg);
	}
}

@keyframes rushOrbitOne {
	from {
		transform: rotate(-4deg) scale(0.98);
	}

	to {
		transform: rotate(3deg) scale(1.04);
	}
}

@keyframes rushOrbitTwo {
	from {
		transform: rotate(6deg) scale(0.96);
	}

	to {
		transform: rotate(-4deg) scale(1.06);
	}
}

.rush-motion-panel::before {
	content: "";
	position: absolute;
	inset: -12%;
	z-index: 0;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%),
		radial-gradient(circle at 10% 92%, rgba(255, 195, 38, 0.14), transparent 24%),
		radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.10), transparent 22%);
	animation: rushMotionDrift 12s ease-in-out infinite alternate;
}

.rush-motion-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.00) 48%, rgba(8, 8, 8, 0.54)),
		radial-gradient(circle at 12% 92%, rgba(255, 195, 38, 0.16), transparent 30%);
	pointer-events: none;
}

@keyframes rushMotionDrift {
	from {
		transform: translate3d(-2%, -1%, 0) scale(1);
	}

	to {
		transform: translate3d(2%, 1%, 0) scale(1.04);
	}
}

.rush-location-rail {
	position: absolute;
	inset: 72px 0 auto;
	z-index: 2;
	display: flex;
	gap: 12px;
	width: max-content;
	transform: rotate(-4deg);
	animation: rushRail 22s linear infinite;
}

.rush-location-rail span {
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(8, 8, 8, 0.40);
	color: var(--rush-gold-soft);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 34px;
	font-weight: 900;
	backdrop-filter: blur(12px);
}

@keyframes rushRail {
	from {
		transform: translateX(0) rotate(-4deg);
	}

	to {
		transform: translateX(-42%) rotate(-4deg);
	}
}

.rush-video-tag {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	width: 74px;
	height: 74px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 195, 38, 0.35);
	border-radius: 999px;
	background: rgba(8, 8, 8, 0.42);
	backdrop-filter: blur(12px);
}

.rush-video-tag img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.rush-motion-content {
	position: absolute;
	z-index: 4;
	inset: auto auto 16px 16px;
	color: var(--rush-white);
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--rush-radius);
	background: rgba(8, 8, 8, 0.38);
	backdrop-filter: blur(16px);
}

.rush-motion-kicker {
	width: fit-content;
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 195, 38, 0.16);
	color: var(--rush-gold-soft);
	font-size: 13px;
	font-weight: 800;
}

.rush-motion-title {
	max-width: 560px;
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 44px;
	font-weight: 900;
	line-height: 0.95;
}

.rush-location-tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	width: min(100%, 430px);
}

.rush-location-tabs button {
	min-height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.20);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.10);
	color: var(--rush-white);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 16px;
	font-weight: 900;
	backdrop-filter: blur(14px);
	cursor: pointer;
}

.rush-location-tabs button.is-active {
	background: var(--rush-gold);
	color: var(--rush-carbon);
	border-color: var(--rush-gold);
}

.rush-quick-order {
	position: relative;
	z-index: 6;
	margin: -32px 18px 0;
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
	gap: 14px;
	align-items: stretch;
	padding: 16px;
	border: 1px solid rgba(16, 16, 14, 0.10);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: var(--rush-shadow-1);
}

.rush-quick-order .rush-eyebrow {
	margin-bottom: 8px;
}

.rush-quick-order h2 {
	font-size: clamp(30px, 3vw, 42px);
}

.rush-quick-order-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.rush-quick-order-grid a {
	min-height: 94px;
	padding: 14px;
	display: grid;
	align-content: center;
	justify-items: start;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 230, 168, 0.54));
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rush-quick-order-grid a:hover,
.rush-quick-order-grid a:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(222, 138, 8, 0.48);
	box-shadow: 0 14px 32px rgba(21, 17, 7, 0.12);
}

.rush-quick-order-grid strong {
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 29px;
	line-height: 0.95;
}

.rush-quick-order-grid span {
	margin-top: 6px;
	color: rgba(16, 16, 14, 0.62);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.rush-locations {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 245, 241, 0.86)),
		url("../img/rush-white-gold.png") center / cover;
	border-top: 1px solid var(--rush-line);
	border-bottom: 1px solid var(--rush-line);
}

.rush-location-grid,
.rush-location-board {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.rush-location-card {
	min-height: 430px;
	display: grid;
	grid-template-rows: 180px 1fr auto;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: var(--rush-white);
	overflow: hidden;
	box-shadow: var(--rush-shadow-1);
}

.rush-location-card-media {
	position: relative;
	min-height: 180px;
	background:
		linear-gradient(135deg, rgba(8, 8, 8, 0.10), rgba(8, 8, 8, 0.36)),
		var(--rush-card-image, url("../img/rush-gradient-gold.jpg")) center / cover;
}

.rush-location-card-media span {
	position: absolute;
	left: 14px;
	bottom: 14px;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 195, 38, 0.40);
	border-radius: 999px;
	background: rgba(8, 8, 8, 0.58);
	color: var(--rush-gold);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 26px;
	font-weight: 900;
	backdrop-filter: blur(12px);
}

.rush-location-card-body {
	padding: 20px;
	display: grid;
	align-content: space-between;
	gap: 18px;
}

.rush-location-card h3 {
	font-size: 42px;
}

.rush-location-card p {
	margin: 12px 0 0;
	max-width: 310px;
	color: rgba(16, 16, 14, 0.72);
}

.rush-location-micro {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.rush-location-micro span {
	min-height: 34px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(16, 16, 14, 0.10);
	border-radius: var(--rush-radius);
	background: rgba(255, 246, 220, 0.72);
	color: rgba(16, 16, 14, 0.68);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.rush-location-card-footer {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	padding: 16px;
	align-items: center;
	border-top: 1px solid var(--rush-line);
	background: rgba(255, 255, 255, 0.82);
}

.rush-location-card-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.rush-route {
	color: rgba(16, 16, 14, 0.62);
	font-size: 13px;
	font-weight: 800;
	word-break: break-word;
}

.rush-product-band {
	color: var(--rush-white);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.98)),
		url("../img/rush-black-grain.png") center / cover;
}

.rush-product-band .rush-section-head p {
	color: rgba(255, 255, 255, 0.72);
}

.rush-product-band h2 {
	color: var(--rush-gold);
}

.rush-shelf {
	position: relative;
	min-height: 430px;
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 28px;
	align-items: center;
	border: 1px solid var(--rush-line-dark);
	border-radius: var(--rush-radius);
	background:
		radial-gradient(circle at 80% 10%, rgba(255, 195, 38, 0.22), transparent 30%),
		rgba(255, 255, 255, 0.035);
	overflow: hidden;
}

.rush-shelf-copy {
	padding: 34px;
}

.rush-shelf-copy h3 {
	font-size: 46px;
	color: var(--rush-white);
}

.rush-shelf-copy p {
	margin: 16px 0 0;
	max-width: 460px;
	color: rgba(255, 255, 255, 0.70);
}

.rush-shelf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.rush-equal-menu-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rush-product-stack {
	min-height: 430px;
	position: relative;
}

.rush-product-stack img {
	position: absolute;
	object-fit: contain;
	filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.42));
}

.rush-product-stack .rush-bag {
	width: 44%;
	left: 34%;
	bottom: -5%;
	z-index: 3;
}

.rush-product-stack .rush-jar {
	width: 31%;
	left: 12%;
	bottom: 0;
	z-index: 2;
}

.rush-product-stack .rush-vape {
	width: 25%;
	right: 7%;
	bottom: 6%;
	z-index: 1;
}

.rush-rewards {
	background:
		linear-gradient(180deg, rgba(251, 250, 244, 0.90), rgba(247, 240, 223, 0.90)),
		url("../img/rush-gold-texture.jpg") center / cover;
}

.rush-rewards-card {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
	gap: 24px;
	padding: 28px;
	border: 1px solid rgba(16, 16, 14, 0.12);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--rush-shadow-1);
}

.rush-rewards-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 24px;
}

.rush-reward-pill {
	min-height: 88px;
	padding: 16px;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.78);
}

.rush-reward-pill strong {
	display: block;
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 24px;
	line-height: 1;
}

.rush-reward-pill span {
	display: block;
	margin-top: 6px;
	color: rgba(16, 16, 14, 0.64);
	font-size: 14px;
}

.rush-blog {
	background: var(--rush-paper);
}

.rush-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
	gap: 18px;
}

.rush-feature-post,
.rush-post-card {
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.78);
	overflow: hidden;
	box-shadow: var(--rush-shadow-1);
}

.rush-feature-media {
	min-height: 340px;
	position: relative;
	background:
		linear-gradient(135deg, rgba(16, 16, 14, 0.08), rgba(255, 195, 38, 0.18)),
		url("../img/rush-white-gold.png") center / cover;
}

.rush-feature-media::after {
	content: "";
	position: absolute;
	inset: auto 20px 20px auto;
	width: 110px;
	height: 110px;
	background: url("../img/rush-logo-r.png") center / contain no-repeat;
	opacity: 0.55;
}

.rush-feature-body {
	padding: 24px;
}

.rush-meta {
	margin-bottom: 10px;
	color: var(--rush-gold-deep);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 19px;
	font-weight: 900;
}

.rush-feature-body p,
.rush-post-card p {
	color: rgba(16, 16, 14, 0.70);
	margin: 12px 0 0;
}

.rush-post-list {
	display: grid;
	gap: 14px;
}

.rush-post-card {
	display: grid;
	grid-template-columns: 140px 1fr;
	min-height: 150px;
}

.rush-post-thumb {
	background:
		linear-gradient(135deg, rgba(8, 8, 8, 0.78), rgba(255, 195, 38, 0.24)),
		url("../img/rush-gradient-gold.jpg") center / cover;
}

.rush-post-card:nth-child(2) .rush-post-thumb {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(203, 217, 203, 0.50)),
		url("../img/rush-white-gold.png") center / cover;
}

.rush-post-card:nth-child(3) .rush-post-thumb {
	background:
		linear-gradient(135deg, rgba(8, 8, 8, 0.66), rgba(255, 195, 38, 0.18)),
		url("../img/rush-black-grain.png") center / cover;
}

.rush-post-body {
	padding: 18px;
	display: grid;
	align-content: center;
}

.rush-post-body h3 {
	font-size: 27px;
}

.rush-local-seo {
	background: linear-gradient(180deg, rgba(238, 245, 241, 0.80), rgba(251, 250, 244, 0.96));
	border-top: 1px solid var(--rush-line);
}

.rush-seo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.rush-seo-card {
	min-height: 260px;
	padding: 22px;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.74);
}

.rush-seo-card h3 {
	font-size: 30px;
}

.rush-seo-card p {
	margin: 12px 0 0;
	color: rgba(16, 16, 14, 0.68);
}

.rush-seo-card a {
	display: inline-flex;
	margin-top: 18px;
	color: var(--rush-gold-deep);
	font-weight: 900;
}

.rush-route-main {
	min-height: 70vh;
}

.rush-subhero {
	position: relative;
	min-height: 560px;
	padding: 96px 22px 76px;
	display: grid;
	align-items: end;
	isolation: isolate;
	color: var(--rush-white);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.10), rgba(8, 8, 8, 0.82)),
		var(--rush-route-image, url("../img/rush-gradient-gold.jpg")) center / cover;
}

.rush-subhero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 195, 38, 0.42), transparent 28%),
		linear-gradient(90deg, rgba(8, 8, 8, 0.74), transparent 66%);
}

.rush-subhero-copy {
	width: min(100%, var(--rush-max-width));
	margin: 0 auto;
}

.rush-subhero-copy p {
	max-width: 640px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 20px;
}

.rush-shop-route,
.rush-location-route {
	background-position: center;
}

.rush-blog-route {
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.12), rgba(8, 8, 8, 0.78)),
		url("../img/rush-black-grain.png") center / cover;
}

.rush-menu-shell {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
	gap: 22px;
	align-items: stretch;
	padding: 28px;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
		url("../img/rush-white-gold.png") center / cover;
	box-shadow: var(--rush-shadow-1);
}

.rush-menu-shell p {
	max-width: 680px;
	color: rgba(16, 16, 14, 0.70);
	font-size: 18px;
}

.rush-menu-placeholder {
	min-height: 320px;
	display: grid;
	place-items: center;
	text-align: center;
	border: 1px solid rgba(255, 195, 38, 0.42);
	border-radius: var(--rush-radius);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.96)),
		url("../img/rush-black-grain.png") center / cover;
	color: var(--rush-white);
}

.rush-menu-placeholder span,
.rush-menu-placeholder small {
	color: var(--rush-gold-soft);
	font-weight: 800;
	text-transform: uppercase;
}

.rush-menu-placeholder strong {
	display: block;
	color: var(--rush-gold);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 58px;
	line-height: 0.9;
}

.rush-route-grid,
.rush-blog-hub {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.rush-blog-card {
	grid-template-columns: 1fr;
	min-height: auto;
}

.rush-blog-card .rush-post-thumb {
	min-height: 190px;
}

[data-rush-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 620ms ease, transform 620ms ease;
}

[data-rush-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rush-footer {
	padding: 54px 22px 92px;
	color: var(--rush-white);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 1)),
		url("../img/rush-black-grain.png") center / cover;
}

.rush-footer-inner {
	width: min(100%, var(--rush-max-width));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px;
	align-items: end;
}

.rush-footer-logo {
	width: min(100%, 360px);
	height: auto;
}

.rush-footer-copy p {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.72);
	margin: 18px 0 0;
}

.rush-footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.rush-footer-links a {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--rush-line-dark);
	border-radius: var(--rush-radius);
	color: var(--rush-gold);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
	.rush-home *,
	.rush-home *::before,
	.rush-home *::after {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}

	.rush-ticker-track,
	.rush-location-rail,
	.rush-motion-panel::before {
		animation: none !important;
	}
}

@media (max-width: 980px) {
	.admin-bar .rush-header {
		top: 0;
	}

	.rush-nav {
		grid-template-columns: auto 1fr;
	}

	.rush-nav-links {
		display: none;
	}

	.rush-nav-actions {
		justify-content: end;
	}

	.rush-hero {
		min-height: auto;
		padding-top: 34px;
	}

	.rush-hero-inner,
	.rush-section-head,
	.rush-quick-order,
	.rush-shelf,
	.rush-blog-layout,
	.rush-rewards-card,
	.rush-footer-inner {
		grid-template-columns: 1fr;
	}

		.rush-motion-panel,
		.rush-location-film {
			min-height: 480px;
		}

	.rush-quick-order-grid {
		grid-template-columns: repeat(3, 1fr);
	}

		.rush-location-grid,
		.rush-location-board,
		.rush-seo-grid,
		.rush-route-grid,
	.rush-blog-hub,
	.rush-menu-shell {
		grid-template-columns: 1fr;
	}

		.rush-location-card {
			min-height: 360px;
		}

	.rush-rewards-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.rush-nav {
		min-height: 64px;
		padding: 0 14px;
	}

	.rush-brand-mark {
		width: 38px;
		height: 38px;
	}

	.rush-brand-logo {
		height: 42px;
	}

	.rush-brand-word strong {
		font-size: 30px;
	}

	.rush-brand-word span {
		display: none;
	}

	.rush-nav-actions .rush-button-ghost {
		display: none;
	}

	.rush-nav-actions .rush-button-primary {
		min-height: 42px;
		padding: 0 13px;
		font-size: 15px;
	}

	.rush-ticker {
		height: 34px;
		font-size: 16px;
	}

	.rush-mobile-quicknav {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 7px;
		padding: 8px 10px 10px;
		background:
			linear-gradient(180deg, rgba(251, 250, 244, 0.98), rgba(247, 240, 223, 0.96)),
			url("../img/rush-white-gold.png") center / cover;
		border-top: 1px solid rgba(16, 16, 14, 0.10);
		border-bottom: 1px solid rgba(16, 16, 14, 0.14);
		box-shadow: 0 12px 28px rgba(21, 17, 7, 0.08);
	}

	.rush-mobile-quicknav a {
		min-height: 44px;
		display: grid;
		place-items: center;
		border: 1px solid rgba(16, 16, 14, 0.12);
		border-radius: var(--rush-radius);
		background: linear-gradient(180deg, rgba(255, 252, 239, 0.98), rgba(255, 235, 176, 0.76));
		color: var(--rush-carbon) !important;
		font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
		font-size: 16px;
		font-weight: 900;
		line-height: 1;
		text-align: center;
		box-shadow: 0 6px 16px rgba(21, 17, 7, 0.06);
	}

	.rush-mobile-quicknav a span {
		display: block;
		color: currentColor;
	}

	.rush-mobile-quicknav a:first-child {
		background: var(--rush-gold);
		border-color: rgba(222, 138, 8, 0.42);
	}

	.rush-hero {
		padding: 14px 14px 42px;
	}

	.rush-hero-inner {
		display: flex;
		flex-direction: column;
		gap: 22px;
	}

	.rush-hero-media {
		order: 1;
		width: 100%;
		gap: 10px;
	}

	.rush-hero-copy-panel {
		order: 2;
		width: 100%;
	}

	.rush-home h1 {
		font-size: clamp(48px, 14vw, 62px);
	}

	.rush-hero-copy {
		margin-top: 14px;
		font-size: 17px;
	}

	.rush-hero-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-top: 18px;
	}

	.rush-hero-actions .rush-button {
		padding-inline: 10px;
		font-size: 15px;
	}

	.rush-hero-note {
		margin-top: 14px;
		padding: 12px;
		box-shadow: none;
	}

	.rush-note-number {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.rush-hero-note strong {
		font-size: 19px;
	}

	.rush-hero-note span span {
		font-size: 13px;
	}

		.rush-motion-panel,
		.rush-location-film {
			min-height: min(74vw, 380px);
			box-shadow: 0 14px 34px rgba(21, 17, 7, 0.16);
		}

		.rush-motion-content {
			inset: auto 10px 54px;
			gap: 8px;
			padding: 9px;
		}

		.rush-film-topline {
			left: 12px;
			top: 12px;
			max-width: calc(100% - 86px);
			padding: 9px 10px;
		}

		.rush-film-topline strong {
			font-size: 20px;
		}

		.rush-film-caption {
			left: 10px;
			right: 10px;
			bottom: 10px;
			max-width: none;
			padding: 8px 10px;
			font-size: 12px;
		}

	.rush-location-tabs {
		grid-template-columns: repeat(3, 1fr);
		gap: 5px;
		width: 100%;
	}

	.rush-location-tabs button {
		min-height: 34px;
		font-size: 13px;
	}

	.rush-video-tag {
		width: 54px;
		height: 54px;
		top: 12px;
		right: 12px;
	}

	.rush-video-tag img {
		width: 36px;
		height: 36px;
	}

		.rush-quick-order {
			margin: -18px 8px 0;
			padding: 12px;
			gap: 10px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 220, 0.88)),
			url("../img/rush-white-gold.png") center / cover;
		box-shadow: 0 12px 28px rgba(21, 17, 7, 0.10);
	}

	.rush-quick-order h2 {
		font-size: 30px;
	}

	.rush-quick-order-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
	}

	.rush-quick-order-grid a {
		min-height: 78px;
		padding: 10px 8px;
		justify-items: center;
		text-align: center;
	}

	.rush-quick-order-grid strong {
		font-size: clamp(20px, 6vw, 25px);
	}

		.rush-quick-order-grid span {
			font-size: 11px;
		}

		.rush-hero-route-strip {
			grid-template-columns: 1fr;
			gap: 7px;
			margin-top: 18px;
		}

		.rush-hero-route-strip a {
			min-height: 60px;
			grid-template-columns: auto 1fr auto;
			align-items: center;
			align-content: center;
			gap: 10px;
		}

		.rush-hero-route-strip strong {
			font-size: 25px;
		}

	.rush-section {
		padding: 54px 14px;
	}

	.rush-location-card-footer {
		grid-template-columns: 1fr;
	}

	.rush-location-card-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.rush-subhero {
		min-height: 500px;
		padding: 72px 14px 54px;
	}

	.rush-shelf-copy {
		padding: 24px;
	}

	.rush-shelf-copy h3 {
		font-size: 36px;
	}

	.rush-equal-menu-actions {
		grid-template-columns: 1fr;
	}

	.rush-product-stack {
		min-height: 330px;
	}

	.rush-post-card {
		grid-template-columns: 110px 1fr;
	}

	.rush-post-card p {
		display: none;
	}

	.rush-footer-links {
		grid-template-columns: 1fr;
	}
}

/* Shopper-first 1.2.9 pass */
.rush-shopper-hero {
	min-height: auto;
	padding-block: clamp(38px, 6vw, 82px);
}

.rush-shopper-hero .rush-hero-inner {
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
	align-items: center;
}

.rush-shopper-hero .rush-location-film {
	min-height: clamp(420px, 48vw, 620px);
}

.rush-trust-strip {
	width: min(100%, 680px);
	margin-top: 26px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.rush-trust-item {
	min-height: 102px;
	padding: 14px;
	display: grid;
	align-content: space-between;
	border: 1px solid rgba(16, 16, 14, 0.12);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 10px 24px rgba(21, 17, 7, 0.07);
}

.rush-trust-item strong {
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: clamp(22px, 2vw, 31px);
	line-height: 0.95;
}

.rush-trust-item span {
	color: rgba(16, 16, 14, 0.66);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.rush-store-picker-section {
	padding-top: 54px;
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.91)),
		url("../img/rush-black-grain.png") center / cover;
	color: var(--rush-white);
}

.rush-store-picker-head {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.38fr);
	gap: 24px;
	align-items: end;
	margin-bottom: 22px;
}

.rush-store-picker-head h2 {
	max-width: 820px;
}

.rush-picker-tools {
	display: grid;
	gap: 10px;
	justify-items: end;
}

.rush-picker-tools p {
	margin: 0;
	color: rgba(255, 255, 255, 0.70);
	font-size: 14px;
	font-weight: 800;
}

.rush-store-picker-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rush-store-card {
	position: relative;
	display: grid;
	grid-template-rows: 210px 1fr auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rush-store-card:hover,
.rush-store-card.is-nearest {
	transform: translateY(-3px);
	border-color: rgba(255, 195, 38, 0.58);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.rush-store-card.is-nearest::after {
	content: "Closest";
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--rush-gold);
	color: var(--rush-carbon);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.rush-store-photo {
	position: relative;
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(8, 8, 8, 0.54)),
		var(--rush-card-image, url("../img/rush-gradient-gold.jpg")) center / cover;
}

.rush-store-photo span {
	position: absolute;
	left: 14px;
	bottom: 14px;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 195, 38, 0.42);
	border-radius: 999px;
	background: rgba(8, 8, 8, 0.58);
	color: var(--rush-gold);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 26px;
	font-weight: 900;
	backdrop-filter: blur(12px);
}

.rush-store-content {
	padding: 18px;
	display: grid;
	gap: 12px;
}

.rush-store-topline {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: start;
}

.rush-store-topline h3 {
	color: var(--rush-white);
	font-size: clamp(36px, 4vw, 52px);
}

.rush-store-topline span {
	min-width: max-content;
	padding: 7px 9px;
	border-radius: 999px;
	background: var(--rush-gold);
	color: var(--rush-carbon);
	font-size: 12px;
	font-weight: 900;
}

.rush-store-content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.rush-store-content .rush-store-meta {
	color: var(--rush-gold-soft);
	font-size: 14px;
	font-weight: 900;
}

.rush-store-facts {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rush-store-facts li {
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	line-height: 1.3;
}

.rush-store-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rush-store-actions .rush-call-link {
	grid-column: 1 / -1;
	color: var(--rush-gold);
	font-weight: 900;
	text-align: center;
}

.rush-store-actions .rush-button-ghost {
	color: var(--rush-white);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.20);
}

.rush-deals {
	background:
		linear-gradient(180deg, rgba(251, 250, 244, 0.94), rgba(247, 240, 223, 0.96)),
		url("../img/rush-white-gold.png") center / cover;
}

.rush-deal-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.75fr));
	gap: 14px;
}

.rush-deal-card {
	min-height: 300px;
	padding: 24px;
	display: grid;
	align-content: space-between;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--rush-shadow-1);
}

.rush-deal-card-feature {
	color: var(--rush-white);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.80), rgba(8, 8, 8, 0.94)),
		url("../img/rush-gold-texture.jpg") center / cover;
}

.rush-deal-card span {
	color: var(--rush-gold-deep);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 20px;
	font-weight: 900;
}

.rush-deal-card-feature span {
	color: var(--rush-gold);
}

.rush-deal-card h3 {
	margin-top: 12px;
	font-size: clamp(34px, 4vw, 58px);
}

.rush-deal-card p {
	margin: 16px 0 0;
	color: rgba(16, 16, 14, 0.70);
	font-size: 18px;
}

.rush-deal-card-feature p {
	color: rgba(255, 255, 255, 0.78);
}

.rush-trust {
	background:
		linear-gradient(180deg, rgba(238, 245, 241, 0.88), rgba(251, 250, 244, 0.96));
	border-top: 1px solid var(--rush-line);
}

.rush-trust-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
	gap: 22px;
	align-items: start;
}

.rush-trust-layout > div:first-child {
	position: sticky;
	top: 142px;
}

.rush-trust-layout p {
	color: rgba(16, 16, 14, 0.70);
	font-size: 19px;
}

.rush-review-stack {
	display: grid;
	gap: 12px;
}

.rush-review-card {
	padding: 18px;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.80);
	box-shadow: 0 12px 30px rgba(21, 17, 7, 0.08);
}

.rush-review-card span {
	color: var(--rush-gold-deep);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 24px;
	font-weight: 900;
}

.rush-review-card p {
	margin: 8px 0 0;
	font-size: 16px;
}

.rush-faq {
	background:
		linear-gradient(180deg, rgba(251, 250, 244, 0.94), rgba(251, 250, 244, 1));
	border-top: 1px solid var(--rush-line);
}

.rush-faq-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.rush-faq-card {
	min-height: 220px;
	padding: 20px;
	border: 1px solid var(--rush-line);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.80);
	box-shadow: var(--rush-shadow-1);
}

.rush-faq-card h3 {
	font-size: 29px;
}

.rush-faq-card p {
	color: rgba(16, 16, 14, 0.70);
}

.rush-location-micro {
	grid-template-columns: 1fr;
}

.rush-location-micro span {
	justify-content: start;
	place-items: center start;
	padding: 8px 10px;
	text-align: left;
	line-height: 1.15;
}

.rush-footer-stores {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.rush-footer-stores div {
	padding: 16px;
	border: 1px solid var(--rush-line-dark);
	border-radius: var(--rush-radius);
	background: rgba(255, 255, 255, 0.04);
}

.rush-footer-stores strong {
	display: block;
	color: var(--rush-gold);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 26px;
	line-height: 0.95;
}

.rush-footer-stores span,
.rush-footer-stores a {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.rush-mobile-sticky {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 60;
	display: none;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 10px;
	border: 1px solid rgba(255, 195, 38, 0.34);
	border-radius: var(--rush-radius);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.98)),
		url("../img/rush-black-grain.png") center / cover;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.rush-mobile-sticky span {
	color: var(--rush-white);
	font-family: "Archivo Rush Condensed", "Helvetica Neue", sans-serif;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

.rush-mobile-sticky .rush-button {
	min-height: 42px;
	padding-inline: 14px;
	font-size: 15px;
}

@media (max-width: 980px) {
	.rush-shopper-hero .rush-hero-inner,
	.rush-store-picker-head,
	.rush-store-picker-grid,
	.rush-deal-grid,
	.rush-trust-layout,
	.rush-faq-grid,
	.rush-footer-stores {
		grid-template-columns: 1fr;
	}

	.rush-picker-tools {
		justify-items: start;
	}

	.rush-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rush-store-card {
		grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
		grid-template-rows: auto auto;
	}

	.rush-store-photo {
		grid-row: 1 / span 2;
		min-height: 100%;
	}

	.rush-store-actions {
		grid-column: 2;
	}

	.rush-trust-layout > div:first-child {
		position: static;
	}
}

@media (max-width: 680px) {
	.rush-shopper-hero .rush-hero-inner {
		display: flex;
		flex-direction: column;
	}

	.rush-shopper-hero .rush-hero-copy-panel {
		order: 1;
	}

	.rush-shopper-hero .rush-hero-media {
		order: 2;
	}

	.rush-shopper-hero .rush-location-film {
		min-height: min(64vw, 330px);
	}

	.rush-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 7px;
		margin-top: 18px;
	}

	.rush-trust-item {
		min-height: 92px;
		padding: 12px;
	}

	.rush-trust-item strong {
		font-size: 23px;
	}

	.rush-store-picker-section {
		padding-top: 44px;
	}

	.rush-store-picker-head {
		gap: 16px;
	}

	.rush-store-picker-head h2,
	.rush-deal-card h3 {
		font-size: clamp(38px, 12vw, 50px);
	}

	.rush-store-card {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 178px auto auto;
	}

	.rush-store-photo {
		grid-row: auto;
	}

	.rush-store-actions {
		grid-column: auto;
	}

	.rush-store-actions .rush-button {
		padding-inline: 8px;
		font-size: 14px;
	}

	.rush-store-facts li {
		font-size: 13px;
	}

	.rush-deal-card,
	.rush-faq-card {
		min-height: auto;
	}

	.rush-trust-layout p {
		font-size: 17px;
	}

	.rush-footer {
		padding-bottom: 116px;
	}

	.rush-mobile-sticky {
		display: grid;
	}
}
