/**
 * RRH Booking Wizard styles
 * Boom12 Communications Inc.
 *
 * All selectors namespaced under .rrh-bw to avoid theme collisions.
 * Brand: #fff200 yellow, #000 black, #414042 grey, #fff white.
 * Fonts: Passion One (headlines), Exo (labels), Open Sans (body).
 */

.rrh-bw {
	--rrh-yellow: #F6CE06;
	--rrh-yellow-hover: #ffe04a;
	--rrh-wreckage: #F6CE06;
	--rrh-havoc: #F88B2F;
	--rrh-annihilation: #F94042;
	--rrh-quickie: #76AAE7;
	--rrh-epic: #EE7E60;
	--rrh-black: #000;
	--rrh-grey: #414042;
	--rrh-white: #fff;
	--rrh-surface: #262527;
	--rrh-border: #3a393b;

	max-width: 800px;
	margin: 0 auto;
	padding: 1.75rem;
	background: #1c1b1d;
	border-radius: 14px;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: var(--rrh-white);
	box-sizing: border-box;
}
.rrh-bw *,
.rrh-bw *::before,
.rrh-bw *::after { box-sizing: border-box; }

.rrh-bw svg { width: 1em; height: 1em; display: block; }

/* ==========================================================================
   THEME OVERRIDE — hardened reset
   The site theme applies a green background to buttons/links globally.
   These rules force the wizard's own colours to win, regardless of theme
   specificity, and across every interaction state (not just :hover).
   ========================================================================== */
.rrh-bw button,
.rrh-bw a,
.rrh-bw button:visited,
.rrh-bw a:visited {
	background-image: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
	color: inherit;
	outline: none;
}

.rrh-bw .rrh-bw__opt,
.rrh-bw .rrh-bw__num,
.rrh-bw .rrh-bw__opt:visited,
.rrh-bw .rrh-bw__num:visited {
	background: var(--rrh-surface) !important;
	background-color: var(--rrh-surface) !important;
	background-image: none !important;
	color: var(--rrh-white) !important;
	border-radius: 10px !important;
}
/* Cards use a 14px radius and their own tier border — keep radius consistent
   across all states so it never jumps on hover. */
.rrh-bw .rrh-bw__card,
.rrh-bw .rrh-bw__card:visited {
	background: var(--rrh-surface) !important;
	background-color: var(--rrh-surface) !important;
	background-image: none !important;
	color: var(--rrh-white) !important;
	border-radius: 14px !important;
}
.rrh-bw .rrh-bw__opt:hover,
.rrh-bw .rrh-bw__opt:focus,
.rrh-bw .rrh-bw__opt:active,
.rrh-bw .rrh-bw__num:hover,
.rrh-bw .rrh-bw__num:focus,
.rrh-bw .rrh-bw__num:active {
	background: #302f31 !important;
	background-color: #302f31 !important;
	background-image: none !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	outline: none !important;
}
.rrh-bw .rrh-bw__card:hover,
.rrh-bw .rrh-bw__card:focus,
.rrh-bw .rrh-bw__card:active {
	background: var(--rrh-surface) !important;
	background-color: var(--rrh-surface) !important;
	background-image: none !important;
	border-radius: 14px !important;
	box-shadow: none !important;
	outline: none !important;
}
.rrh-bw .rrh-bw__card.is-placeholder,
.rrh-bw .rrh-bw__card.is-placeholder:hover {
	background: var(--rrh-surface) !important;
	background-color: var(--rrh-surface) !important;
}

.rrh-bw .rrh-bw__back,
.rrh-bw .rrh-bw__back:visited {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
}
.rrh-bw .rrh-bw__back:hover,
.rrh-bw .rrh-bw__back:focus {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	outline: none !important;
}

