/* ==========================================================================
   R Digital Commerce 0.8.0
   All theme CSS lives here — templates ship no inline <style> blocks.
   Written with logical properties so a future Arabic (or LTR) locale works
   without direction-specific overrides.
   ========================================================================== */

/* 1. Tokens
   ========================================================================== */
:root {
	--bg: #0B0B0F;
	--bg-2: #0E0E13;
	--card: #15151C;
	--card-2: #1B1B24;
	--line: #24242F;
	--line-soft: rgba(255, 255, 255, .07);

	--purple: #6D28D9;
	--purple-hi: #8B5CF6;     /* accents, icons, focus rings, borders */
	--purple-text: #9569F7;  /* small purple text — clears AA on dark surfaces */

	--white: #FFFFFF;
	--muted: #A6A6B2;
	--muted-2: #8A8A96;

	--green: #22C55E;
	--red: #EF4444;          /* red text on dark surfaces */
	--red-solid: #C62828;    /* red fills carrying white text */

	--font-he: Heebo, "Segoe UI", Arial, sans-serif;
	--font-lat: Inter, Heebo, "Segoe UI", Arial, sans-serif;

	--r-sm: 6px;
	--r: 10px;
	--r-lg: 14px;

	--gap: 16px;
	--pad-section: 64px;
	--header-h: 66px;
}

/* 2. Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--white);
	font-family: var(--font-he);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--purple-hi); }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Latin technical strings (models, SKUs, prices, phone numbers) use Inter;
   Hebrew glyphs fall through to Heebo automatically. */
.rd-lat, .rd-kicker, .rd-card-sku, .price, .amount, .woocommerce-Price-amount {
	font-family: var(--font-lat);
	font-feature-settings: "tnum" 1;
}

:focus-visible {
	outline: 2px solid var(--purple-hi);
	outline-offset: 2px;
	border-radius: var(--r-sm);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0; border: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.rd-skip {
	position: absolute;
	inset-block-start: -60px;
	inset-inline-start: 12px;
	z-index: 200;
	background: var(--purple);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 var(--r) var(--r);
	font-weight: 600;
	transition: inset-block-start .15s ease;
}
.rd-skip:focus { inset-block-start: 0; color: #fff; }

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

.rd-i { flex: none; vertical-align: middle; }

/* 3. Buttons, chips, badges
   ========================================================================== */
.rd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: var(--r-sm);
	font: 600 14px/1 var(--font-he);
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease;
	text-align: center;
}
.rd-btn-sm { padding: 9px 15px; font-size: 13px; }

.rd-btn-primary { background: var(--purple); color: #fff; }
.rd-btn-primary:hover { background: #7C3AED; color: #fff; }

.rd-btn-ghost { border-color: var(--line); background: transparent; color: var(--white); }
.rd-btn-ghost:hover { border-color: #3A3A48; background: rgba(255, 255, 255, .04); color: var(--white); }

.rd-btn-wa { background: #1E9E52; color: #fff; }
.rd-btn-wa:hover { background: #22A85A; color: #fff; }

.rd-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	color: var(--muted);
	transition: border-color .18s ease, color .18s ease;
}
.rd-chip:hover { border-color: var(--purple-hi); color: var(--white); }

.rd-badge {
	display: inline-block;
	padding: 3px 8px;
	border-radius: var(--r-sm);
	font: 600 12px/1.4 var(--font-lat);
}
.rd-badge-sale { background: var(--red-solid); color: #fff; }

.rd-kicker {
	display: block;
	margin: 0 0 12px;
	color: var(--purple-text);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .14em;
}

/* 4. Top bar
   ========================================================================== */
.rd-topbar {
	background: #08080B;
	border-block-end: 1px solid var(--line-soft);
	color: var(--muted);
	font-size: 12.5px;
}
.rd-topbar .rd-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 32px;
	padding-block: 5px;
}
.rd-topbar-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 14px;
}
.rd-topbar-list span { position: relative; }
.rd-topbar-list span + span { padding-inline-start: 15px; }
.rd-topbar-list span + span::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	inset-block-start: 50%;
	width: 3px; height: 3px;
	margin-block-start: -1.5px;
	border-radius: 50%;
	background: #3A3A48;
}

/* 5. Header
   ========================================================================== */
.rd-header {
	position: sticky;
	inset-block-start: 0;
	z-index: 60;
	background: rgba(11, 11, 15, .96);
	border-block-end: 1px solid var(--line);
	backdrop-filter: blur(12px);
}

.rd-header-row {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: var(--header-h);
}

.rd-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: none;
	color: var(--white);
}
.rd-brand:hover { color: var(--white); }
.rd-brand-mark { height: 38px; width: auto; }
.rd-brand-word {
	font: 700 19px/1 var(--font-lat);
	letter-spacing: .07em;
}
.rd-brand-custom .custom-logo { height: 42px; width: auto; }

.rd-search { flex: 1; min-width: 0; }

.rd-search-form {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	transition: border-color .18s ease;
	overflow: hidden;
}
.rd-search-form:focus-within {
	border-color: var(--purple-hi);
	box-shadow: 0 0 0 2px rgba(139, 92, 246, .38);
}
.rd-search-icon {
	display: flex;
	padding-inline-start: 13px;
	color: var(--muted-2);
}
.rd-search-field {
	flex: 1;
	min-width: 0;
	background: none;
	border: 0;
	color: var(--white);
	font: 400 14px/1 var(--font-he);
	padding: 12px 10px;
	outline: 0;
}
.rd-search-field::placeholder { color: var(--muted-2); }
.rd-search-submit {
	flex: none;
	border: 0;
	background: var(--purple);
	color: #fff;
	font: 600 13px/1 var(--font-he);
	padding: 0 18px;
	align-self: stretch;
	cursor: pointer;
	transition: background-color .18s ease;
}
.rd-search-submit:hover { background: #7C3AED; }

.rd-tools { display: flex; align-items: center; gap: 4px; flex: none; }
.rd-tool {
	position: relative;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 10px;
	border-radius: var(--r-sm);
	color: var(--muted);
	font-size: 13px;
	font-weight: 500;
	transition: background-color .18s ease, color .18s ease;
}
.rd-tool:hover { background: var(--card); color: var(--white); }
.rd-tool-label { white-space: nowrap; }
.rd-tool-wa { color: var(--green); }
.rd-tool-wa:hover { color: var(--green); }

.rd-cart-count {
	position: absolute;
	inset-block-start: 2px;
	inset-inline-start: 4px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 100px;
	background: var(--purple);
	color: #fff;
	font: 600 11px/17px var(--font-lat);
	text-align: center;
}
.rd-cart-count.is-empty { display: none; }

.rd-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	padding: 0;
	background: none;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	color: var(--white);
	cursor: pointer;
	flex: none;
}
.rd-menu-toggle span { display: flex; }
.rd-menu-toggle .rd-menu-toggle-close { display: none; }
.rd-menu-toggle[aria-expanded="true"] .rd-menu-toggle-open { display: none; }
.rd-menu-toggle[aria-expanded="true"] .rd-menu-toggle-close { display: flex; }

.rd-nav-wrap { border-block-start: 1px solid var(--line); }
.rd-nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 42px;
}
.rd-nav ul { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rd-nav a {
	display: inline-block;
	padding-block: 9px;
	color: var(--muted);
	font-size: 13.5px;
	font-weight: 500;
	white-space: nowrap;
	transition: color .18s ease;
}
.rd-nav a:hover { color: var(--white); }
.rd-nav-all a { color: var(--white); font-weight: 600; }

.rd-nav-note {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--muted-2);
	font-size: 12.5px;
	white-space: nowrap;
}
.rd-nav-note a { font-family: var(--font-lat); color: var(--muted); }

/* 6. Section shell
   ========================================================================== */
.rd-section { padding-block: var(--pad-section); }

.rd-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-block-end: 22px;
	padding-block-end: 14px;
	border-block-end: 1px solid var(--line);
}
.rd-head-tight { border: 0; padding: 0; margin-block-end: 10px; align-items: center; justify-content: flex-start; gap: 12px; }
.rd-head h2 { font-size: clamp(20px, 2.2vw, 26px); }
.rd-head-link {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--muted);
	font-size: 13.5px;
	font-weight: 500;
	white-space: nowrap;
}
.rd-head-link:hover { color: var(--purple-hi); }
.rd-ltr .rd-head-link .rd-i { transform: rotate(180deg); }

/* 7. Hero — product led
   The hero carries live WooCommerce data instead of a decorative backdrop, so
   the first thing above the fold is a real product with a real price.
   ========================================================================== */
.rd-hero {
	position: relative;
	isolation: isolate;
	border-block-end: 1px solid var(--line);
	overflow: hidden;
	/* A lit stage rather than a flat panel: one soft pool of light behind the
	   product, falling off into the page background. */
	background:
		radial-gradient(58% 78% at 26% 46%, rgba(109, 40, 217, .20), transparent 68%),
		radial-gradient(42% 62% at 22% 58%, rgba(139, 92, 246, .13), transparent 70%),
		linear-gradient(180deg, #121219, var(--bg) 78%);
}
.rd-ltr .rd-hero {
	background:
		radial-gradient(58% 78% at 74% 46%, rgba(109, 40, 217, .20), transparent 68%),
		radial-gradient(42% 62% at 78% 58%, rgba(139, 92, 246, .13), transparent 70%),
		linear-gradient(180deg, #121219, var(--bg) 78%);
}

.rd-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 328px);
	gap: 44px;
	align-items: center;
	padding-block: 44px;
}
.rd-hero.is-solo .rd-hero-inner { grid-template-columns: 1fr; padding-block: 74px; }
.rd-hero.is-cinematic .rd-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); padding-block: 40px 46px; gap: 36px; }

.rd-hero-copy { max-width: 620px; }
.rd-hero h1 {
	font-size: clamp(27px, 3.4vw, 40px);
	line-height: 1.15;
	margin-block-end: 14px;
}
.rd-hero-lede {
	color: #C9C9D4;
	font-size: clamp(14.5px, 1.2vw, 16.5px);
	margin-block-end: 24px;
	max-width: 30em;
}
.rd-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Fast jumps into the biggest archives — text only, so it never reads as a
   second copy of the category card grid further down the page. */
.rd-hero-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-block-start: 26px;
	padding-block-start: 20px;
	border-block-start: 1px solid var(--line);
}
.rd-hero-quick a {
	color: var(--muted);
	font-size: 13.5px;
	font-weight: 500;
	transition: color .18s ease;
}
.rd-hero-quick a:hover { color: var(--white); }

/* --- Cinematic presentation: the product floats on the stage, no card around
   it, a pool of light behind and a soft contact shadow beneath. Needs product
   images with a transparent background — the Customizer keeps the framed card
   as the default for images that carry their own backdrop. --- */