.rrh-bw .rrh-bw__fork-btn,
.rrh-bw .rrh-bw__fork-btn:visited {
	background: var(--rrh-yellow) !important;
	background-color: var(--rrh-yellow) !important;
	background-image: none !important;
	color: var(--rrh-black) !important;
	border-radius: 7px !important;
}
.rrh-bw .rrh-bw__fork-btn:hover,
.rrh-bw .rrh-bw__fork-btn:focus {
	background: var(--rrh-yellow-hover) !important;
	background-color: var(--rrh-yellow-hover) !important;
	background-image: none !important;
	color: var(--rrh-black) !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	outline: none !important;
}
.rrh-bw .rrh-bw__fork-btn.is-disabled {
	background: var(--rrh-grey) !important;
	background-color: var(--rrh-grey) !important;
	color: #888 !important;
}

/* Any element inside a card/option (text spans, etc.) should never pick up
   a theme background of its own. Custom icons render transparent. */
.rrh-bw .rrh-bw__opt *,
.rrh-bw .rrh-bw__num *,
.rrh-bw .rrh-bw__card * {
	background: transparent !important;
	background-image: none !important;
}

/* step indicator */
.rrh-bw__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 1.75rem;
	transition: opacity .2s;
}
.rrh-bw__steps.is-faded { opacity: .35; }
.rrh-bw__dot {
	width: 26px; height: 26px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Exo', sans-serif;
	font-size: 13px; font-weight: 600;
	flex-shrink: 0;
}
.rrh-bw__dot svg { width: 14px; height: 14px; }
.rrh-bw__dot.is-active,
.rrh-bw__dot.is-done { background: var(--rrh-yellow); color: var(--rrh-black) !important; }
.rrh-bw__dot.is-pending { background: var(--rrh-grey); color: #888; }
.rrh-bw__line { width: 32px; height: 2px; background: var(--rrh-grey); }
.rrh-bw__line.is-done { background: var(--rrh-yellow); }

/* headings */
.rrh-bw__eyebrow {
	font-family: 'Exo', sans-serif;
	font-size: 14px; font-weight: 500;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--rrh-yellow);
	text-align: center;
	margin: 0 0 4px;
}
.rrh-bw__title {
	font-family: 'Passion One', sans-serif;
	font-weight: 700;
	font-size: 38px;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	color: var(--rrh-white);
	margin: 0 0 1.75rem;
}