.rd-hero.is-cinematic .rd-hero-feature {
	background: none;
	border: 0;
	padding: 0;
	text-align: center;
}
.rd-hero.is-cinematic .rd-hero-feature-label {
	text-align: center;
}
.rd-hero.is-cinematic .rd-hero-feature-media {
	position: relative;
	aspect-ratio: auto;
	height: 380px;
	background: none;
	border-radius: 0;
	overflow: visible;
	display: grid;
	place-items: center;
}
/* the light pool */
.rd-hero.is-cinematic .rd-hero-feature-media::before {
	content: "";
	position: absolute;
	inset: 6% 4% 12%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 46%, rgba(139, 92, 246, .34), rgba(109, 40, 217, .16) 46%, transparent 68%);
	filter: blur(6px);
	z-index: -1;
}
/* the thin ring, echoing a studio rim light */
.rd-hero.is-cinematic .rd-hero-feature-media::after {
	content: "";
	position: absolute;
	inset: 9% 7% 15%;
	border-radius: 50%;
	border: 1px solid rgba(139, 92, 246, .30);
	z-index: -1;
}
.rd-hero.is-cinematic .rd-hero-feature-media img {
	position: relative;
	width: auto;
	max-width: 92%;
	height: 100%;
	max-height: 380px;
	object-fit: contain;
	padding: 0;
	filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .62));
}
/* contact shadow on the floor */
.rd-hero.is-cinematic .rd-hero-feature-media .rd-hero-floor {
	position: absolute;
	inset-block-end: 4%;
	inset-inline: 22%;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, .62), transparent 72%);
	filter: blur(5px);
	z-index: -1;
}
.rd-hero.is-cinematic .rd-hero-feature-media .rd-badge {
	inset-block-start: 0;
	inset-inline-start: 0;
}
.rd-hero.is-cinematic .rd-hero-feature-body { align-items: center; padding-block-start: 18px; }
.rd-hero.is-cinematic .rd-hero-feature-name { font-size: 17px; }
.rd-hero.is-cinematic .rd-stock { justify-content: center; }
.rd-hero.is-cinematic .rd-hero-feature .button { max-width: 260px; margin-inline: auto; }

/* Feature card — the weekly offer lives here, not in a section of its own. */
.rd-hero-feature {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 18px;
}
.rd-hero-feature-label {
	color: var(--purple-text);
	font: 600 11.5px/1 var(--font-lat);
	letter-spacing: .12em;
	margin-block-end: 12px;
}
.rd-hero-feature-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: #101016;
	border-radius: var(--r);
	overflow: hidden;
}
.rd-hero-feature-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.rd-hero-feature-media .rd-badge { position: absolute; inset-block-start: 10px; inset-inline-start: 10px; }

.rd-hero-feature-body { display: flex; flex-direction: column; gap: 6px; padding-block-start: 13px; }
.rd-hero-feature-name { font-size: 16px; font-weight: 600; line-height: 1.35; }
.rd-hero-feature-price { margin-block: 2px 6px; }
.rd-hero-feature-price .price,
.rd-hero-feature-price .woocommerce-Price-amount { font-size: 22px; font-weight: 700; color: var(--white); }
.rd-hero-feature-price del { margin-inline-end: 6px; }
.rd-hero-feature-price del,
.rd-hero-feature-price del .woocommerce-Price-amount { font-size: 14px; font-weight: 400; color: var(--muted-2); }
.rd-hero-feature-price ins { text-decoration: none; background: none; }
.rd-hero-feature .button {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--purple);
	color: #fff;
	border: 0;
	border-radius: var(--r-sm);
	padding: 11px 14px;
	font: 600 14px/1 var(--font-he);
	cursor: pointer;
	transition: background-color .18s ease;
}
.rd-hero-feature .button:hover { background: #7C3AED; color: #fff; }
.rd-hero-feature .added_to_cart { display: none; }

/* Real shop photograph behind the hero (Customizer: "רקע הבאנר הראשי").
   Darkened enough for the copy to stay readable, light enough that the shop is
   still recognisable — it is there to prove the place is real. */
.rd-hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.rd-hero-media picture,
.rd-hero-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 46%;
	filter: saturate(.72) brightness(.92) contrast(1.04);
}
/* A very slow drift — no AI re-rendering, so nothing in the photograph warps. */
@media (prefers-reduced-motion: no-preference) {
	.rd-hero-poster {
		animation: rd-hero-drift 34s ease-in-out infinite alternate;
		transform-origin: 50% 45%;
	}
}
@keyframes rd-hero-drift {
	from { transform: scale(1.04); }
	to   { transform: scale(1.11) translate3d(-1.1%, -0.6%, 0); }
}
.rd-hero-scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to left, rgba(8, 8, 11, .94) 0%, rgba(8, 8, 11, .78) 40%, rgba(8, 8, 11, .3) 78%, rgba(8, 8, 11, .2) 100%),
		linear-gradient(to top, rgba(8, 8, 11, .6), transparent 62%);
}
.rd-ltr .rd-hero-scrim {
	background:
		linear-gradient(to right, rgba(8, 8, 11, .94) 0%, rgba(8, 8, 11, .78) 40%, rgba(8, 8, 11, .3) 78%, rgba(8, 8, 11, .2) 100%),
		linear-gradient(to top, rgba(8, 8, 11, .6), transparent 62%);
}
.rd-hero.has-backdrop { background: #08080B; }

/* 8. Category grid
   ========================================================================== */
.rd-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
}
.rd-cat-item { display: flex; }
.rd-cat-item.is-wide { grid-column: span 2; }

.rd-cat-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	min-height: 195px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--card);
	transition: border-color .2s ease;
}
.rd-cat-card:hover { border-color: #3A3A48; color: inherit; }

.rd-cat-card picture { position: absolute; inset: 0; }
.rd-cat-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.rd-cat-card:hover img { transform: scale(1.04); }

/* Gradient only at the bottom, for text legibility. */
.rd-cat-card::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	inset-block-end: 0;
	height: 62%;
	background: linear-gradient(to top, rgba(8, 8, 11, .95) 12%, rgba(8, 8, 11, .58) 55%, transparent);
}

.rd-cat-text {
	position: relative;
	z-index: 1;
	padding: 16px 18px;
}
.rd-cat-title { display: block; font-size: 16px; font-weight: 700; }
.rd-cat-meta { display: block; margin-block-start: 2px; color: var(--muted); font-size: 12.5px; }

.rd-cat-card.is-plain {
	min-height: 128px;
	align-items: flex-end;
	background: linear-gradient(155deg, var(--card-2), var(--card));
}
.rd-cat-card.is-plain::after { display: none; }

/* 9. Product cards
   ========================================================================== */
.rd-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
}

.rd-card {
	display: flex;
	flex-direction: column;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	transition: border-color .2s ease;
}
.rd-card:hover { border-color: #3A3A48; }

.rd-card-media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: #101016;
}
.rd-card-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
}
.rd-card-media .rd-badge {
	position: absolute;
	inset-block-start: 10px;
	inset-inline-start: 10px;
}

.rd-card-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 13px 14px 15px;
	flex: 1;
}

.rd-card-sku {
	color: var(--muted-2);
	font-size: 11px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.rd-card-title {
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.35;
	/* Two lines max: long Hebrew and English model names stay tidy without
	   forcing every title onto a single line. */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}

.rd-stock {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--muted);
}
.rd-stock span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.rd-stock-in { color: var(--green); }
.rd-stock-low, .rd-stock-out { color: var(--red); }

.rd-card-price { margin-block-start: auto; padding-block-start: 4px; }
.rd-card-price .price,
.rd-card-price .woocommerce-Price-amount {
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
}
.rd-card-price del { margin-inline-end: 6px; }
.rd-card-price del,
.rd-card-price del .woocommerce-Price-amount { color: var(--muted-2); font-size: 13px; font-weight: 400; }
.rd-card-price ins { text-decoration: none; background: none; }

.rd-card-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-block-start: 10px;
}
.rd-card-actions .rd-btn,
.rd-card-actions .button {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	border: 0;
	border-radius: var(--r-sm);
	background: var(--purple);
	color: #fff;
	font: 600 13px/1 var(--font-he);
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color .18s ease;
}
.rd-card-actions .button:hover { background: #7C3AED; color: #fff; }
.rd-card-actions .added_to_cart { display: none; }
.rd-card-details {
	flex: none;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	color: var(--muted);
	font-size: 13px;
	font-weight: 500;
}
.rd-card-details:hover { border-color: #3A3A48; color: var(--white); }

/* 10. Gaming
   ========================================================================== */
.rd-gaming-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	min-height: 330px;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	isolation: isolate;
}
.rd-gaming-media { position: absolute; inset: 0; z-index: -2; }
.rd-gaming-media img { width: 100%; height: 100%; object-fit: cover; }
.rd-gaming-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to left, rgba(8, 8, 11, .94) 0%, rgba(8, 8, 11, .76) 40%, rgba(8, 8, 11, .14) 88%);
}
.rd-ltr .rd-gaming-panel::after {
	background: linear-gradient(to right, rgba(8, 8, 11, .94) 0%, rgba(8, 8, 11, .76) 40%, rgba(8, 8, 11, .14) 88%);
}
.rd-gaming-copy {
	align-self: center;
	max-width: 470px;
	padding: 38px 34px;
}
.rd-gaming-copy h2 { font-size: clamp(21px, 2.4vw, 28px); margin-block-end: 10px; }
.rd-gaming-copy p { color: var(--muted); margin-block-end: 20px; }
.rd-gaming-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* 11. Services band
   Not a product grid: a wider, lighter card with an icon and a single line, so
   the shop's non-product revenue reads as its own kind of thing.
   ========================================================================== */
.rd-service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
}
.rd-service {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	padding: 18px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r);
	transition: border-color .2s ease;
}
.rd-service:hover { border-color: #3A3A48; color: inherit; }
.rd-service-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: var(--r-sm);
	background: rgba(139, 92, 246, .12);
	color: var(--purple-hi);
}
.rd-service-body { display: block; }
.rd-service-title { display: block; font-size: 15.5px; font-weight: 700; }
.rd-service-desc {
	display: block;
	margin-block-start: 3px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}
.rd-service-cta {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	margin-block-start: auto;
	padding-block-start: 4px;
	color: var(--purple-text);
	font-size: 13px;
	font-weight: 600;
}
.rd-ltr .rd-service-cta .rd-i { transform: rotate(180deg); }

/* Trust points, folded into the store section rather than a band of their own. */
.rd-trust-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px 22px;
	margin-block-start: 34px;
	padding-block-start: 22px;
	border-block-start: 1px solid var(--line);
}
.rd-trust-row li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 13.5px;
	color: #D6D6DE;
	line-height: 1.4;
}
.rd-trust-row .rd-i { color: var(--purple-hi); margin-block-start: 1px; }