/* step 1 options — vertical cards, centered, custom icon on top */
.rrh-bw__opts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
	width: 100%;
	margin: 0 auto;
}
.rrh-bw__opt {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	justify-content: flex-start;
	gap: 6px;
	width: 100%;
	min-width: 0;
	height: 100%;
	background: var(--rrh-surface);
	border: 1.5px solid var(--rrh-border);
	border-radius: 12px;
	padding: 28px 18px 22px;
	cursor: pointer;
	transition: border-color .15s, background .15s;
	font-family: inherit;
	color: inherit;
}
.rrh-bw__opt:hover { border-color: var(--rrh-yellow); background: #302f31; }
.rrh-bw__opt-icon {
	width: 88px; height: 88px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 8px;
	background: none;
}
.rrh-bw__custom-icon { width: 100%; height: 100%; object-fit: contain; display: block; }
.rrh-bw__opt-title {
	font-family: 'Exo', sans-serif;
	font-size: 22px; font-weight: 500;
	color: var(--rrh-white);
}
.rrh-bw__opt-sub {
	font-size: 14px; color: #aaa; margin-top: 2px; line-height: 1.4;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
	max-width: 100%;
}
.rrh-bw__opt-arrow { margin-top: auto; padding-top: 10px; color: var(--rrh-white); font-size: 22px; }

/* step 2 numbers */
.rrh-bw__nums {
	display: flex; gap: 14px;
	max-width: 560px; margin: 0 auto;
}
.rrh-bw__num {
	flex: 1;
	display: flex; flex-direction: column; align-items: center;
	background: var(--rrh-surface);
	border: 1.5px solid var(--rrh-border);
	border-radius: 12px;
	padding: 28px 0 22px;
	cursor: pointer;
	text-align: center;
	transition: border-color .15s, background .15s;
	font-family: inherit; color: inherit;
}
.rrh-bw__num:hover { border-color: var(--rrh-yellow); background: #302f31; }
.rrh-bw__num-icon {
	width: 72px; height: 72px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 8px;
}
.rrh-bw__num-big {
	display: block;
	font-family: 'Passion One', sans-serif;
	font-size: 32px; line-height: .95;
	text-transform: uppercase;
	color: var(--rrh-white);
}
.rrh-bw__num-lbl {
	display: block;
	font-family: 'Exo', sans-serif;
	font-size: 14px; color: #bbb;
	margin-top: 6px;
	letter-spacing: .02em;
}

/* step 3 grid */
.rrh-bw__grid { max-width: 900px; margin: 0 auto; }

/* intro block under the heading */
.rrh-bw__intro { max-width: 720px; margin: 0 auto 1.75rem; text-align: center; }
.rrh-bw__supply { font-size: 16px; color: #cfcfcf; margin: 0 0 6px; line-height: 1.5; }
.rrh-bw__included { font-size: 15px; color: #999; margin: 0; }
.rrh-bw__learn {
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none; padding: 0; cursor: pointer;
	font-family: inherit; font-size: 15px;
	color: var(--rrh-yellow) !important; text-decoration: underline;
}
.rrh-bw__learn:hover,
.rrh-bw__learn:focus,
.rrh-bw__learn:active {
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	color: var(--rrh-yellow-hover) !important; outline: none;
}

.rrh-bw__zone-label {
	font-family: 'Passion One', sans-serif;
	font-size: 26px; font-weight: 700;
	color: var(--rrh-white);
	text-transform: uppercase; letter-spacing: .02em;
	margin: 0 0 12px;
}
.rrh-bw__dur { color: #999; font-family: 'Exo', sans-serif; font-size: 14px; font-weight: 400; letter-spacing: .02em; text-transform: none; vertical-align: middle; }
.rrh-bw__top {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 2rem;
	align-items: stretch;
}
.rrh-bw__bottom {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 1.75rem;
}
.rrh-bw__bottom.is-single { grid-template-columns: 1fr; }
.rrh-bw__cards { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: stretch; }
/* Epic deals sit side by side within their zone. */
.rrh-bw__cards--epic { grid-template-columns: 1fr 1fr; }

/* product card — tiered gradient */
.rrh-bw__card {
	position: relative;
	display: flex; flex-direction: column;
	width: 100%; height: 100%;
	min-width: 0;
	background: var(--rrh-surface);
	border: 1.5px solid color-mix( in srgb, var(--tier) 40%, transparent );
	border-radius: 14px;
	padding: 20px;
	cursor: pointer;
	text-align: left;
	transition: border-color .15s, transform .15s;
	font-family: inherit; color: inherit;
	overflow: hidden;
}
/* Subtle tier gradient: colour bleeds from top-left, fading into the surface. */
.rrh-bw__card::before {
	content: ''; position: absolute; inset: 0; z-index: 0;
	background: linear-gradient( 135deg,
		color-mix( in srgb, var(--tier) 22%, transparent ) 0%,
		color-mix( in srgb, var(--tier) 6%, transparent ) 38%,
		transparent 70% );
	pointer-events: none;
}
.rrh-bw__card > * { position: relative; z-index: 1; }
.rrh-bw__card--wreckage     { --tier: var(--rrh-wreckage); }
.rrh-bw__card--havoc        { --tier: var(--rrh-havoc); }
.rrh-bw__card--annihilation { --tier: var(--rrh-annihilation); }
.rrh-bw__card--quickie      { --tier: var(--rrh-quickie); }
.rrh-bw__card--epic         { --tier: var(--rrh-epic); }
.rrh-bw__card:hover { border-color: var(--tier); transform: translateY(-2px); }
.rrh-bw__card.is-placeholder { cursor: default; opacity: .55; }
.rrh-bw__card.is-placeholder:hover { transform: none; }
.rrh-bw__card.is-placeholder:hover { border-color: var(--rrh-border); transform: none; }

/* tier icon badge — icons already include their own coloured circle, so the
   badge is just a sizing box with no background or padding. */
.rrh-bw__card-badge {
	width: 64px; height: 64px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 14px;
}
.rrh-bw__card-badge .rrh-bw__custom-icon { width: 100%; height: 100%; object-fit: contain; }

/* dominant product name */
.rrh-bw__card-name {
	display: block;
	font-family: 'Passion One', sans-serif;
	font-size: 26px; line-height: .95;
	text-transform: uppercase;
	color: var(--rrh-white);
	margin-bottom: 4px;
}
/* secondary price */
.rrh-bw__price {
	display: block;
	font-family: 'Exo', sans-serif;
	font-size: 18px; font-weight: 500; line-height: 1;
	color: var(--tier);
	margin: 0 0 12px;
}
.rrh-bw__price del { color: #999; font-size: .7em; margin-right: 4px; }

/* smashables checklist */
.rrh-bw__smashables { list-style: none; margin: 0 0 12px; padding: 0; }
.rrh-bw__smashables li {
	display: flex; align-items: center; gap: 8px;
	font-size: 14px; color: #cbcbcb; margin-bottom: 6px;
}
.rrh-bw__smashables svg { width: 15px; height: 15px; color: var(--tier); flex-shrink: 0; }

/* per-tier VIP callout */
.rrh-bw__card-vip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Exo', sans-serif;
	font-size: 11px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .05em;
	color: var(--tier);
	margin-bottom: 10px;
	align-self: flex-start;
}
.rrh-bw__card-vip .rrh-bw__custom-icon {
	width: 28px; height: 14px; object-fit: contain;
	flex-shrink: 0;
}

.rrh-bw__cta {
	display: inline-flex; align-items: center; gap: 4px;
	font-family: 'Exo', sans-serif;
	font-size: 14px; font-weight: 500;
	color: var(--tier);
	text-transform: uppercase; letter-spacing: .04em;
	margin-top: auto;
	align-self: flex-start;
	border: 1px solid color-mix( in srgb, var(--tier) 45%, transparent );
	border-radius: 6px;
	padding: 8px 12px;
}
.rrh-bw__cta svg { width: 14px; height: 14px; }
.rrh-bw__cta.is-soon { color: #999; }

/* ---- "what's included" modal ---- */
.rrh-bw__modal-overlay {
	position: fixed; inset: 0; z-index: 99999;
	background: rgba(0,0,0,.7);
	display: flex; align-items: center; justify-content: center;
	padding: 1.5rem;
}
.rrh-bw__modal {
	position: relative;
	background: #1c1b1d;
	border: 1.5px solid var(--rrh-border);
	border-radius: 14px;
	max-width: 560px; width: 100%;
	max-height: 85vh; overflow-y: auto;
	padding: 2rem;
	font-family: 'Open Sans', sans-serif;
}
.rrh-bw__modal-close {
	position: absolute; top: 14px; right: 16px;
	background: none; border: none; cursor: pointer;
	color: #999; font-size: 26px; line-height: 1;
}
.rrh-bw__modal-close:hover { color: #fff; }
.rrh-bw__modal-title {
	font-family: 'Passion One', sans-serif;
	font-size: 30px; text-transform: uppercase;
	color: var(--rrh-white); margin: 0 0 12px;
}
.rrh-bw__modal-intro { font-size: 15px; color: #bbb; line-height: 1.55; margin: 0 0 1.25rem; }
.rrh-bw__modal-cat { margin-bottom: 1rem; }
.rrh-bw__modal-cat h4 {
	font-family: 'Exo', sans-serif;
	font-size: 16px; font-weight: 500;
	color: var(--rrh-yellow); margin: 0 0 4px;
}
.rrh-bw__modal-cat p { font-size: 14px; color: #cbcbcb; line-height: 1.5; margin: 0; }
.rrh-bw__modal-footer {
	font-size: 14px; color: #999; font-style: italic;
	margin: 1.25rem 0 0; padding-top: 1rem;
	border-top: 1px solid var(--rrh-border);
}

/* ---- Rage Room VIP block ---- */
.rrh-bw__vip {
	display: flex; align-items: center; gap: 1.5rem;
	max-width: 900px; margin: 2.5rem auto 0;
	background: var(--rrh-surface);
	border: 1.5px solid var(--rrh-border);
	border-radius: 14px;
	padding: 1.5rem;
}
.rrh-bw__vip-brand { flex-shrink: 0; width: 120px; }
.rrh-bw__vip-brand .rrh-bw__custom-icon { width: 100%; height: auto; border-radius: 8px; }
.rrh-bw__vip-body { flex: 1; min-width: 0; }
.rrh-bw__vip-title {
	font-family: 'Passion One', sans-serif;
	font-size: 26px; text-transform: uppercase;
	color: var(--rrh-white); margin: 0 0 2px;
}
.rrh-bw__vip-tag {
	font-family: 'Exo', sans-serif;
	font-size: 12px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .1em;
	color: var(--rrh-yellow); margin: 0 0 8px;
}
.rrh-bw__vip-copy { font-size: 15px; color: #cbcbcb; line-height: 1.55; margin: 0; }
.rrh-bw__vip-copy strong { color: #fff; }
.rrh-bw__vip-login { color: var(--rrh-yellow); text-decoration: underline; }
.rrh-bw__vip-action { flex-shrink: 0; }
.rrh-bw__vip-btn {
	display: inline-block;
	background: var(--rrh-yellow); color: var(--rrh-black) !important;
	font-family: 'Passion One', sans-serif;
	font-size: 18px; font-weight: 400;
	text-transform: uppercase; letter-spacing: .03em;
	text-decoration: none;
	padding: 12px 24px; border-radius: 7px;
	white-space: nowrap;
}
.rrh-bw__vip-btn:hover { background: var(--rrh-yellow-hover); }

/* forks */
.rrh-bw__fork {
	max-width: 460px; margin: 0 auto;
	background: var(--rrh-surface);
	border: 1.5px solid var(--rrh-border);
	border-radius: 10px;
	padding: 1.75rem;
	text-align: center;
}
.rrh-bw__fork-icon {
	width: 88px; height: 88px;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 10px;
}
.rrh-bw__fork-icon svg { width: 32px; height: 32px; }
.rrh-bw__fork-icon .rrh-bw__custom-icon { width: 100%; height: 100%; object-fit: contain; }
.rrh-bw__fork-title {
	font-family: 'Passion One', sans-serif;
	font-size: 28px; text-transform: uppercase;
	color: var(--rrh-white);
	margin: 0 0 8px;
}
.rrh-bw__fork-text { font-size: 16px; color: #bbb; line-height: 1.6; margin: 0 0 1.25rem; }
.rrh-bw__fork-btn {
	display: inline-block;
	background: var(--rrh-yellow);
	color: var(--rrh-black);
	border: none; border-radius: 7px;
	padding: 12px 24px;
	font-family: 'Exo', sans-serif;
	font-size: 15px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .04em;
	text-decoration: none;
	cursor: pointer;
}
.rrh-bw__fork-btn:hover { background: var(--rrh-yellow-hover); }
.rrh-bw__fork-btn.is-disabled { background: var(--rrh-grey); color: #888; cursor: default; }
.rrh-bw__gform { text-align: left; margin-top: 1rem; }

/* back */
.rrh-bw__back {
	display: inline-flex; align-items: center; gap: 4px;
	background: none; border: none;
	font-family: 'Exo', sans-serif;
	font-size: 14px; color: #aaa;
	cursor: pointer;
	padding: 0; margin-bottom: 1rem;
}
.rrh-bw__back:hover { color: var(--rrh-white); }
.rrh-bw__back svg { width: 14px; height: 14px; }

/* responsive */
@media (max-width: 600px) {
	.rrh-bw { padding: 1.25rem; }
	.rrh-bw__title { font-size: 30px; }
	.rrh-bw__opts { grid-template-columns: 1fr; }
	.rrh-bw__nums { flex-direction: column; }
	.rrh-bw__bottom { grid-template-columns: 1fr; gap: 1.25rem; }
	.rrh-bw__top { grid-template-columns: 1fr; }
	.rrh-bw__cards--epic { grid-template-columns: 1fr; }
	.rrh-bw__vip { flex-direction: column; text-align: center; gap: 1rem; }
	.rrh-bw__vip-brand { width: 140px; }
	.rrh-bw__vip-action { width: 100%; }
	.rrh-bw__vip-btn { display: block; width: 100%; }
}