/* 12. Brands
   ========================================================================== */
.rd-brands { padding-block: 38px; }
.rd-brands-title {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	color: var(--muted-2);
	text-align: center;
	margin-block-end: 20px;
}
.rd-brand-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 42px;
}
.rd-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	opacity: .62;
	transition: opacity .2s ease;
}
.rd-brand:hover { opacity: 1; }
.rd-brand img { max-height: 30px; width: auto; }
.rd-brand img[src*="attack-shark"] { max-height: 50px; }
.rd-brand span {
	font-size: 17px;
	font-weight: 600;
	color: var(--white);
}

/* 13. Store
   ========================================================================== */
.rd-store-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 40px;
	align-items: center;
}
.rd-store-info h2 { font-size: clamp(20px, 2.2vw, 26px); margin-block-end: 10px; }
.rd-store-lede { color: var(--muted); margin-block-end: 20px; max-width: 34em; }
.rd-store-facts { display: grid; gap: 10px; margin-block-end: 22px; }
.rd-store-facts li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.rd-store-facts .rd-i { color: var(--purple-hi); }
.rd-store-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Editorial mosaic: one tall portrait tile, two squares and one wide tile.
   Six cells, four photos, an exact fill and a deliberately off-symmetric
   composition — and the portrait source photos are never crushed. */
.rd-store-shots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 152px;
	gap: 10px;
}
.rd-store-shots li {
	overflow: hidden;
	border-radius: var(--r);
	border: 1px solid var(--line);
}
.rd-store-shots li:nth-child(1) { grid-row: span 2; }
.rd-store-shots li:nth-child(4) { grid-column: span 2; }
.rd-store-shots img { width: 100%; height: 100%; object-fit: cover; }

/* 14. Closing CTA
   ========================================================================== */
.rd-cta {
	padding-block: 34px;
	background: var(--bg-2);
	border-block-start: 1px solid var(--line);
}
.rd-cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.rd-cta h2 { font-size: 19px; margin-block-end: 4px; }
.rd-cta p { color: var(--muted); font-size: 14px; }
.rd-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* 15. Footer
   ========================================================================== */
.rd-footer {
	background: #08080B;
	border-block-start: 1px solid var(--line);
	padding-block: 44px 18px;
}
.rd-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 40px;
}
.rd-footer h2 { font-size: 14px; margin-block-end: 14px; }
.rd-footer-brand img { height: 72px; width: auto; margin-block-end: 14px; }
.rd-footer-brand p { color: var(--muted); font-size: 13.5px; max-width: 40ch; }
.rd-footer-ig {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-block-start: 14px;
	color: var(--muted);
	font: 500 13px/1 var(--font-lat);
}
.rd-footer-ig:hover { color: var(--purple-hi); }
.rd-footer-links ul { display: grid; gap: 8px; }
.rd-footer-links li { list-style: none; }
.rd-footer-links a { color: var(--muted); font-size: 13.5px; }
.rd-footer-links a:hover { color: var(--white); }
.rd-footer-contact ul { display: grid; gap: 9px; }
.rd-footer-contact li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13.5px; }
.rd-footer-contact .rd-i { color: var(--purple-hi); }
.rd-footer-contact a:hover { color: var(--white); }
.rd-copyright {
	margin-block-start: 32px;
	padding-block-start: 16px;
	border-block-start: 1px solid var(--line);
	color: var(--muted-2);
	font-size: 12.5px;
}

/* 16. WooCommerce archive / single / cart
   ========================================================================== */
.rd-shop, .rd-content { padding-block: 44px 70px; min-height: 55vh; }
.rd-shop-head { margin-block-end: 26px; }
.rd-shop-head h1, .rd-content h1 { font-size: clamp(24px, 3vw, 34px); }
.rd-content article { max-width: 70ch; }
.rd-content h2 { font-size: 21px; margin-block: 26px 8px; }
.rd-content p { margin-block-end: 14px; color: #D6D6DE; }

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
	margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin-block-end: 20px; color: var(--muted); font-size: 13.5px; }
.woocommerce .woocommerce-ordering select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
	background: var(--card);
	color: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: 10px 12px;
	font: 400 14px/1.4 var(--font-he);
}

.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.woocommerce div.product .product_title { font-size: clamp(22px, 3vw, 32px); }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--white); font-size: 24px; font-weight: 700; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--muted); }

.woocommerce button.button,
.woocommerce a.button,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	background: var(--purple);
	color: #fff;
	border-radius: var(--r-sm);
	font-weight: 600;
	padding: 11px 20px;
}
.woocommerce span.onsale {
	background: var(--red-solid);
	color: #fff;
	border-radius: var(--r-sm);
	min-height: 0; min-width: 0;
	padding: 3px 9px; line-height: 1.5; font-size: 12px; font-weight: 600;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	background: var(--card);
	border-block-start-color: var(--purple);
	color: var(--white);
	border-radius: var(--r-sm);
}
.woocommerce table.shop_table,
.woocommerce form.checkout,
.woocommerce-cart-form {
	background: var(--card);
	border-color: var(--line);
	border-radius: var(--r);
	padding: 16px;
}
.rd-filter { margin-block-end: 22px; }
.rd-filter h3 { font-size: 14px; margin-block-end: 8px; }

/* 16b. Checkout — four fields and a delivery choice
   ========================================================================== */
.rd-field-hidden { display: none !important; }

.woocommerce-checkout .rd-shop { padding-block: 36px 70px; }
.woocommerce-checkout .rd-shop-head { margin-block-end: 20px; }

form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
	gap: 28px;
	align-items: start;
	background: none;
	border: 0;
	padding: 0;
}
form.checkout #customer_details,
form.checkout .rd-order-col { min-width: 0; }

form.checkout #customer_details .col-1,
form.checkout #customer_details .col-2 { width: auto; float: none; }
form.checkout #customer_details .col-2:empty { display: none; }

.woocommerce-billing-fields,
.woocommerce-checkout-review-order {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 22px;
}
.woocommerce-billing-fields > h3,
.woocommerce-checkout-review-order h3 {
	font-size: 17px;
	margin-block-end: 4px;
}

.rd-checkout-note {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-block-end: 14px;
	padding: 11px 13px;
	background: rgba(139, 92, 246, .1);
	border: 1px solid rgba(139, 92, 246, .26);
	border-radius: var(--r);
	color: #D6D6DE;
	font-size: 13.5px;
	line-height: 1.45;
}
.rd-checkout-note .rd-i { color: var(--purple-text); flex: none; }

/* Fields */
form.checkout .form-row {
	display: block;
	padding: 0;
	margin: 0 0 16px;
}
form.checkout .form-row label {
	display: block;
	margin-block-end: 6px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--white);
}
form.checkout .form-row label .required {
	color: var(--purple-text);
	text-decoration: none;
	margin-inline-start: 2px;
}
form.checkout .form-row .woocommerce-input-wrapper { display: block; width: 100%; }
form.checkout .form-row input.input-text,
form.checkout .form-row textarea,
form.checkout .form-row select,
form.checkout .form-row .select2-container .select2-selection {
	width: 100%;
	background: #0F0F15;
	color: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: 12px 14px;
	font: 400 15px/1.4 var(--font-he);
	transition: border-color .18s ease, box-shadow .18s ease;
}
form.checkout .form-row input.input-text::placeholder { color: var(--muted-2); }
form.checkout .form-row input.input-text:focus,
form.checkout .form-row textarea:focus,
form.checkout .form-row select:focus {
	border-color: var(--purple-hi);
	box-shadow: 0 0 0 2px rgba(139, 92, 246, .34);
	outline: 0;
}
form.checkout .form-row input[type="tel"] { font-family: var(--font-lat); }
form.checkout .form-row .description,
form.checkout .form-row span.description {
	display: block;
	margin-block-start: 6px;
	color: var(--muted);
	font-size: 12.5px;
}
form.checkout .form-row.woocommerce-invalid input.input-text,
form.checkout .form-row.woocommerce-invalid select { border-color: var(--red); }
form.checkout .form-row.woocommerce-validated input.input-text { border-color: rgba(34, 197, 94, .5); }

/* Order summary */
.woocommerce-checkout-review-order table.shop_table {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	border-collapse: collapse;
}
.woocommerce-checkout-review-order table.shop_table th,
.woocommerce-checkout-review-order table.shop_table td {
	padding: 11px 0;
	border: 0;
	border-block-end: 1px solid var(--line);
	font-size: 14px;
	vertical-align: top;
}
.woocommerce-checkout-review-order table.shop_table thead th {
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.woocommerce-checkout-review-order .product-name { color: #E4E4EA; }
.woocommerce-checkout-review-order .product-quantity { color: var(--muted); font-family: var(--font-lat); }
.woocommerce-checkout-review-order .product-total,
.woocommerce-checkout-review-order .cart-subtotal td,
.woocommerce-checkout-review-order .order-total td { text-align: start; white-space: nowrap; }
.woocommerce-checkout-review-order .order-total th,
.woocommerce-checkout-review-order .order-total td {
	border-block-end: 0;
	padding-block-start: 16px;
	font-size: 16px;
	font-weight: 700;
}
.woocommerce-checkout-review-order .order-total .woocommerce-Price-amount { font-size: 21px; }

/* Delivery choice — the step the shop cares about, so it reads as cards. */
.rd-shipping-heading th {
	padding-block: 18px 8px !important;
	border-block-end: 0 !important;
}
.rd-shipping-heading span {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--white);
	text-transform: none;
	letter-spacing: 0;
}
/* The totals footer becomes flex rows rather than table cells, so the delivery
   cards can use the full width instead of the narrow price column. */
.woocommerce-checkout-review-order table.shop_table tfoot { display: block; }
.woocommerce-checkout-review-order table.shop_table tfoot tr {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	border-block-end: 1px solid var(--line);
}
.woocommerce-checkout-review-order table.shop_table tfoot th,
.woocommerce-checkout-review-order table.shop_table tfoot td {
	display: block;
	border: 0;
	padding: 11px 0;
}
.woocommerce-checkout-review-order .rd-shipping-heading,
.woocommerce-checkout-review-order .woocommerce-shipping-totals { display: block !important; }
.woocommerce-checkout-review-order .rd-shipping-heading { border-block-end: 0 !important; }
.woocommerce-checkout-review-order table.shop_table tfoot tr.rd-shipping-heading th {
	width: 100%;
	padding-block: 16px 8px;
}
.woocommerce-checkout-review-order table.shop_table tfoot tr.woocommerce-shipping-totals th { display: none; }
.woocommerce-checkout-review-order table.shop_table tfoot tr.woocommerce-shipping-totals td {
	width: 100%;
	padding-block: 0 16px;
}
.woocommerce-checkout-review-order table.shop_table tfoot tr.order-total { border-block-end: 0; }
#shipping_method {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
#shipping_method li {
	margin: 0;
	padding: 0;
	position: relative;
}
#shipping_method li input[type="radio"] {
	position: absolute;
	inset-block-start: 50%;
	margin-block-start: -8.5px;
	inset-inline-start: 13px;
	width: 17px;
	height: 17px;
	accent-color: var(--purple);
}
#shipping_method li label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 12px 40px 12px 12px;
	line-height: 1.35;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #0F0F15;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--white);
	cursor: pointer;
	transition: border-color .18s ease, background-color .18s ease;
}
.rd-ltr #shipping_method li label { padding: 12px 12px 12px 40px; }
#shipping_method li label:hover { border-color: #3A3A48; }
#shipping_method li input[type="radio"]:checked + label {
	border-color: var(--purple-hi);
	background: rgba(139, 92, 246, .1);
}
#shipping_method li input[type="radio"]:focus-visible + label {
	outline: 2px solid var(--purple-hi);
	outline-offset: 2px;
}
#shipping_method li label > * { flex: 0 0 auto; white-space: nowrap; }
#shipping_method .woocommerce-Price-amount { font-weight: 700; font-size: 13.5px; }
.woocommerce-shipping-destination { display: none; }

/* Payment + place order */
#payment, .woocommerce-checkout #payment {
	background: none;
	border-radius: 0;
	margin-block-start: 18px;
}
#payment ul.payment_methods {
	padding: 0;
	border: 0;
	border-block-start: 1px solid var(--line);
	padding-block-start: 16px;
	display: grid;
	gap: 8px;
}
#payment ul.payment_methods li { margin: 0; }
#payment ul.payment_methods li label {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--white);
	cursor: pointer;
}
#payment ul.payment_methods li input[type="radio"] { accent-color: var(--purple); margin-inline-end: 8px; }
#payment div.payment_box {
	background: #0F0F15;
	border: 1px solid var(--line);
	border-radius: var(--r);
	color: var(--muted);
	font-size: 13px;
	margin-block-start: 8px;
	padding: 12px 14px;
}
#payment div.payment_box::before { display: none; }
#payment .place-order { padding: 0; margin-block-start: 16px; }
#payment #place_order,
.woocommerce #payment #place_order {
	width: 100%;
	background: var(--purple);
	color: #fff;
	border: 0;
	border-radius: var(--r-sm);
	padding: 15px 20px;
	font: 700 16px/1 var(--font-he);
	cursor: pointer;
	transition: background-color .18s ease;
}
#payment #place_order:hover { background: #7C3AED; }
.woocommerce-terms-and-conditions-wrapper { font-size: 13px; color: var(--muted); }

/* Coupon / login notices sit quietly above the form. */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle { grid-column: 1 / -1; }
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message { grid-column: 1 / -1; }

/* Thank-you page */
.woocommerce-order .woocommerce-thankyou-order-received {
	font-size: 17px;
	font-weight: 600;
	background: rgba(34, 197, 94, .1);
	border: 1px solid rgba(34, 197, 94, .3);
	border-radius: var(--r);
	padding: 16px 18px;
	color: #E4E4EA;
}
.woocommerce-order ul.woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin: 20px 0;
	padding: 16px 18px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r);
	list-style: none;
}
.woocommerce-order ul.woocommerce-order-overview li {
	border: 0;
	color: var(--muted);
	font-size: 12.5px;
	text-transform: none;
}
.woocommerce-order ul.woocommerce-order-overview li strong {
	display: block;
	margin-block-start: 3px;
	color: var(--white);
	font-size: 15px;
}

/* 17. Responsive
   ========================================================================== */
@media (max-width: 1100px) {
	.rd-tool-label { display: none; }
	.rd-tool { padding: 9px; }
	.rd-nav-note { display: none; }
}

@media (max-width: 960px) {
	:root { --pad-section: 52px; }
	form.checkout { grid-template-columns: 1fr; gap: 18px; }
	.rd-cat-grid { grid-template-columns: repeat(3, 1fr); }
	.rd-grid, .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
	.rd-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: 30px; }
	.rd-service-grid { grid-template-columns: repeat(2, 1fr); }
	.rd-trust-row { grid-template-columns: repeat(2, 1fr); }
	.rd-store-grid { grid-template-columns: 1fr; gap: 28px; }
	.woocommerce div.product { grid-template-columns: 1fr; gap: 24px; }
	.rd-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.rd-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
	:root { --pad-section: 42px; --header-h: 58px; }

	.rd-container { width: min(1200px, 100% - 24px); }

	.rd-topbar { font-size: 11.5px; }
	.rd-topbar-list { gap: 3px 10px; }
	.rd-topbar-list span + span { padding-inline-start: 11px; }

	.rd-menu-toggle { display: inline-flex; }
	.rd-header-row { flex-wrap: wrap; gap: 10px; padding-block: 9px; min-height: 0; }
	.rd-brand { order: 1; margin-inline-end: auto; }
	.rd-brand-mark { height: 30px; }
	.rd-brand-word { font-size: 16px; }
	.rd-brand-custom .custom-logo { height: 32px; }
	.rd-tools { order: 2; }
	.rd-search { order: 3; flex-basis: 100%; }
	.rd-search-field { padding-block: 10px; font-size: 15px; }
	.rd-search-submit { padding-inline: 14px; }

	.rd-nav-wrap { display: none; }
	.rd-nav-wrap.is-open { display: block; }
	.rd-nav-row { display: block; padding-block: 4px 10px; }
	.rd-nav ul { display: block; }
	.rd-nav a { display: block; padding: 10px 2px; border-block-end: 1px solid var(--line-soft); }

	/* Portrait hero source: the desk sits low in the frame, so the crop is
	   anchored there and the copy sits below it rather than on top of it. */
	/* Phone: the feature card turns into a compact horizontal row so the price
	   and the add-to-cart button stay close to the fold. */
	.rd-hero-inner { grid-template-columns: 1fr; gap: 22px; padding-block: 28px 32px; }
	.rd-hero.is-solo .rd-hero-inner { padding-block: 34px 38px; }
	.rd-hero-copy { max-width: none; }
	.rd-hero-actions .rd-btn { flex: 1; min-width: 128px; }
	.rd-hero-quick { gap: 6px 16px; margin-block-start: 18px; padding-block-start: 14px; font-size: 13px; }

	.rd-hero.is-cinematic .rd-hero-inner { grid-template-columns: 1fr; }
	.rd-hero.is-cinematic .rd-hero-feature { display: block; padding: 0; }
	.rd-hero.is-cinematic .rd-hero-feature-media { height: 260px; max-width: 260px; margin-inline: auto; }
	.rd-hero.is-cinematic .rd-hero-feature-media img { max-height: 260px; }
	.rd-hero.is-cinematic .rd-hero-feature-body { padding-block-start: 12px; }

	.rd-hero-feature {
		display: grid;
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 14px;
		align-items: start;
		padding: 14px;
	}
	.rd-hero-feature-label { grid-column: 1 / -1; margin-block-end: 0; }
	.rd-hero-feature-media { aspect-ratio: 1 / 1; }
	.rd-hero-feature-media img { padding: 8px; }
	.rd-hero-feature-body { padding-block-start: 0; gap: 5px; }
	.rd-hero-feature-name { font-size: 14.5px; }
	.rd-hero-feature-price .price,
	.rd-hero-feature-price .woocommerce-Price-amount { font-size: 19px; }
	.rd-hero-feature .button { padding: 10px; font-size: 13px; }
	.rd-hero-media picture, .rd-hero-poster { object-position: center 42%; }
	.rd-hero-scrim {
		background: linear-gradient(to top, rgba(8, 8, 11, .95) 42%, rgba(8, 8, 11, .74) 100%);
	}

	.rd-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.rd-cat-card { min-height: 146px; }
	.rd-cat-item.is-wide .rd-cat-card { min-height: 166px; }
	.rd-cat-text { padding: 12px 13px; }
	.rd-cat-title { font-size: 14.5px; }
	.rd-cat-meta { font-size: 11.5px; }

	.rd-grid, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.rd-card-body { padding: 11px 11px 13px; gap: 5px; }
	.rd-card-title { font-size: 13.5px; }
	.rd-card-price .price, .rd-card-price .woocommerce-Price-amount { font-size: 15.5px; }
	.rd-card-actions { flex-direction: column; align-items: stretch; gap: 6px; }
	.rd-card-actions .rd-btn, .rd-card-actions .button { width: 100%; font-size: 12.5px; padding: 9px 8px; }
	.rd-card-details { text-align: center; font-size: 12.5px; padding: 8px; }

	.rd-gaming-panel { min-height: 0; }
	.rd-gaming-media { position: relative; aspect-ratio: 16 / 10; }
	.rd-gaming-panel::after {
		background: linear-gradient(to top, rgba(8, 8, 11, .97) 26%, rgba(8, 8, 11, .3));
	}
	.rd-gaming-copy { padding: 20px; max-width: none; }

	.rd-service-grid { grid-template-columns: 1fr; gap: 10px; }
	.rd-service { flex-direction: row; align-items: center; gap: 13px; padding: 14px; }
	.rd-service-icon { width: 34px; height: 34px; flex: none; }
	.rd-service-body { flex: 1; min-width: 0; }
	.rd-service-cta { margin-block-start: 0; padding-block-start: 0; flex: none; }
	.rd-trust-row { grid-template-columns: 1fr; gap: 9px; margin-block-start: 26px; padding-block-start: 18px; }

	.rd-store-shots { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
	.rd-store-shots li:nth-child(1) { grid-row: span 1; }
	.rd-store-shots li:nth-child(4) { grid-column: span 1; }
	.rd-store-shots li { aspect-ratio: 4 / 5; }

	.rd-brand-row { gap: 12px 26px; }
	.rd-brand { height: 38px; }
	.rd-brand img { max-height: 24px; }
	.rd-brand img[src*="attack-shark"] { max-height: 40px; }
	.rd-brand span { font-size: 15px; }

	.rd-cta-inner { display: block; }
	.rd-cta-actions { margin-block-start: 14px; }
	.rd-cta-actions .rd-btn { flex: 1; }

	.rd-footer-grid { grid-template-columns: 1fr; gap: 26px; }
	.rd-footer-brand { grid-column: auto; }
}

@media (max-width: 360px) {
	.rd-hero-actions { flex-direction: column; }
	.rd-hero-actions .rd-btn { width: 100%; }
	.rd-hero-feature { grid-template-columns: 96px minmax(0, 1fr); gap: 11px; }
	.rd-cat-card { min-height: 132px; }
	.rd-cat-item.is-wide .rd-cat-card { min-height: 152px; }
	.rd-store-actions .rd-btn, .rd-cta-actions .rd-btn { flex: 1 1 100%; }
}

/* 18. Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.rd-cat-card:hover img { transform: none; }
}
