.roa-merch-shop {
	--roa-bg: #090909;
	--roa-panel: #101010;
	--roa-panel-soft: #161616;
	--roa-line: rgba(255, 255, 255, 0.12);
	--roa-text: #e3e3e3;
	--roa-heading: #ffffff;
	--roa-muted: #99a9b5;
	--roa-accent: #dd3333;
	--roa-accent-soft: rgba(221, 51, 51, 0.18);
	--roa-success: #57d68d;
	color: var(--roa-text);
	background: var(--roa-bg);
	font-family: Montserrat, "Source Sans Pro", Arial, sans-serif;
}

.roa-merch-shop *,
.roa-merch-shop *::before,
.roa-merch-shop *::after {
	box-sizing: border-box;
}

.roa-merch-header {
	max-width: 1180px;
	margin: 0 auto 42px;
	padding: 60px 20px 30px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
	gap: 28px;
	align-items: end;
	border-bottom: 1px solid var(--roa-line);
}

.roa-merch-kicker,
.roa-product-kicker {
	color: var(--roa-accent);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.roa-merch-header h2,
.roa-product-body h3,
.roa-merch-section-head h3,
.roa-fieldset h4 {
	color: var(--roa-heading);
	font-family: "Bebas Neue", Montserrat, Arial, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0;
}

.roa-merch-header h2 {
	font-size: clamp(42px, 7vw, 92px);
	line-height: 0.9;
}

.roa-merch-header p {
	color: var(--roa-muted);
	line-height: 1.65;
	margin: 0;
}

.roa-merch-grid,
.roa-merch-layout {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.roa-merch-grid {
	display: grid;
	gap: 26px;
	margin-bottom: 34px;
}

.roa-product-card {
	background: var(--roa-panel);
	border: 1px solid var(--roa-line);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	cursor: pointer;
}

.roa-product-main {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
	min-height: 520px;
}

.roa-product-gallery {
	position: relative;
	min-width: 0;
	background: #050505;
	border-right: 1px solid var(--roa-line);
	overflow: hidden;
}

.roa-gallery-track {
	display: flex;
	height: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.roa-gallery-track::-webkit-scrollbar {
	display: none;
}

.roa-gallery-slide {
	position: relative;
	flex: 0 0 100%;
	scroll-snap-align: start;
	display: grid;
	place-items: center;
	min-width: 0;
}

.roa-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.roa-product-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 420px;
	color: rgba(255, 255, 255, 0.12);
	font-family: "Bebas Neue", Montserrat, Arial, sans-serif;
	font-size: 92px;
	background: #070707;
}

.roa-gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border: 1px solid var(--roa-line);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.62);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.roa-gallery-prev {
	left: 14px;
}

.roa-gallery-next {
	right: 14px;
}

.roa-gallery-dots {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}

.roa-gallery-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.roa-gallery-dots button.is-active {
	background: var(--roa-accent);
	border-color: var(--roa-accent);
}

.roa-product-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
	padding: clamp(24px, 4vw, 46px);
}

.roa-product-body h3 {
	font-size: clamp(38px, 5vw, 72px);
	line-height: 0.92;
}

.roa-product-price {
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	margin: 0;
}

.roa-product-options,
.roa-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.roa-product-nickname {
	grid-column: 1 / -1;
}

.roa-merch-shop label {
	display: grid;
	gap: 8px;
	color: var(--roa-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.roa-merch-shop input,
.roa-merch-shop select:not([data-roa-choice-native]),
.roa-merch-shop textarea {
	width: 100%;
	min-height: 46px;
	background: var(--roa-panel-soft);
	border: 1px solid var(--roa-line);
	border-radius: 3px;
	color: var(--roa-text);
	padding: 11px 12px;
	font: inherit;
}

.roa-merch-shop input:focus,
.roa-merch-shop select:not([data-roa-choice-native]):focus,
.roa-merch-shop textarea:focus {
	outline: 2px solid var(--roa-accent-soft);
	border-color: var(--roa-accent);
}

.roa-merch-shop textarea {
	min-height: 110px;
	resize: vertical;
}

.roa-add-to-cart,
.roa-merch-submit,
.roa-product-info-toggle {
	min-height: 48px;
	border: 1px solid var(--roa-accent);
	border-radius: 3px;
	background: var(--roa-accent);
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.roa-add-to-cart,
.roa-merch-submit {
	width: 100%;
}

.roa-add-to-cart:hover,
.roa-merch-submit:hover,
.roa-product-info-toggle:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

.roa-product-info {
	border-top: 1px solid var(--roa-line);
	background: #0c0c0c;
	padding: 18px clamp(20px, 4vw, 46px);
}

.roa-product-info-toggle {
	background: transparent;
	color: var(--roa-heading);
	padding: 0 18px;
	width: auto;
}

.roa-product-info-content {
	padding-top: 18px;
	color: var(--roa-muted);
	line-height: 1.65;
}

.roa-product-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.roa-product-info-grid div {
	border: 1px solid var(--roa-line);
	background: var(--roa-panel);
	padding: 14px;
}

.roa-product-info-grid span {
	display: block;
	color: var(--roa-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.roa-product-info-grid strong {
	color: var(--roa-heading);
}

.roa-merch-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
	gap: 24px;
	align-items: start;
	padding-bottom: 60px;
}

.roa-merch-cart,
.roa-merch-checkout {
	background: var(--roa-panel);
	border: 1px solid var(--roa-line);
	border-radius: 8px;
	padding: 22px;
}

.roa-merch-section-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.roa-merch-section-head h3,
.roa-fieldset h4 {
	font-size: 32px;
	line-height: 1;
}

.roa-merch-cart-count {
	display: grid;
	place-items: center;
	min-width: 32px;
	height: 32px;
	border: 1px solid var(--roa-accent);
	border-radius: 50%;
	color: var(--roa-heading);
	font-weight: 900;
}

.roa-cart-item {
	display: grid;
	gap: 12px;
	border-top: 1px solid var(--roa-line);
	padding: 14px 0;
}

.roa-cart-main {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.roa-cart-main strong,
.roa-cart-controls strong {
	color: var(--roa-heading);
}

.roa-cart-main span,
.roa-cart-controls span {
	color: var(--roa-muted);
}

.roa-cart-controls {
	display: grid;
	grid-template-columns: 72px 1fr 1fr auto;
	gap: 10px;
	align-items: center;
}

.roa-cart-controls input {
	min-height: 38px;
}

.roa-cart-controls button {
	min-height: 38px;
	border: 1px solid var(--roa-line);
	border-radius: 3px;
	background: transparent;
	color: var(--roa-text);
	cursor: pointer;
}

.roa-cart-controls button:hover {
	border-color: var(--roa-accent);
	color: #fff;
}

.roa-merch-cart-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--roa-line);
	padding-top: 16px;
	margin-top: 4px;
	color: var(--roa-heading);
}

.roa-fieldset {
	border: 0;
	border-top: 1px solid var(--roa-line);
	margin: 0;
	padding: 20px 0 0;
}

.roa-fieldset:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.roa-fieldset h4 {
	margin-bottom: 14px;
}

.roa-checkbox {
	display: flex;
	grid-template-columns: none;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	text-transform: none;
	line-height: 1.45;
}

.roa-checkbox input {
	width: 18px;
	height: 18px;
	min-height: 18px;
	margin-top: 2px;
	accent-color: var(--roa-accent);
	flex: 0 0 auto;
}

.roa-checkbox a {
	color: #fff;
	text-decoration: underline;
}

.roa-legal {
	display: grid;
	gap: 12px;
}

.roa-merch-message {
	margin: 16px 0;
	padding: 12px 14px;
	border-radius: 3px;
	border: 1px solid var(--roa-line);
	background: var(--roa-panel-soft);
	color: var(--roa-text);
}

.roa-merch-message.is-error {
	border-color: rgba(221, 51, 51, 0.7);
	color: #ff7b7b;
}

.roa-merch-message.is-success {
	border-color: rgba(87, 214, 141, 0.65);
	color: var(--roa-success);
}

.roa-merch-empty,
.roa-merch-empty-cart {
	color: var(--roa-muted);
	border: 1px dashed var(--roa-line);
	border-radius: 8px;
	padding: 18px;
	text-align: center;
}

.roa-merch-submit.is-loading {
	opacity: 0.65;
	cursor: wait;
}

@media (max-width: 1024px) {
	.roa-merch-header,
	.roa-product-main,
	.roa-merch-layout {
		grid-template-columns: 1fr;
	}

	.roa-product-gallery {
		border-right: 0;
		border-bottom: 1px solid var(--roa-line);
	}

	.roa-gallery-track {
		height: min(70vw, 560px);
	}
}

@media (max-width: 700px) {
	.roa-merch-header,
	.roa-merch-grid,
	.roa-merch-layout {
		padding-left: 14px;
		padding-right: 14px;
	}

	.roa-product-options,
	.roa-form-grid,
	.roa-product-info-grid {
		grid-template-columns: 1fr;
	}

	.roa-product-body {
		padding: 22px;
	}

	.roa-cart-controls {
		grid-template-columns: 72px 1fr;
	}

	.roa-cart-controls strong,
	.roa-cart-controls button {
		grid-column: span 2;
	}
}

/* ROA theme integration layer */
.roa-merch-shop {
	--roa-bg: #090811;
	--roa-bg-soft: #100811;
	--roa-panel: rgba(255, 255, 255, 0.055);
	--roa-panel-soft: rgba(255, 255, 255, 0.085);
	--roa-line: rgba(255, 255, 255, 0.12);
	--roa-line-strong: rgba(255, 255, 255, 0.22);
	--roa-text: rgba(255, 255, 255, 0.78);
	--roa-heading: #fff;
	--roa-muted: rgba(255, 255, 255, 0.58);
	--roa-accent: var(--page-accent, #e11d2f);
	--roa-accent-soft: rgba(225, 29, 47, 0.18);
	--roa-success: #70e3a3;
	--roa-radius: 26px;
	--roa-radius-sm: 16px;
	--roa-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
	--roa-transition: 190ms ease;
	position: relative;
	isolation: isolate;
	padding: clamp(56px, 7vw, 92px) 0 clamp(70px, 8vw, 110px);
	background:
		radial-gradient(circle at 12% 8%, rgba(64, 101, 255, 0.12), transparent 36%),
		radial-gradient(circle at 88% 28%, rgba(225, 29, 47, 0.12), transparent 34%),
		linear-gradient(150deg, #090811 0%, #131313 42%, #081527 70%, #100811 100%);
}

.roa-merch-shop::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%, rgba(255, 255, 255, 0.018) 70%, transparent),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 82px);
	opacity: 0.42;
}

.roa-merch-header {
	max-width: min(1180px, calc(100% - 40px));
	margin: 0 auto clamp(28px, 4vw, 48px);
	padding: clamp(30px, 5vw, 54px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
	gap: clamp(22px, 4vw, 42px);
	align-items: center;
	border: 1px solid var(--roa-line);
	border-radius: var(--roa-radius);
	background:
		radial-gradient(circle at 0 0, var(--roa-accent-soft), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
	box-shadow: var(--roa-shadow);
}

.roa-merch-kicker,
.roa-product-kicker {
	color: var(--roa-accent);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.roa-merch-header h2 {
	font-size: clamp(42px, 7vw, 86px);
	font-weight: 950;
	line-height: 0.9;
	letter-spacing: -0.035em;
}

.roa-merch-header p,
.roa-product-body p,
.roa-fieldset,
.roa-merch-message {
	line-height: 1.65;
}

.roa-merch-grid,
.roa-merch-layout {
	max-width: min(1180px, calc(100% - 40px));
	padding-left: 0;
	padding-right: 0;
}

.roa-merch-grid {
	gap: clamp(24px, 4vw, 42px);
}

.roa-product-card,
.roa-merch-cart,
.roa-merch-checkout {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--roa-line);
	border-radius: var(--roa-radius);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
		linear-gradient(135deg, #090811, #131313 52%, #100811);
	box-shadow: var(--roa-shadow);
	transition: transform var(--roa-transition), border-color var(--roa-transition), box-shadow var(--roa-transition);
}

.roa-product-card::before,
.roa-merch-cart::before,
.roa-merch-checkout::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 2px;
	background: linear-gradient(90deg, var(--roa-accent), rgba(255, 255, 255, 0.38), transparent);
	opacity: 0.78;
	pointer-events: none;
}

.roa-product-card:hover,
.roa-product-card:focus-visible,
.roa-merch-cart:hover,
.roa-merch-checkout:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.22);
	box-shadow: 0 36px 100px rgba(0, 0, 0, 0.46);
	outline: none;
}

.roa-product-card.is-level-locked {
	border-color: rgba(255, 255, 255, 0.10);
}

.roa-product-card.is-level-locked > .roa-product-card-summary {
	filter: grayscale(.72);
	opacity: .66;
}

.roa-product-card.is-level-locked:hover,
.roa-product-card.is-level-locked:focus-visible {
	transform: none;
	box-shadow: var(--roa-shadow);
}

.roa-product-level-badge {
	position: absolute;
	z-index: 4;
	top: 14px;
	left: 14px;
	max-width: calc(100% - 28px);
	padding: 8px 10px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 8px;
	background: rgba(8, 10, 16, .86);
	color: #fff;
	font-size: .76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.roa-product-level-note,
.roa-product-level-lock {
	margin: 8px 0 0;
	color: #fbbf24;
	font-size: .9rem;
	font-weight: 900;
}

.roa-product-level-lock {
	padding: 10px 12px;
	border: 1px solid rgba(251, 191, 36, .28);
	border-radius: 8px;
	background: rgba(251, 191, 36, .10);
}

.roa-add-to-cart:disabled {
	cursor: not-allowed;
	opacity: .55;
	filter: grayscale(.75);
}

.roa-product-main {
	grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
	min-height: min(620px, 78vh);
}

.roa-product-gallery {
	background:
		radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.16), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.28));
	border-right: 1px solid var(--roa-line);
}

.roa-gallery-slide {
	padding: clamp(20px, 3vw, 38px);
}

.roa-gallery-slide img {
	width: min(100%, 560px);
	height: min(560px, 62vh);
	object-fit: contain;
	filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.42));
}

.roa-gallery-btn,
.roa-gallery-dots button {
	border: 1px solid var(--roa-line);
	background: rgba(0, 0, 0, 0.42);
	color: #fff;
	backdrop-filter: blur(12px);
	transition: transform var(--roa-transition), background var(--roa-transition), border-color var(--roa-transition);
}

.roa-gallery-btn:hover,
.roa-gallery-dots button:hover,
.roa-gallery-dots button.is-active {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.16);
}

.roa-product-body {
	padding: clamp(26px, 4vw, 48px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.roa-product-body h3,
.roa-merch-section-head h3,
.roa-fieldset h4 {
	color: var(--roa-heading);
	font-weight: 950;
	letter-spacing: -0.02em;
}

.roa-product-body h3 {
	font-size: clamp(32px, 4.7vw, 66px);
	line-height: 0.95;
}

.roa-product-price {
	display: inline-flex;
	align-self: flex-start;
	margin: 18px 0 24px;
	padding: 10px 15px;
	border: 1px solid var(--roa-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 18px;
	font-weight: 950;
}

.roa-product-options,
.roa-product-info-grid,
.roa-form-grid {
	gap: 14px;
}

.roa-product-options label,
.roa-product-choice-field,
.roa-product-info,
.roa-fieldset,
.roa-cart-item,
.roa-merch-cart-footer,
.roa-legal .roa-checkbox {
	border: 1px solid var(--roa-line);
	border-radius: var(--roa-radius-sm);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.roa-product-options label,
.roa-product-choice-field {
	padding: 12px;
}

.roa-product-choice-field.is-hidden-choice {
	display: none;
}

.roa-product-choice-label {
	display: block;
	margin-bottom: 8px;
	color: var(--roa-muted);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.roa-choice-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.roa-choice-button {
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: transform var(--roa-transition), border-color var(--roa-transition), background var(--roa-transition), color var(--roa-transition);
}

.roa-choice-button:hover,
.roa-choice-button:focus-visible,
.roa-choice-button.is-active {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	outline: none;
}

.roa-product-options select:not([data-roa-choice-native]),
.roa-product-options input,
.roa-form-grid input,
.roa-fieldset textarea {
	width: 100%;
	color: #fff;
	border: 1px solid var(--roa-line);
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.26);
	transition: border-color var(--roa-transition), background var(--roa-transition), box-shadow var(--roa-transition);
}

.roa-product-options select:not([data-roa-choice-native]):focus,
.roa-product-options input:focus,
.roa-form-grid input:focus,
.roa-fieldset textarea:focus {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.075);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
	outline: none;
}

.roa-add-to-cart,
.roa-merch-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
	color: #fff;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
	transition: transform var(--roa-transition), border-color var(--roa-transition), background var(--roa-transition), box-shadow var(--roa-transition);
}

.roa-add-to-cart:hover,
.roa-merch-submit:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.34);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.1));
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.roa-merch-layout {
	margin-top: clamp(28px, 5vw, 56px);
	grid-template-columns: minmax(300px, 0.74fr) minmax(420px, 1.26fr);
	gap: clamp(22px, 4vw, 34px);
	align-items: start;
}

.roa-merch-section-head {
	padding-bottom: 14px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--roa-line);
}

.roa-merch-cart,
.roa-merch-checkout {
	padding: clamp(20px, 3vw, 30px);
}

.roa-merch-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-weight: 950;
}

.roa-merch-message {
	border-radius: var(--roa-radius-sm);
	background: rgba(255, 255, 255, 0.055);
}

.roa-merch-empty,
.roa-merch-empty-cart {
	max-width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	border-radius: var(--roa-radius);
	background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 1024px) {
	.roa-merch-header,
	.roa-product-main,
	.roa-merch-layout {
		grid-template-columns: 1fr;
	}

	.roa-product-main {
		min-height: 0;
	}

	.roa-product-gallery {
		border-right: 0;
		border-bottom: 1px solid var(--roa-line);
	}
}

@media (max-width: 700px) {
	.roa-merch-header,
	.roa-merch-grid,
	.roa-merch-layout {
		max-width: calc(100% - 28px);
	}

	.roa-merch-header {
		padding: 24px;
	}
}

/* Full ROA theme page integration */
.roa-shop-page {
	--page-accent: var(--roa-blue, #e11d2f);
	background:
		radial-gradient(circle at 12% 12%, rgba(70, 108, 255, 0.12), transparent 30%),
		radial-gradient(circle at 86% 22%, rgba(225, 29, 47, 0.08), transparent 32%),
		linear-gradient(145deg, #090811 0%, #131313 44%, #081527 72%, #100811 100%);
	color: rgba(255, 255, 255, 0.78);
}

.roa-merch-info-band span {
	color: var(--page-accent);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.roa-merch-intro,
.roa-merch-products-section,
.roa-merch-checkout-section,
.roa-merch-faq-section {
	position: relative;
}

.roa-merch-intro {
	padding-top: clamp(42px, 6vw, 82px);
}

.roa-merch-info-band {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: min(1180px, calc(100% - 40px));
	margin: 18px auto 0;
}

.roa-merch-info-band article,
.roa-merch-faq-item,
.roa-product-detail-blocks section {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 50px rgba(0, 0, 0, 0.24);
}

.roa-merch-info-band article {
	min-height: 138px;
	padding: 20px;
	display: grid;
	align-content: center;
	gap: 9px;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.roa-merch-info-band article:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.075);
}

.roa-merch-info-band p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.55;
}

.roa-front-section-head {
	max-width: min(1180px, calc(100% - 40px));
	margin: 0 auto clamp(22px, 4vw, 34px);
}

.roa-front-section-head h2 {
	max-width: 780px;
	margin: 8px 0 0;
	color: #fff;
	font-size: clamp(34px, 5vw, 64px);
	font-weight: 950;
	line-height: 0.95;
	letter-spacing: -0.035em;
	text-transform: uppercase;
}

.roa-product-brand,
.roa-product-short-description,
.roa-product-tax-note,
.roa-product-disclaimer,
.roa-merch-price-note {
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
	line-height: 1.6;
}

.roa-product-brand {
	align-self: flex-start;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.roa-product-tax-note,
.roa-product-disclaimer {
	max-width: 46rem;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

.roa-merch-shop .roa-product-options label.roa-product-check-option {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	min-height: 52px;
}

.roa-merch-shop .roa-product-check-option input {
	width: 18px;
	height: 18px;
	min-height: 18px;
	accent-color: var(--roa-accent);
}

.roa-product-check-option span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.roa-product-detail-blocks {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 18px 0;
}

.roa-product-detail-blocks section {
	min-height: 180px;
	padding: 18px;
}

.roa-product-detail-blocks h4 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 15px;
	font-weight: 950;
	text-transform: uppercase;
}

.roa-product-detail-blocks p {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
}

.roa-legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 9px;
}

.roa-legal-links a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	text-decoration: none;
}

.roa-merch-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.roa-merch-faq-item {
	padding: 18px 20px;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.roa-merch-faq-item:hover,
.roa-merch-faq-item[open] {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.075);
}

.roa-merch-faq-item summary {
	color: #fff;
	font-size: 16px;
	font-weight: 950;
	line-height: 1.25;
	cursor: pointer;
}

.roa-merch-faq-item p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.65;
}

@media (max-width: 980px) {
	.roa-merch-info-band,
	.roa-product-detail-blocks,
	.roa-merch-faq-grid {
		grid-template-columns: 1fr;
	}
}

/* v1.1.5 - Theme-native product overview and modal flow */
.roa-shop-page {
	--page-accent: var(--roa-blue, #e11d2f);
	background:
		radial-gradient(circle at 12% 12%, rgba(70, 108, 255, 0.12), transparent 30%),
		radial-gradient(circle at 86% 22%, rgba(225, 29, 47, 0.08), transparent 32%),
		linear-gradient(145deg, #090811 0%, #131313 44%, #081527 72%, #100811 100%);
	color: rgba(255, 255, 255, 0.78);
}

.roa-merch-shop {
	padding-top: 0;
	background:
		linear-gradient(180deg, rgba(9, 8, 17, 0.72), rgba(19, 19, 19, 0.92) 38%, rgba(8, 21, 39, 0.84) 70%, rgba(16, 8, 17, 0.92));
}

.roa-merch-header {
	border-radius: var(--roa-radius, 26px);
}

.roa-merch-info-band {
	grid-template-columns: 1fr;
	max-width: min(1180px, calc(100% - 40px));
}

.roa-merch-info-band article {
	min-height: auto;
	grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
	align-items: center;
}

.roa-merch-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
	max-width: min(1180px, calc(100% - 40px));
}

.roa-product-overview-card {
	min-height: 0;
	max-height: calc(100svh - 24px);
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	border-radius: var(--roa-radius, 26px);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.024)),
		linear-gradient(135deg, #090811, #131313 52%, #100811);
}

.roa-product-card-summary {
	display: contents;
}

.roa-product-card-media {
	display: grid;
	place-items: center;
	min-height: 0;
	padding: 0;
	background:
		radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.16), transparent 32%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.18));
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.roa-product-card-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.38));
}

.roa-product-card-body {
	display: grid;
	align-content: start;
	gap: 8px;
	padding: clamp(12px, 1.6vw, 18px);
}

.roa-product-card-body h3 {
	color: #fff;
	font-size: clamp(18px, 1.55vw, 24px);
	font-weight: 950;
	line-height: 1.04;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.roa-product-card-body .roa-product-price {
	margin: 0;
	padding: 7px 10px;
	font-size: 14px;
}

.roa-product-open {
	width: max-content;
	max-width: 100%;
	min-height: 40px;
	margin-top: auto;
	margin-left: auto;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
	color: #fff;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform var(--roa-transition), border-color var(--roa-transition), background var(--roa-transition), box-shadow var(--roa-transition);
}

.roa-product-open:hover,
.roa-product-open:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.34);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.09));
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.roa-product-modal[hidden] {
	display: none;
}

.roa-product-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: clamp(18px, 3vw, 42px);
}

.roa-product-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 5, 10, 0.78);
	backdrop-filter: blur(18px);
}

.roa-product-modal-dialog {
	position: relative;
	width: min(1180px, 100%);
	max-height: min(88vh, 940px);
	overflow: auto;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 30px;
	background:
		radial-gradient(circle at 4% 0%, rgba(255, 255, 255, 0.13), transparent 32%),
		linear-gradient(145deg, #090811, #131313 46%, #100811);
	box-shadow: 0 40px 130px rgba(0, 0, 0, 0.62);
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.26) transparent;
}

.roa-product-modal-dialog::-webkit-scrollbar {
	width: 10px;
}

.roa-product-modal-dialog::-webkit-scrollbar-thumb {
	border: 3px solid transparent;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	background-clip: content-box;
}

.roa-product-modal-close {
	position: sticky;
	top: 16px;
	left: calc(100% - 58px);
	z-index: 4;
	width: 42px;
	height: 42px;
	margin: 16px 16px -58px auto;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(12px);
}

.roa-product-modal .roa-product-main {
	min-height: 0;
	grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.12fr);
}

.roa-product-modal .roa-product-info {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.12);
}

.roa-product-info-toggle {
	display: none;
}

.roa-product-info-content {
	padding-top: 0;
}

.roa-product-detail-blocks {
	grid-template-columns: 1fr;
}

.roa-product-detail-blocks section {
	min-height: auto;
}

.roa-product-detail-blocks p {
	font-size: 14px;
	line-height: 1.72;
}

.roa-size-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.roa-size-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 460px;
	color: rgba(255, 255, 255, 0.78);
}

.roa-size-table :where(th, td) {
	padding: 11px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: left;
}

.roa-size-table th {
	color: #fff;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.roa-size-note {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
}

.roa-product-info-grid {
	grid-template-columns: 1fr;
}

.roa-merch-modal-open {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.roa-merch-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.roa-product-modal .roa-product-main,
	.roa-merch-info-band article {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.roa-merch-grid {
		grid-template-columns: 1fr;
	}

	.roa-product-modal {
		padding: 10px;
	}

	.roa-product-modal-dialog {
		max-height: 92vh;
		border-radius: 22px;
	}
}

/* v1.1.6 - Shop page alignment with ROA managed pages */
.roa-shop-page {
	background:
		radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.08), transparent 28%),
		radial-gradient(circle at 84% 28%, rgba(60, 92, 160, 0.12), transparent 34%),
		linear-gradient(145deg, #090811 0%, #131313 42%, #081527 68%, #100811 100%);
}

.roa-merch-shop {
	background:
		linear-gradient(180deg, rgba(9, 8, 17, 0.74), rgba(19, 19, 19, 0.92) 36%, rgba(8, 21, 39, 0.82) 72%, rgba(16, 8, 17, 0.9));
}

.roa-merch-info-band {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
}

.roa-merch-info-band article {
	min-height: 150px;
	display: grid;
	grid-template-columns: 1fr;
	align-content: center;
}

.roa-merch-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 22px);
	align-items: stretch;
}

.roa-product-overview-card {
	min-height: 0;
	max-height: calc(100svh - 24px);
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	overflow: hidden;
}

.roa-product-overview-card.is-modal-open,
.roa-product-overview-card.is-modal-open:hover {
	z-index: 100001;
	overflow: visible;
	transform: none;
	box-shadow: var(--roa-shadow);
}

.roa-product-card-media {
	padding: 0;
	min-height: 0;
	height: min(48svh, 300px);
}

.roa-product-card-media img {
	width: 100%;
	height: 100%;
}

.roa-product-card-body {
	min-height: 0;
	gap: 8px;
	padding: clamp(12px, 1.6vw, 18px);
}

.roa-product-card-body h3 {
	font-size: clamp(18px, 1.55vw, 24px);
	line-height: 1.04;
}

.roa-product-card-body .roa-product-price {
	font-size: 14px;
}

.roa-product-overview-card .roa-product-short-description {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
}

.roa-product-open {
	margin-top: auto;
	margin-left: auto;
}

.roa-product-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	width: 100vw;
	height: 100vh;
}

.roa-product-modal-dialog {
	width: min(1120px, calc(100vw - 36px));
	max-height: min(88vh, 900px);
}

.roa-merch-faq-section .roa-container {
	width: min(980px, calc(100% - 40px));
}

.roa-merch-faq-grid {
	max-width: 940px;
	margin: 0 auto;
}

.roa-shop-footer {
	margin-top: 0;
}

.roa-shop-footer .roa-theme-footer-socials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.roa-shop-footer .roa-theme-footer-socials a {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1100px) {
	.roa-merch-grid,
	.roa-merch-info-band {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.roa-merch-grid,
	.roa-merch-info-band,
	.roa-merch-faq-grid {
		grid-template-columns: 1fr;
	}

	.roa-product-overview-card {
		grid-template-rows: minmax(0, 1fr) auto;
	}
}

/* v1.1.7 - centered modal and structured product information */
.roa-product-modal {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: clamp(16px, 3vw, 34px);
	overflow: hidden;
}

.roa-product-modal-dialog {
	width: min(1080px, calc(100vw - 40px));
	max-height: calc(100vh - 48px);
	max-height: calc(100dvh - 48px);
	margin: auto;
	overflow: auto;
	border-radius: clamp(22px, 2.2vw, 30px);
}

.roa-product-modal .roa-product-main {
	min-height: 0;
	grid-template-columns: minmax(260px, 0.82fr) minmax(330px, 1.18fr);
}

.roa-product-modal .roa-product-gallery {
	min-height: min(430px, 48vh);
}

.roa-product-modal .roa-gallery-slide {
	min-height: min(430px, 48vh);
}

.roa-product-modal .roa-gallery-slide img {
	width: min(100%, 460px);
	height: min(420px, 46vh);
	object-fit: contain;
}

.roa-jersey-logo-overlay {
	position: absolute;
	z-index: 3;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.42));
	pointer-events: none;
	opacity: 0.94;
}

.roa-product-modal .roa-product-body {
	justify-content: start;
	gap: 14px;
	padding: clamp(22px, 3vw, 38px);
}

.roa-product-modal .roa-product-body h3 {
	font-size: clamp(30px, 3.8vw, 56px);
}

.roa-product-modal .roa-product-price {
	margin: 4px 0 8px;
	font-size: 16px;
}

.roa-product-info {
	padding: clamp(18px, 2.5vw, 30px);
}

.roa-product-detail-blocks {
	gap: 14px;
}

.roa-product-detail-blocks section {
	padding: clamp(18px, 2.3vw, 26px);
}

.roa-product-rich-text {
	display: grid;
	gap: 14px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.68;
}

.roa-product-rich-text p {
	margin: 0;
}

.roa-product-rich-text h5,
.roa-product-bullet-group h5 {
	margin: 0;
	color: #fff;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.roa-product-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	margin: 0;
}

.roa-product-facts div {
	min-width: 0;
	padding: 12px 13px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 16px;
	background:
		radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.08), transparent 36%),
		rgba(255, 255, 255, 0.045);
}

.roa-product-facts dt {
	margin: 0 0 5px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.roa-product-facts dd {
	margin: 0;
	color: #fff;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.roa-product-bullet-group {
	display: grid;
	gap: 10px;
}

.roa-product-bullet-group ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.roa-product-bullet-group li {
	position: relative;
	padding: 9px 10px 9px 28px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.045);
	color: rgba(255, 255, 255, 0.76);
	font-size: 13px;
	line-height: 1.45;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.roa-product-bullet-group li::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 1.08em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
}

.roa-product-bullet-group li:hover {
	transform: translateX(2px);
	background: rgba(255, 255, 255, 0.075);
	color: #fff;
}

.roa-size-table-wrap {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(0, 0, 0, 0.16);
	overflow: auto;
}

.roa-size-table {
	min-width: min(560px, 100%);
	font-size: 13px;
}

.roa-size-table :where(th, td) {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	vertical-align: middle;
}

.roa-size-table thead th {
	background: rgba(255, 255, 255, 0.075);
	color: #fff;
}

.roa-size-table tbody th {
	color: #fff;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.roa-size-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.045);
}

.roa-product-info-grid {
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 9px;
	margin-top: 14px;
}

.roa-product-info-grid div {
	min-height: auto;
	padding: 11px 12px;
	border-radius: 15px;
}

.roa-product-info-grid span {
	margin-bottom: 5px;
	font-size: 9px;
	line-height: 1.2;
	letter-spacing: 0.08em;
}

.roa-product-info-grid strong {
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.35;
	text-transform: none;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

@media (max-width: 900px) {
	.roa-product-modal .roa-product-main {
		grid-template-columns: 1fr;
	}

	.roa-product-modal .roa-product-gallery,
	.roa-product-modal .roa-gallery-slide {
		min-height: 300px;
	}
}

@media (max-width: 640px) {
	.roa-product-modal {
		padding: 10px;
	}

	.roa-product-modal-dialog {
		width: calc(100vw - 20px);
		max-height: calc(100vh - 20px);
		max-height: calc(100dvh - 20px);
	}
}

/* v1.1.9 - stable viewport modal and conditional product options */
.roa-merch-modal-open {
	overflow: hidden;
}

.roa-product-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: clamp(14px, 2.4vw, 28px);
	overflow: hidden;
}

.roa-product-modal[hidden],
.roa-product-dependent-fields[hidden] {
	display: none;
}

.roa-product-modal-backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.08), transparent 34%),
		rgba(3, 5, 10, 0.84);
	backdrop-filter: blur(18px);
}

.roa-product-modal-dialog {
	position: relative;
	width: min(1060px, calc(100vw - 28px));
	max-height: calc(100vh - 28px);
	max-height: calc(100dvh - 28px);
	margin: 0;
	overflow: auto;
	border-radius: clamp(20px, 2vw, 28px);
	scrollbar-gutter: stable;
	overscroll-behavior: contain;
}

.roa-product-modal-close {
	position: sticky;
	top: 14px;
	right: 14px;
	left: auto;
	float: right;
	margin: 14px 14px -56px 0;
}

.roa-product-modal .roa-product-main {
	grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
	align-items: start;
}

.roa-product-modal .roa-product-gallery {
	align-self: start;
	min-height: clamp(260px, 40vh, 430px);
	padding: clamp(16px, 2vw, 24px);
}

.roa-product-modal .roa-gallery-slide {
	min-height: clamp(260px, 40vh, 430px);
	align-items: flex-start;
	justify-content: center;
}

.roa-product-modal .roa-gallery-slide img {
	width: min(100%, 460px);
	height: min(400px, 40vh);
	object-fit: contain;
	object-position: top center;
	align-self: flex-start;
}

.roa-product-modal .roa-product-body {
	min-width: 0;
	align-content: start;
}

.roa-product-option-group,
.roa-product-dependent-fields {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.roa-product-dependent-fields {
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background:
		radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
		rgba(255, 255, 255, 0.035);
}

.roa-product-dependent-fields label {
	margin: 0;
}

@media (max-width: 900px) {
	.roa-product-modal {
		align-items: flex-start;
		padding: 10px;
	}

	.roa-product-modal-dialog {
		width: calc(100vw - 20px);
		max-height: calc(100vh - 20px);
		max-height: calc(100dvh - 20px);
	}

	.roa-product-modal .roa-product-main {
		grid-template-columns: 1fr;
	}

	.roa-product-modal .roa-product-gallery,
	.roa-product-modal .roa-gallery-slide {
		min-height: 250px;
	}

	.roa-product-modal .roa-gallery-slide img {
		height: min(310px, 34vh);
	}
}

/* v1.1.10 - readable selects, compact checks and size-table tabs */
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]),
.roa-merch-shop .roa-product-options input,
.roa-merch-shop .roa-form-grid input,
.roa-merch-shop .roa-fieldset textarea {
	color-scheme: dark;
	color: #fff;
	background: rgba(6, 7, 13, 0.82);
}

.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]) option,
.roa-merch-shop .roa-form-grid select option {
	background: #101018;
	color: #fff;
}

.roa-merch-shop .roa-product-options label.roa-product-check-option {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: center;
	justify-content: start;
	gap: 10px;
	width: 100%;
	min-height: 50px;
}

.roa-merch-shop .roa-product-check-option input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	margin: 0;
	padding: 0;
	justify-self: start;
}

.roa-merch-shop .roa-product-check-option span {
	display: block;
	width: auto;
	min-width: 0;
	line-height: 1.25;
}

.roa-size-table-tabs {
	display: grid;
	gap: 12px;
}

.roa-size-tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.roa-size-tab-list button {
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.roa-size-tab-list button:hover,
.roa-size-tab-list button:focus-visible,
.roa-size-tab-list button.is-active {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.3);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.075));
	color: #fff;
	outline: none;
}

.roa-size-tab-panel[hidden] {
	display: none;
}

.roa-size-table-wrap {
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}

.roa-size-table {
	min-width: 680px;
	white-space: nowrap;
}

/* v1.1.11 - stable dark selects, aligned checkboxes and fixed size-table tabs */
.roa-merch-shop select:not([data-roa-choice-native]),
.roa-merch-shop input,
.roa-merch-shop textarea {
	color-scheme: dark;
}

.roa-merch-shop select:not([data-roa-choice-native]) {
	color: #fff;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
		#0c0d14;
	border-color: rgba(255, 255, 255, 0.16);
}

.roa-merch-shop select:not([data-roa-choice-native]) option,
.roa-merch-shop select:not([data-roa-choice-native]) optgroup {
	color: #fff;
	background: #0c0d14;
}

.roa-merch-shop .roa-product-options label.roa-product-check-option,
.roa-merch-shop .roa-checkbox {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: flex-start;
	justify-content: start;
	gap: 10px;
	text-align: left;
}

.roa-merch-shop .roa-product-check-option input[type="checkbox"],
.roa-merch-shop .roa-checkbox input[type="checkbox"] {
	grid-column: 1;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	margin: 2px 0 0;
	padding: 0;
	justify-self: start;
	align-self: start;
}

.roa-merch-shop .roa-product-check-option span,
.roa-merch-shop .roa-checkbox > span {
	grid-column: 2;
	min-width: 0;
	line-height: 1.35;
}

.roa-size-table-tabs,
.roa-size-tab-panel {
	min-width: 0;
	max-width: 100%;
}

.roa-size-table-wrap {
	max-width: 100%;
	max-height: min(46vh, 440px);
	overflow: auto;
	scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.06);
}

.roa-size-table {
	width: max-content;
	min-width: 100%;
	white-space: nowrap;
}

.roa-size-table-empty {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	line-height: 1.5;
}

/* v1.1.12 - inline checkbox rows, dark native selects and single gallery control */
.roa-merch-shop .roa-product-option-group,
.roa-merch-shop .roa-product-options > label.roa-product-check-option {
	grid-column: 1 / -1;
}

.roa-merch-shop .roa-product-options label.roa-product-check-option,
.roa-merch-shop label.roa-product-check-option,
.roa-merch-shop .roa-checkbox {
	display: inline-grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: center;
	justify-content: flex-start;
	justify-items: start;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	min-height: 40px;
	text-align: left;
}

.roa-merch-shop .roa-product-options label.roa-product-check-option {
	padding: 10px 12px;
}

.roa-merch-shop .roa-product-check-option input[type="checkbox"],
.roa-merch-shop .roa-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	margin: 0;
	padding: 0;
	align-self: center;
	justify-self: start;
}

.roa-merch-shop .roa-product-check-option span,
.roa-merch-shop .roa-checkbox > span {
	min-width: 0;
	line-height: 1.15;
	word-break: normal;
	overflow-wrap: normal;
}

.roa-merch-shop .roa-product-check-option span {
	white-space: nowrap;
}

.roa-merch-shop .roa-checkbox > span {
	white-space: normal;
}

.roa-merch-shop select:not([data-roa-choice-native]),
.roa-merch-shop select:not([data-roa-choice-native]):hover,
.roa-merch-shop select:not([data-roa-choice-native]):focus,
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]),
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]):hover,
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]):focus,
.roa-merch-shop .roa-form-grid select:not([data-roa-choice-native]),
.roa-merch-shop .roa-form-grid select:not([data-roa-choice-native]):hover,
.roa-merch-shop .roa-form-grid select:not([data-roa-choice-native]):focus {
	color: #fff;
	color-scheme: dark;
	appearance: none;
	-webkit-appearance: none;
	background-color: #0c0d14;
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.9) 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%);
	background-position:
		0 0,
		calc(100% - 18px) 50%,
		calc(100% - 13px) 50%;
	background-size:
		100% 100%,
		5px 5px,
		5px 5px;
	background-repeat: no-repeat;
	border-color: rgba(255, 255, 255, 0.18);
}

.roa-merch-shop select:not([data-roa-choice-native]) option,
.roa-merch-shop select:not([data-roa-choice-native]) optgroup,
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]) option,
.roa-merch-shop .roa-form-grid select option {
	color: #fff;
	background-color: #0c0d14;
}

.roa-merch-shop select:not([data-roa-choice-native]) option:checked {
	color: #fff;
	background-color: #202236;
}

.roa-gallery-dots {
	display: none;
}

@media (max-width: 520px) {
	.roa-merch-shop .roa-product-check-option span,
	.roa-merch-shop .roa-checkbox > span {
		white-space: normal;
	}
}

/* v1.1.13 - real inline checks, forced dark selects and cleaned table behavior */
.roa-merch-shop .roa-product-options > .roa-product-check-option,
.roa-merch-shop .roa-product-options > .roa-product-option-group {
	grid-column: 1 / -1;
	width: 100%;
	min-width: 0;
}

.roa-merch-shop .roa-product-check-option,
.roa-merch-shop .roa-inline-check,
.roa-merch-shop label.roa-checkbox.roa-inline-check {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	text-align: left;
}

.roa-merch-shop .roa-product-check-option {
	align-items: center;
	min-height: 42px;
}

.roa-merch-shop .roa-product-check-option input[type="checkbox"],
.roa-merch-shop .roa-inline-check input[type="checkbox"],
.roa-merch-shop label.roa-checkbox.roa-inline-check input[type="checkbox"] {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	margin: 2px 0 0;
	padding: 0;
	align-self: flex-start;
	accent-color: var(--roa-accent);
}

.roa-merch-shop .roa-product-check-option input[type="checkbox"] {
	margin-top: 0;
	align-self: center;
}

.roa-merch-shop .roa-product-check-option > span,
.roa-merch-shop .roa-inline-check > span,
.roa-merch-shop label.roa-checkbox.roa-inline-check > span {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	text-align: left;
	line-height: 1.25;
	word-break: normal;
	overflow-wrap: normal;
}

.roa-merch-shop .roa-product-options .roa-product-check-option > span {
	font-size: clamp(10px, 1vw, 12px);
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.roa-merch-shop select:not([data-roa-choice-native]),
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]),
.roa-merch-shop .roa-form-grid select:not([data-roa-choice-native]),
.roa-merch-shop .roa-fieldset select:not([data-roa-choice-native]) {
	color: #fff !important;
	color-scheme: dark !important;
	background-color: #0b0d14 !important;
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
		linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.9) 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%) !important;
	border-color: rgba(255, 255, 255, 0.2) !important;
}

.roa-merch-shop select option,
.roa-merch-shop select optgroup,
.roa-merch-shop .roa-product-options select option,
.roa-merch-shop .roa-form-grid select option,
.roa-merch-shop .roa-fieldset select option {
	color: #fff !important;
	background: #0b0d14 !important;
	background-color: #0b0d14 !important;
}

.roa-merch-shop select option:checked,
.roa-merch-shop select option:hover {
	color: #fff !important;
	background: #252838 !important;
	background-color: #252838 !important;
}

.roa-merch-shop .roa-size-table th,
.roa-merch-shop .roa-size-table td {
	vertical-align: middle;
}

@media (max-width: 720px) {
	.roa-merch-shop .roa-product-options .roa-product-check-option > span {
		white-space: normal;
	}
}

/* v1.1.14 - custom check controls, ROA select menu and cart/checkout spacing */
.roa-merch-shop .roa-product-check-option.roa-inline-check,
.roa-merch-shop .roa-checkbox.roa-inline-check {
	display: grid !important;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: center;
	column-gap: 10px;
	row-gap: 0;
	width: 100%;
	min-width: 0;
}

.roa-merch-shop .roa-checkbox.roa-inline-check {
	align-items: flex-start;
}

.roa-merch-shop .roa-product-check-option.roa-inline-check input[type="checkbox"],
.roa-merch-shop .roa-checkbox.roa-inline-check input[type="checkbox"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
}

.roa-merch-shop .roa-check-control {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 7px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
		rgba(9, 10, 16, 0.9);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 10px 28px rgba(0, 0, 0, 0.28);
	transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.roa-merch-shop .roa-check-control::after {
	content: "";
	width: 9px;
	height: 5px;
	border: 2px solid #fff;
	border-top: 0;
	border-right: 0;
	opacity: 0;
	transform: rotate(-45deg) scale(0.65);
	transition: opacity 160ms ease, transform 160ms ease;
}

.roa-merch-shop .roa-inline-check input[type="checkbox"]:checked + .roa-check-control {
	border-color: color-mix(in srgb, var(--roa-accent) 78%, #fff 22%);
	background:
		linear-gradient(145deg, color-mix(in srgb, var(--roa-accent) 45%, rgba(255, 255, 255, 0.12)), rgba(255, 255, 255, 0.08)),
		rgba(12, 13, 20, 0.96);
	box-shadow:
		0 0 0 3px color-mix(in srgb, var(--roa-accent) 18%, transparent),
		0 12px 34px rgba(0, 0, 0, 0.34);
}

.roa-merch-shop .roa-inline-check input[type="checkbox"]:checked + .roa-check-control::after {
	opacity: 1;
	transform: rotate(-45deg) scale(1);
}

.roa-merch-shop .roa-inline-check input[type="checkbox"]:focus-visible + .roa-check-control {
	outline: 2px solid rgba(255, 255, 255, 0.72);
	outline-offset: 3px;
}

.roa-merch-shop .roa-product-check-option:hover .roa-check-control,
.roa-merch-shop .roa-checkbox:hover .roa-check-control {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.38);
}

.roa-merch-shop .roa-check-label {
	display: block;
	min-width: 0;
	width: auto;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(10px, 0.95vw, 12px);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0.055em;
	text-align: left;
	text-transform: uppercase;
	word-break: normal;
	overflow-wrap: anywhere;
}

.roa-merch-shop .roa-checkbox .roa-check-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.roa-merch-shop .roa-legal-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-left: 6px;
}

.roa-merch-shop .roa-native-select-hidden,
.roa-merch-shop .roa-product-options select[data-roa-choice-native] {
	position: absolute !important;
	display: block !important;
	width: 1px !important;
	height: 1px !important;
	min-width: 1px !important;
	min-height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	overflow: hidden !important;
	white-space: nowrap !important;
}

.roa-merch-shop .roa-custom-select {
	position: relative;
	display: block;
	width: 100%;
	margin-top: 7px;
}

.roa-merch-shop .roa-custom-select-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 42px;
	padding: 11px 38px 11px 13px;
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.02em;
	text-align: left;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
		#0b0d14;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	cursor: pointer;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.roa-merch-shop .roa-custom-select-button::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	width: 8px;
	height: 8px;
	border: solid rgba(255, 255, 255, 0.82);
	border-width: 0 2px 2px 0;
	transform: translateY(-65%) rotate(45deg);
	transition: transform 160ms ease;
}

.roa-merch-shop .roa-custom-select.is-open .roa-custom-select-button::after {
	transform: translateY(-35%) rotate(225deg);
}

.roa-merch-shop .roa-custom-select-button:hover,
.roa-merch-shop .roa-custom-select-button:focus-visible {
	border-color: rgba(255, 255, 255, 0.36);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 0 0 3px rgba(255, 255, 255, 0.06);
	outline: none;
}

.roa-merch-shop .roa-custom-select-list {
	position: absolute;
	z-index: 30;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	display: grid;
	gap: 4px;
	max-height: 230px;
	padding: 8px;
	overflow: auto;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
		#080a10;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.roa-merch-shop .roa-custom-select-list[hidden] {
	display: none;
}

.roa-merch-shop .roa-custom-select-option {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 34px;
	padding: 8px 10px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	font-weight: 800;
	text-align: left;
	border: 0;
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
	transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.roa-merch-shop .roa-custom-select-option:hover,
.roa-merch-shop .roa-custom-select-option.is-active {
	color: #fff;
	background: rgba(255, 255, 255, 0.11);
	transform: translateX(2px);
}

.roa-merch-shop .roa-custom-select-option:disabled,
.roa-merch-shop .roa-custom-select.is-disabled .roa-custom-select-button {
	opacity: 0.55;
	cursor: not-allowed;
}

.roa-merch-shop .roa-merch-layout {
	gap: clamp(24px, 4vw, 38px);
	row-gap: clamp(24px, 4vw, 38px);
}

.roa-merch-shop .roa-merch-cart,
.roa-merch-shop .roa-merch-checkout {
	display: grid;
	gap: clamp(16px, 2.4vw, 24px);
	align-content: start;
}

.roa-merch-shop [data-roa-cart-items],
.roa-merch-shop .roa-form-grid,
.roa-merch-shop .roa-legal,
.roa-merch-shop .roa-billing-fields {
	display: grid;
	gap: 14px;
}

.roa-merch-shop .roa-fieldset {
	padding: clamp(16px, 2.2vw, 22px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
}

.roa-merch-shop .roa-fieldset:first-of-type {
	padding-top: clamp(16px, 2.2vw, 22px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.roa-merch-shop .roa-cart-item {
	margin: 0;
}

.roa-merch-shop .roa-cart-controls {
	gap: 10px;
}

/* v1.1.15 - use the real select again, no generated select button */
.roa-merch-shop .roa-custom-select {
	display: none !important;
}

.roa-merch-shop select:not([data-roa-choice-native]),
.roa-merch-shop select.roa-native-select-hidden:not([data-roa-choice-native]),
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]),
.roa-merch-shop .roa-form-grid select:not([data-roa-choice-native]),
.roa-merch-shop .roa-fieldset select:not([data-roa-choice-native]) {
	position: static !important;
	display: block !important;
	width: 100% !important;
	height: auto !important;
	min-height: 44px !important;
	margin: 7px 0 0 !important;
	padding: 11px 40px 11px 13px !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	color: #fff !important;
	color-scheme: dark !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.02em !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 14px !important;
	background-color: #0b0d14 !important;
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
		linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.92) 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.92) 50%, transparent 50%) !important;
	background-position:
		0 0,
		calc(100% - 18px) 50%,
		calc(100% - 13px) 50% !important;
	background-size:
		100% 100%,
		5px 5px,
		5px 5px !important;
	background-repeat: no-repeat !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.09),
		0 10px 28px rgba(0, 0, 0, 0.22) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.roa-merch-shop select:not([data-roa-choice-native]):hover,
.roa-merch-shop select:not([data-roa-choice-native]):focus {
	border-color: rgba(255, 255, 255, 0.38) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 0 0 3px rgba(255, 255, 255, 0.06),
		0 14px 36px rgba(0, 0, 0, 0.28) !important;
	outline: none !important;
}

.roa-merch-shop select:not([data-roa-choice-native]) option,
.roa-merch-shop select:not([data-roa-choice-native]) optgroup {
	color: #fff !important;
	background: #0b0d14 !important;
	background-color: #0b0d14 !important;
}

.roa-merch-shop label.roa-product-check-option.roa-inline-check,
.roa-merch-shop label.roa-checkbox.roa-inline-check {
	grid-template-columns: 20px minmax(0, 1fr) !important;
	column-gap: 10px !important;
	align-items: center !important;
}

.roa-merch-shop label.roa-checkbox.roa-inline-check {
	align-items: flex-start !important;
}

/* v1.1.16 - plain native select styling and non-zero checkout spacing */
.roa-merch-shop .roa-merch-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
	align-items: start;
	gap: clamp(24px, 3vw, 40px) !important;
	row-gap: clamp(24px, 3vw, 40px) !important;
}

.roa-merch-shop .roa-merch-cart,
.roa-merch-shop .roa-merch-checkout,
.roa-merch-shop .roa-merch-checkout-form {
	display: grid;
	gap: clamp(16px, 2vw, 24px) !important;
	align-content: start;
}

.roa-merch-shop [data-roa-cart-items],
.roa-merch-shop .roa-form-grid,
.roa-merch-shop .roa-billing-fields,
.roa-merch-shop .roa-legal {
	display: grid;
	gap: 14px !important;
}

.roa-merch-shop .roa-fieldset {
	margin: 0 !important;
	padding: clamp(16px, 2vw, 24px) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 18px !important;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028)) !important;
}

.roa-merch-shop .roa-cart-item {
	margin: 0 !important;
	padding: 14px !important;
	border-radius: 16px !important;
}

.roa-merch-shop .roa-cart-item + .roa-cart-item {
	margin-top: 12px !important;
}

.roa-merch-shop .roa-cart-controls {
	gap: 10px !important;
}

.roa-merch-shop select:not([data-roa-choice-native]),
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]),
.roa-merch-shop .roa-form-grid select:not([data-roa-choice-native]),
.roa-merch-shop .roa-fieldset select:not([data-roa-choice-native]) {
	display: block !important;
	width: 100% !important;
	min-height: 44px !important;
	margin: 7px 0 0 !important;
	padding: 11px 40px 11px 13px !important;
	color: #fff !important;
	color-scheme: dark !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	line-height: 1.2 !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 14px !important;
	background-color: #0b0d14 !important;
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
		linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.92) 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.92) 50%, transparent 50%) !important;
	background-position:
		0 0,
		calc(100% - 18px) 50%,
		calc(100% - 13px) 50% !important;
	background-size:
		100% 100%,
		5px 5px,
		5px 5px !important;
	background-repeat: no-repeat !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 10px 28px rgba(0, 0, 0, 0.24) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.roa-merch-shop select:not([data-roa-choice-native]):hover,
.roa-merch-shop select:not([data-roa-choice-native]):focus {
	border-color: rgba(255, 255, 255, 0.4) !important;
	background-color: #10121b !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 3px rgba(255, 255, 255, 0.06), 0 14px 36px rgba(0, 0, 0, 0.3) !important;
	outline: none !important;
}

.roa-merch-shop select:not([data-roa-choice-native]) option,
.roa-merch-shop select:not([data-roa-choice-native]) optgroup {
	color: #fff !important;
	background: #0b0d14 !important;
	background-color: #0b0d14 !important;
}

.roa-merch-shop select:not([data-roa-choice-native]) option:checked {
	color: #fff !important;
	background: #202436 !important;
}

@media (max-width: 900px) {
	.roa-merch-shop .roa-merch-layout {
		grid-template-columns: 1fr;
	}
}

/* v1.0.152 - integrated theme shop controls */
.roa-merch-shop [hidden],
.roa-product-modal[hidden],
.roa-product-modal [hidden] {
	display: none !important;
}

.roa-merch-shop .roa-product-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 999999 !important;
	display: grid !important;
	place-items: center !important;
	padding: clamp(14px, 2vw, 28px) !important;
}

.roa-product-modal:not([hidden]) {
	position: fixed !important;
	inset: 0 !important;
	z-index: 999999 !important;
	display: grid !important;
	place-items: center !important;
	padding: clamp(14px, 2vw, 28px) !important;
}

.roa-product-modal .roa-product-modal-dialog {
	max-height: min(900px, calc(100vh - 36px)) !important;
	overflow: auto !important;
	scrollbar-color: rgba(255, 255, 255, 0.32) rgba(255, 255, 255, 0.07);
}

.roa-merch-shop .roa-gallery-track,
.roa-product-modal .roa-gallery-track {
	display: flex !important;
	overflow: hidden !important;
	scroll-snap-type: none !important;
	scroll-behavior: auto !important;
	transition: transform 220ms ease !important;
	will-change: transform;
}

.roa-merch-shop .roa-gallery-slide,
.roa-product-modal .roa-gallery-slide {
	flex: 0 0 100% !important;
	min-width: 100% !important;
	scroll-snap-align: none !important;
}

.roa-merch-shop .roa-gallery-dots,
.roa-product-modal .roa-gallery-dots {
	display: none !important;
}

.roa-merch-shop .roa-gallery-btn,
.roa-product-modal .roa-gallery-btn {
	display: grid !important;
	place-items: center !important;
	border-radius: 999px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
		rgba(8, 9, 14, 0.74) !important;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.roa-merch-shop select.roa-native-select-hidden,
.roa-product-modal select.roa-native-select-hidden,
.roa-merch-shop select[data-roa-choice-native],
.roa-product-modal select[data-roa-choice-native] {
	position: absolute !important;
	display: block !important;
	width: 1px !important;
	height: 1px !important;
	min-width: 1px !important;
	min-height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.roa-merch-shop .roa-custom-select,
.roa-product-modal .roa-custom-select {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	margin-top: 8px !important;
}

.roa-merch-shop .roa-custom-select-button,
.roa-product-modal .roa-custom-select-button {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	min-height: 44px !important;
	padding: 11px 42px 11px 14px !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	line-height: 1.2 !important;
	text-align: left !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 14px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
		#0b0d14 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 28px rgba(0, 0, 0, 0.24) !important;
	cursor: pointer !important;
}

.roa-merch-shop .roa-custom-select-button::after,
.roa-product-modal .roa-custom-select-button::after {
	content: "" !important;
	position: absolute !important;
	right: 15px !important;
	top: 50% !important;
	width: 8px !important;
	height: 8px !important;
	border: solid rgba(255, 255, 255, 0.86) !important;
	border-width: 0 2px 2px 0 !important;
	transform: translateY(-65%) rotate(45deg) !important;
	transition: transform 160ms ease !important;
}

.roa-merch-shop .roa-custom-select.is-open .roa-custom-select-button::after,
.roa-product-modal .roa-custom-select.is-open .roa-custom-select-button::after {
	transform: translateY(-35%) rotate(225deg) !important;
}

.roa-merch-shop .roa-custom-select-button:hover,
.roa-merch-shop .roa-custom-select-button:focus-visible,
.roa-product-modal .roa-custom-select-button:hover,
.roa-product-modal .roa-custom-select-button:focus-visible {
	border-color: rgba(255, 255, 255, 0.4) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.044)),
		#10121b !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 0 3px rgba(255, 255, 255, 0.06), 0 14px 36px rgba(0, 0, 0, 0.3) !important;
	outline: none !important;
}

.roa-merch-shop .roa-custom-select-list,
.roa-product-modal .roa-custom-select-list {
	position: absolute !important;
	z-index: 60 !important;
	left: 0 !important;
	right: 0 !important;
	top: calc(100% + 8px) !important;
	display: grid !important;
	gap: 4px !important;
	max-height: 240px !important;
	padding: 8px !important;
	overflow: auto !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 16px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
		#080a10 !important;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6) !important;
}

.roa-merch-shop .roa-custom-select-list[hidden],
.roa-product-modal .roa-custom-select-list[hidden] {
	display: none !important;
}

.roa-merch-shop .roa-custom-select-option,
.roa-product-modal .roa-custom-select-option {
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	min-height: 34px !important;
	padding: 8px 10px !important;
	color: rgba(255, 255, 255, 0.86) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-align: left !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: transparent !important;
	cursor: pointer !important;
}

.roa-merch-shop .roa-custom-select-option:hover,
.roa-merch-shop .roa-custom-select-option.is-active,
.roa-product-modal .roa-custom-select-option:hover,
.roa-product-modal .roa-custom-select-option.is-active {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.11) !important;
}

.roa-merch-shop .roa-product-options > .roa-product-check-option,
.roa-merch-shop .roa-product-options > .roa-product-option-group,
.roa-product-modal .roa-product-options > .roa-product-check-option,
.roa-product-modal .roa-product-options > .roa-product-option-group {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	min-width: 0 !important;
}

.roa-merch-shop .roa-product-check-option.roa-inline-check,
.roa-merch-shop .roa-checkbox.roa-inline-check,
.roa-product-modal .roa-product-check-option.roa-inline-check,
.roa-product-modal .roa-checkbox.roa-inline-check {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 22px minmax(0, 1fr) !important;
	align-items: center !important;
	column-gap: 12px !important;
	min-height: 44px !important;
	padding: 12px 14px !important;
	border: 1px solid rgba(255, 255, 255, 0.13) !important;
	border-radius: 16px !important;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
		rgba(9, 10, 15, 0.72) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
	cursor: pointer !important;
}

.roa-merch-shop .roa-checkbox.roa-inline-check,
.roa-product-modal .roa-checkbox.roa-inline-check {
	align-items: flex-start !important;
}

.roa-merch-shop .roa-product-check-option.roa-inline-check input[type="checkbox"],
.roa-merch-shop .roa-checkbox.roa-inline-check input[type="checkbox"],
.roa-product-modal .roa-product-check-option.roa-inline-check input[type="checkbox"],
.roa-product-modal .roa-checkbox.roa-inline-check input[type="checkbox"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	min-width: 1px !important;
	min-height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.roa-merch-shop .roa-check-control,
.roa-product-modal .roa-check-control {
	position: relative !important;
	grid-column: 1 !important;
	display: block !important;
	width: 22px !important;
	height: 22px !important;
	border: 1px solid rgba(255, 255, 255, 0.24) !important;
	border-radius: 8px !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
		rgba(7, 8, 12, 0.9) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.roa-merch-shop .roa-check-control::after,
.roa-product-modal .roa-check-control::after {
	content: "" !important;
	position: absolute !important;
	width: 11px !important;
	height: 6px !important;
	margin: 6px 0 0 5px !important;
	border-left: 2px solid #fff !important;
	border-bottom: 2px solid #fff !important;
	opacity: 0 !important;
	transform: rotate(-45deg) scale(0.82) !important;
	transition: opacity 150ms ease, transform 150ms ease !important;
}

.roa-merch-shop .roa-inline-check input[type="checkbox"]:checked + .roa-check-control,
.roa-product-modal .roa-inline-check input[type="checkbox"]:checked + .roa-check-control {
	border-color: rgba(255, 255, 255, 0.48) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
		#151823 !important;
}

.roa-merch-shop .roa-inline-check input[type="checkbox"]:checked + .roa-check-control::after,
.roa-product-modal .roa-inline-check input[type="checkbox"]:checked + .roa-check-control::after {
	opacity: 1 !important;
	transform: rotate(-45deg) scale(1) !important;
}

.roa-merch-shop .roa-check-label,
.roa-product-modal .roa-check-label {
	grid-column: 2 !important;
	display: block !important;
	min-width: 0 !important;
	color: rgba(255, 255, 255, 0.84) !important;
	font-size: 13px !important;
	font-weight: 760 !important;
	line-height: 1.35 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: break-word !important;
}

.roa-merch-shop .roa-product-options .roa-check-label,
.roa-product-modal .roa-product-options .roa-check-label {
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
}

.roa-merch-shop .roa-product-dependent-fields,
.roa-product-modal .roa-product-dependent-fields {
	margin-top: 10px !important;
	padding: 14px !important;
	border: 1px solid rgba(255, 255, 255, 0.11) !important;
	border-radius: 16px !important;
	background: rgba(0, 0, 0, 0.18) !important;
}

.roa-merch-shop .roa-billing-fields:not([hidden]) {
	display: grid !important;
	gap: 14px !important;
	padding: 14px !important;
	border: 1px solid rgba(255, 255, 255, 0.11) !important;
	border-radius: 16px !important;
	background: rgba(0, 0, 0, 0.18) !important;
}

.roa-merch-shop .roa-merch-cart-footer {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-items: center !important;
	gap: 14px !important;
	margin-top: 4px !important;
	padding: 16px 18px !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 18px !important;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
		rgba(8, 9, 14, 0.82) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 42px rgba(0, 0, 0, 0.26) !important;
}

.roa-merch-shop .roa-merch-cart-footer span {
	color: rgba(255, 255, 255, 0.62) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.roa-merch-shop .roa-merch-cart-footer strong {
	justify-self: end !important;
	color: #fff !important;
	font-size: clamp(20px, 2.4vw, 28px) !important;
	font-weight: 950 !important;
	line-height: 1 !important;
}

.roa-product-detail-blocks {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 18px !important;
	margin: 18px 0 0 !important;
}

.roa-product-detail-blocks > section {
	min-height: 0 !important;
	padding: clamp(18px, 2.4vw, 26px) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 22px !important;
	background:
		radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
		rgba(8, 9, 14, 0.74) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065), 0 18px 48px rgba(0, 0, 0, 0.22) !important;
}

.roa-product-detail-blocks h4 {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	margin: 0 0 16px !important;
	color: #fff !important;
	font-size: clamp(16px, 1.35vw, 20px) !important;
	font-weight: 950 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
}

.roa-product-detail-blocks h4::before {
	content: "" !important;
	width: 26px !important;
	height: 2px !important;
	border-radius: 999px !important;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12)) !important;
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.18) !important;
}

.roa-product-rich-text {
	display: grid !important;
	gap: 14px !important;
	color: rgba(255, 255, 255, 0.74) !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
}

.roa-product-rich-text p {
	margin: 0 !important;
}

.roa-product-facts {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
	gap: 10px !important;
	margin: 0 !important;
}

.roa-product-facts div {
	padding: 12px 13px !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	background: rgba(255, 255, 255, 0.045) !important;
}

.roa-product-facts dt {
	margin: 0 0 5px !important;
	color: rgba(255, 255, 255, 0.52) !important;
	font-size: 10px !important;
	font-weight: 950 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.roa-product-facts dd {
	margin: 0 !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 850 !important;
	line-height: 1.35 !important;
}

.roa-product-bullet-group {
	padding: 14px !important;
	border-radius: 18px !important;
	background: rgba(255, 255, 255, 0.04) !important;
}

.roa-product-bullet-group h5 {
	margin: 0 0 10px !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 950 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.roa-product-bullet-group ul {
	display: grid !important;
	gap: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.roa-product-bullet-group li {
	position: relative !important;
	padding-left: 18px !important;
	color: rgba(255, 255, 255, 0.76) !important;
}

.roa-product-bullet-group li::before {
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	top: 0.72em !important;
	width: 6px !important;
	height: 6px !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.8) !important;
	box-shadow: 0 0 14px rgba(255, 255, 255, 0.18) !important;
}

.roa-size-table-tabs {
	display: grid !important;
	gap: 14px !important;
	min-width: 0 !important;
}

.roa-size-tab-list {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
}

.roa-size-tab-list button {
	min-height: 34px !important;
	padding: 8px 13px !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.055) !important;
	color: rgba(255, 255, 255, 0.72) !important;
	font-size: 11px !important;
	font-weight: 950 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
}

.roa-size-tab-list button:hover,
.roa-size-tab-list button.is-active {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.34) !important;
	background: rgba(255, 255, 255, 0.12) !important;
}

.roa-size-table-wrap {
	max-width: 100% !important;
	max-height: min(46vh, 440px) !important;
	overflow: auto !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 18px !important;
	background: rgba(0, 0, 0, 0.18) !important;
	scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.06);
}

.roa-size-table {
	width: max-content !important;
	min-width: 100% !important;
	border-collapse: collapse !important;
}

.roa-size-table th,
.roa-size-table td {
	padding: 10px 12px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
	color: rgba(255, 255, 255, 0.76) !important;
	font-size: 12px !important;
	white-space: nowrap !important;
}

.roa-size-table thead th,
.roa-size-table tbody th {
	color: #fff !important;
	font-weight: 950 !important;
	background: rgba(255, 255, 255, 0.055) !important;
}

@media (max-width: 720px) {
	.roa-product-modal:not([hidden]),
	.roa-merch-shop .roa-product-modal {
		padding: 10px !important;
	}

	.roa-product-modal .roa-product-modal-dialog {
		max-height: calc(100vh - 20px) !important;
	}

	.roa-merch-shop .roa-product-options,
	.roa-product-modal .roa-product-options,
	.roa-merch-shop .roa-form-grid {
		grid-template-columns: 1fr !important;
	}
}

.roa-merch-shop .roa-product-modal[hidden],
.roa-product-modal[hidden],
.roa-product-modal [hidden],
.roa-merch-shop [hidden] {
	display: none !important;
}

/* v1.1.15 - product modal image */
.roa-product-single-image {
	position: relative !important;
	min-width: 0 !important;
	min-height: clamp(430px, 64vh, 700px) !important;
	display: flex !important;
	align-items: flex-start !important;
	justify-content: center !important;
	padding: clamp(16px, 2vw, 28px) !important;
	border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
	overflow: hidden !important;
	background:
		radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.12), transparent 42%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
		#07090f !important;
}

.roa-product-single-image > img {
	position: relative !important;
	z-index: 2 !important;
	width: 100% !important;
	max-width: min(100%, 560px) !important;
	height: min(66vh, 680px) !important;
	min-height: clamp(360px, 52vh, 620px) !important;
	display: block !important;
	object-fit: contain !important;
	object-position: top center !important;
	filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.42)) !important;
}

.roa-product-modal .roa-product-main {
	grid-template-columns: minmax(380px, 1.08fr) minmax(340px, 0.92fr) !important;
	align-items: stretch !important;
}

.roa-product-modal .roa-product-gallery,
.roa-product-modal .roa-gallery-track,
.roa-product-modal .roa-gallery-slide,
.roa-product-modal .roa-gallery-btn,
.roa-product-modal .roa-gallery-dots {
	display: none !important;
}

.roa-product-modal .roa-product-body {
	align-self: stretch !important;
	justify-content: center !important;
}

@media (max-width: 900px) {
	.roa-product-modal .roa-product-main {
		grid-template-columns: 1fr !important;
	}

	.roa-product-single-image {
		min-height: 330px !important;
		border-right: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	}

	.roa-product-single-image > img {
		height: min(48vh, 440px) !important;
		min-height: 280px !important;
	}
}

/* v1.1.16 - live ROA teamwear mockups from theme assets */
.roa-product-modal .roa-product-modal-dialog {
	width: min(1280px, calc(100vw - 36px)) !important;
}

.roa-product-modal .roa-product-main {
	grid-template-columns: minmax(520px, 1.1fr) minmax(340px, 0.9fr) !important;
}

.roa-product-preview-stage {
	position: relative;
	z-index: 2;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 1.6vw, 20px);
	align-items: stretch;
}

.roa-product-preview-stage::before {
	content: "";
	position: absolute;
	inset: 7% 9%;
	z-index: 0;
	border-radius: 999px;
	background:
		radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.16), transparent 34%),
		radial-gradient(circle at 74% 70%, rgba(90, 130, 200, 0.16), transparent 40%);
	filter: blur(34px);
	opacity: 0.72;
	pointer-events: none;
}

.roa-product-preview-side {
	position: relative;
	z-index: 1;
	min-height: clamp(390px, 62vh, 680px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 0;
	padding: clamp(8px, 1.2vw, 14px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
		rgba(5, 7, 12, 0.68);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
	overflow: hidden;
}

.roa-product-preview-side > img[data-roa-preview-front],
.roa-product-preview-side > img[data-roa-preview-back] {
	position: relative;
	z-index: 1;
	width: 100%;
	height: min(64vh, 660px);
	max-height: 100%;
	display: block;
	object-fit: contain;
	object-position: top center;
	filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.38));
}

.roa-preview-roa-logo,
.roa-preview-back-logo,
.roa-preview-back-brand,
.roa-preview-back-nick,
.roa-preview-back-realname,
.roa-preview-flag {
	position: absolute;
	z-index: 4;
	color: #fff;
	font-weight: 950;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
	pointer-events: none;
}

.roa-preview-roa-logo {
	min-width: 38px;
}

.roa-preview-roa-logo img,
.roa-preview-back-logo img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.roa-preview-sponsors {
	display: none;
}

.roa-product-preview-stage.has-sponsors .roa-preview-sponsors {
	display: block;
}

.roa-preview-sponsors .roa-jersey-logo-overlay {
	position: absolute;
}

.roa-preview-back-brand {
	display: none;
}

.roa-preview-back-nick {
}

.roa-preview-back-realname {
	letter-spacing: 0.08em;
	opacity: 0.9;
}

.roa-preview-flag {
	min-width: 34px;
	padding: 5px 8px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 10px;
	background: rgba(0, 0, 0, 0.28);
}

.roa-preview-back-logo {
	top: 32%;
	left: 50%;
	width: 43%;
	transform: translateX(-50%);
}

.roa-product-preview-stage.is-back-logo-small .roa-preview-back-logo {
	top: 18%;
	width: 14%;
}

.roa-product-preview-stage.is-type-jersey .roa-preview-jersey-only {
	display: block;
}

.roa-product-preview-stage.is-type-jersey .roa-preview-back-logo {
	display: none;
}

.roa-product-preview-stage.is-type-jogger .roa-preview-roa-logo,
.roa-product-preview-stage.is-type-jogger .roa-preview-back-logo,
.roa-product-preview-stage.is-type-jogger .roa-preview-back-brand,
.roa-product-preview-stage.is-type-jogger .roa-preview-back-nick,
.roa-product-preview-stage.is-type-jogger .roa-preview-back-realname,
.roa-product-preview-stage.is-type-jogger .roa-preview-flag {
	display: none;
}

.roa-product-preview-stage.is-logo-black .roa-preview-roa-logo,
.roa-product-preview-stage.is-logo-black .roa-preview-back-logo,
.roa-product-preview-stage.is-logo-black .roa-preview-back-brand,
.roa-product-preview-stage.is-logo-black .roa-preview-back-nick,
.roa-product-preview-stage.is-logo-black .roa-preview-back-realname,
.roa-product-preview-stage.is-logo-black .roa-preview-flag {
	color: #070707;
	text-shadow: 0 2px 8px rgba(255, 255, 255, 0.28);
}

.roa-product-preview-stage.is-logo-black .roa-preview-roa-logo img,
.roa-product-preview-stage.is-logo-black .roa-preview-back-logo img {
	filter: brightness(0) saturate(1);
}

.roa-product-preview-stage.is-logo-black .roa-jersey-logo-overlay {
	filter: brightness(0) saturate(1) drop-shadow(0 4px 10px rgba(255, 255, 255, 0.2)) !important;
}

.roa-product-modal .roa-product-body {
	align-self: stretch !important;
	justify-content: flex-start !important;
	overflow: visible;
}

.roa-product-modal .roa-product-options {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	align-items: start;
}

.roa-product-modal .roa-product-options > .roa-product-option-group,
.roa-product-modal .roa-product-options > .roa-product-check-option {
	grid-column: 1 / -1;
}

.roa-product-modal .roa-product-options select:not([data-roa-choice-native]),
.roa-product-modal .roa-product-options select:not([data-roa-choice-native]) option,
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]),
.roa-merch-shop .roa-product-options select:not([data-roa-choice-native]) option {
	background-color: #090811 !important;
	color: #fff !important;
}

@media (max-width: 1100px) {
	.roa-product-modal .roa-product-main {
		grid-template-columns: 1fr !important;
	}

	.roa-product-preview-side {
		min-height: clamp(320px, 52vh, 540px);
	}
}

@media (max-width: 720px) {
	.roa-product-preview-stage {
		grid-template-columns: 1fr;
	}

	.roa-product-modal .roa-product-options {
		grid-template-columns: 1fr !important;
	}

	.roa-product-preview-side > img[data-roa-preview-front],
	.roa-product-preview-side > img[data-roa-preview-back] {
		height: min(46vh, 430px);
	}
}

/* v1.1.17 - tighter garment preview and separated jersey/casual layers */
.roa-product-modal .roa-product-modal-dialog {
	width: min(1180px, calc(100vw - 36px)) !important;
}

.roa-product-modal .roa-product-main {
	grid-template-columns: minmax(480px, 0.98fr) minmax(360px, 1.02fr) !important;
}

.roa-product-single-image {
	min-height: auto !important;
	align-items: center !important;
	padding: clamp(14px, 1.8vw, 22px) !important;
}

.roa-product-preview-stage {
	align-items: start !important;
}

.roa-product-preview-side {
	min-height: 0 !important;
	height: clamp(360px, 56vh, 560px) !important;
	align-items: center !important;
	padding: clamp(10px, 1.4vw, 18px) !important;
}

.roa-product-preview-side > img[data-roa-preview-front],
.roa-product-preview-side > img[data-roa-preview-back] {
	height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
}

.roa-product-preview-stage.is-logo-layout-front-only .roa-preview-back-logo,
.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-jersey-only,
.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-back-nick,
.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-back-realname,
.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-flag,
.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-sponsors {
	display: none !important;
}

.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-back-logo {
	top: 36% !important;
	width: 42% !important;
}

.roa-product-preview-stage:not(.is-type-jersey).is-back-logo-small .roa-preview-back-logo {
	top: 24% !important;
	width: 13% !important;
}

@media (max-width: 1100px) {
	.roa-product-modal .roa-product-main {
		grid-template-columns: 1fr !important;
	}

	.roa-product-preview-side {
		height: clamp(320px, 50vh, 500px) !important;
	}
}

@media (max-width: 720px) {
	.roa-product-preview-side {
		height: min(52vh, 430px) !important;
	}
}

/* v1.1.18 - mockup canvas so overlays scale with the garment */
.roa-product-preview-stage {
	grid-template-columns: 1fr !important;
	gap: clamp(16px, 2vw, 24px) !important;
}

.roa-product-preview-side {
	overflow: hidden !important;
	align-items: center !important;
	min-height: clamp(360px, 54vh, 620px) !important;
	scrollbar-width: none;
}

.roa-product-preview-side::-webkit-scrollbar {
	display: none;
}

.roa-product-preview-side::-webkit-scrollbar-thumb {
	display: none;
}

.roa-product-preview-canvas {
	position: relative;
	z-index: 1;
	height: 100%;
	aspect-ratio: 1 / 1;
	display: block;
	flex: 0 0 auto;
	max-width: none;
}

.roa-product-preview-canvas > img[data-roa-preview-front],
.roa-product-preview-canvas > img[data-roa-preview-back] {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	display: block !important;
	object-fit: contain !important;
	object-position: center center !important;
	filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42)) !important;
}

.roa-product-preview-stage.is-type-jersey .roa-product-preview-canvas,
.roa-product-preview-stage.is-type-tshirt .roa-product-preview-canvas,
.roa-product-preview-stage.is-type-hoodie .roa-product-preview-canvas,
.roa-product-preview-stage.is-type-zip-hoodie .roa-product-preview-canvas {
	height: 116%;
	margin-block: -8%;
}

.roa-product-preview-stage.is-type-jogger .roa-product-preview-canvas {
	height: 112%;
	aspect-ratio: 0.72 / 1;
	margin-block: -6%;
}

.roa-product-color-thumbs {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	gap: 6px;
	margin-top: -2px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 18px;
	background:
		radial-gradient(circle at 50% 0%, rgba(255,255,255,.09), transparent 44%),
		rgba(255,255,255,.035);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.roa-product-color-thumb {
	min-width: 0;
	min-height: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 4px 3px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
	cursor: pointer;
	transition:
		transform .18s ease,
		border-color .18s ease,
		box-shadow .18s ease,
		background .18s ease;
}

.roa-product-color-thumb img {
	width: 100%;
	height: 44px;
	object-fit: contain;
	filter: drop-shadow(0 10px 14px rgba(0,0,0,.38));
	pointer-events: none;
}

.roa-product-color-thumb:hover,
.roa-product-color-thumb.is-active {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,.32);
	background:
		radial-gradient(circle at 50% 0%, rgba(255,255,255,.14), transparent 46%),
		rgba(255,255,255,.07);
	box-shadow: 0 16px 34px rgba(0,0,0,.28), 0 0 18px rgba(255,255,255,.08);
}

.roa-color-select-field {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.roa-preview-flag {
	display: none !important;
}

.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-roa-logo {
	top: 36% !important;
	right: 34% !important;
	width: 9% !important;
}

.roa-product-preview-stage:not(.is-type-jersey) .roa-preview-back-logo {
	top: 36% !important;
	width: 35% !important;
}

.roa-product-preview-stage:not(.is-type-jersey).is-back-logo-small .roa-preview-back-logo {
	top: 30% !important;
	width: 10% !important;
}

@media (max-width: 720px) {
	.roa-product-preview-stage.is-type-jersey .roa-product-preview-canvas,
	.roa-product-preview-stage.is-type-tshirt .roa-product-preview-canvas,
	.roa-product-preview-stage.is-type-hoodie .roa-product-preview-canvas,
	.roa-product-preview-stage.is-type-zip-hoodie .roa-product-preview-canvas {
		height: 108%;
		margin-block: -4%;
	}
}

/* v1.1.19 - calibrated print areas */
.roa-product-preview-canvas {
	--pa-front-logo-x: 58%;
	--pa-front-logo-y: 32%;
	--pa-front-logo-w: 7%;
	--pa-front-logo-h: 7%;
	--pa-front-logo-r: 0deg;
	--pa-back-brand-x: 50%;
	--pa-back-brand-y: 31%;
	--pa-back-brand-w: 58%;
	--pa-back-brand-h: 5%;
	--pa-back-brand-r: 0deg;
	--pa-back-nick-x: 50%;
	--pa-back-nick-y: 41%;
	--pa-back-nick-w: 58%;
	--pa-back-nick-h: 8%;
	--pa-back-nick-r: 0deg;
	--pa-back-realname-x: 50%;
	--pa-back-realname-y: 51%;
	--pa-back-realname-w: 62%;
	--pa-back-realname-h: 5%;
	--pa-back-realname-r: 0deg;
	--pa-back-logo-x: 50%;
	--pa-back-logo-y: 36%;
	--pa-back-logo-w: 35%;
	--pa-back-logo-h: 18%;
	--pa-back-logo-r: 0deg;
	--pa-sponsor-left-shoulder-x: 30%;
	--pa-sponsor-left-shoulder-y: 26%;
	--pa-sponsor-left-shoulder-w: 10%;
	--pa-sponsor-left-shoulder-h: 7%;
	--pa-sponsor-left-shoulder-r: -13deg;
	--pa-sponsor-right-shoulder-x: 70%;
	--pa-sponsor-right-shoulder-y: 26%;
	--pa-sponsor-right-shoulder-w: 10%;
	--pa-sponsor-right-shoulder-h: 7%;
	--pa-sponsor-right-shoulder-r: 13deg;
	--pa-sponsor-center-chest-x: 50%;
	--pa-sponsor-center-chest-y: 52%;
	--pa-sponsor-center-chest-w: 22%;
	--pa-sponsor-center-chest-h: 8%;
	--pa-sponsor-center-chest-r: 0deg;
	--pa-sponsor-left-sleeve-x: 23%;
	--pa-sponsor-left-sleeve-y: 44%;
	--pa-sponsor-left-sleeve-w: 12%;
	--pa-sponsor-left-sleeve-h: 7%;
	--pa-sponsor-left-sleeve-r: -18deg;
	--pa-sponsor-right-sleeve-x: 77%;
	--pa-sponsor-right-sleeve-y: 44%;
	--pa-sponsor-right-sleeve-w: 12%;
	--pa-sponsor-right-sleeve-h: 7%;
	--pa-sponsor-right-sleeve-r: 18deg;
	--pa-sleeve-flag-x: 70%;
	--pa-sleeve-flag-y: 57%;
	--pa-sleeve-flag-w: 12%;
	--pa-sleeve-flag-h: 5%;
	--pa-sleeve-flag-r: 0deg;
}

.roa-product-preview-stage.is-type-jersey .roa-product-preview-canvas {
	--pa-front-logo-x: 60.9%;
	--pa-front-logo-y: 32%;
	--pa-front-logo-w: 7.14%;
	--pa-front-logo-h: 7.35%;
	--pa-back-brand-y: 24.8%;
	--pa-back-nick-y: 28.7%;
	--pa-back-realname-y: 30.3%;
	--pa-sponsor-left-shoulder-x: 36%;
	--pa-sponsor-left-shoulder-y: 24.7%;
	--pa-sponsor-left-shoulder-w: 12%;
	--pa-sponsor-left-shoulder-h: 8.4%;
	--pa-sponsor-right-shoulder-x: 84%;
	--pa-sponsor-right-shoulder-y: 24.7%;
	--pa-sponsor-right-shoulder-w: 12%;
	--pa-sponsor-right-shoulder-h: 8.4%;
	--pa-sponsor-center-chest-x: 60%;
	--pa-sponsor-center-chest-y: 49.4%;
	--pa-sponsor-center-chest-w: 26.4%;
	--pa-sponsor-center-chest-h: 9.6%;
	--pa-sponsor-left-sleeve-x: 27.6%;
	--pa-sponsor-left-sleeve-y: 41.8%;
	--pa-sponsor-left-sleeve-w: 14.4%;
	--pa-sponsor-left-sleeve-h: 8.4%;
	--pa-sponsor-right-sleeve-x: 92.4%;
	--pa-sponsor-right-sleeve-y: 41.8%;
	--pa-sponsor-right-sleeve-w: 14.4%;
	--pa-sponsor-right-sleeve-h: 8.4%;
}

.roa-print-area {
	position: absolute !important;
	z-index: 5;
	left: var(--pa-x) !important;
	top: var(--pa-y) !important;
	right: auto !important;
	bottom: auto !important;
	width: var(--pa-w) !important;
	height: var(--pa-h) !important;
	min-width: 0 !important;
	transform: translate(-50%, -50%) rotate(var(--pa-r, 0deg)) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	box-sizing: border-box;
}

.roa-print-area img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.is-print-area-front-logo {
	--pa-x: var(--pa-front-logo-x);
	--pa-y: var(--pa-front-logo-y);
	--pa-w: var(--pa-front-logo-w);
	--pa-h: var(--pa-front-logo-h);
	--pa-r: var(--pa-front-logo-r);
}

.is-print-area-back-brand {
	--pa-x: var(--pa-back-brand-x);
	--pa-y: var(--pa-back-brand-y);
	--pa-w: var(--pa-back-brand-w);
	--pa-h: var(--pa-back-brand-h);
	--pa-r: var(--pa-back-brand-r);
	font-size: clamp(10px, 1.45vh, 17px) !important;
}

.is-print-area-back-nick {
	--pa-x: var(--pa-back-nick-x);
	--pa-y: var(--pa-back-nick-y);
	--pa-w: var(--pa-back-nick-w);
	--pa-h: var(--pa-back-nick-h);
	--pa-r: var(--pa-back-nick-r);
	font-size: clamp(16px, 2.9vh, 31px) !important;
}

.is-print-area-back-realname {
	--pa-x: var(--pa-back-realname-x);
	--pa-y: var(--pa-back-realname-y);
	--pa-w: var(--pa-back-realname-w);
	--pa-h: var(--pa-back-realname-h);
	--pa-r: var(--pa-back-realname-r);
	font-size: clamp(9px, 1.45vh, 15px) !important;
}

.is-print-area-back-logo {
	--pa-x: var(--pa-back-logo-x);
	--pa-y: var(--pa-back-logo-y);
	--pa-w: var(--pa-back-logo-w);
	--pa-h: var(--pa-back-logo-h);
	--pa-r: var(--pa-back-logo-r);
}

.is-print-area-sponsor-left-shoulder {
	--pa-x: var(--pa-sponsor-left-shoulder-x);
	--pa-y: var(--pa-sponsor-left-shoulder-y);
	--pa-w: var(--pa-sponsor-left-shoulder-w);
	--pa-h: var(--pa-sponsor-left-shoulder-h);
	--pa-r: var(--pa-sponsor-left-shoulder-r);
}

.is-print-area-sponsor-right-shoulder {
	--pa-x: var(--pa-sponsor-right-shoulder-x);
	--pa-y: var(--pa-sponsor-right-shoulder-y);
	--pa-w: var(--pa-sponsor-right-shoulder-w);
	--pa-h: var(--pa-sponsor-right-shoulder-h);
	--pa-r: var(--pa-sponsor-right-shoulder-r);
}

.is-print-area-sponsor-center-chest {
	--pa-x: var(--pa-sponsor-center-chest-x);
	--pa-y: var(--pa-sponsor-center-chest-y);
	--pa-w: var(--pa-sponsor-center-chest-w);
	--pa-h: var(--pa-sponsor-center-chest-h);
	--pa-r: var(--pa-sponsor-center-chest-r);
}

.is-print-area-sponsor-left-sleeve {
	--pa-x: var(--pa-sponsor-left-sleeve-x);
	--pa-y: var(--pa-sponsor-left-sleeve-y);
	--pa-w: var(--pa-sponsor-left-sleeve-w);
	--pa-h: var(--pa-sponsor-left-sleeve-h);
	--pa-r: var(--pa-sponsor-left-sleeve-r);
}

.is-print-area-sponsor-right-sleeve {
	--pa-x: var(--pa-sponsor-right-sleeve-x);
	--pa-y: var(--pa-sponsor-right-sleeve-y);
	--pa-w: var(--pa-sponsor-right-sleeve-w);
	--pa-h: var(--pa-sponsor-right-sleeve-h);
	--pa-r: var(--pa-sponsor-right-sleeve-r);
}

.is-print-area-sleeve-flag {
	--pa-x: var(--pa-sleeve-flag-x);
	--pa-y: var(--pa-sleeve-flag-y);
	--pa-w: var(--pa-sleeve-flag-w);
	--pa-h: var(--pa-sleeve-flag-h);
	--pa-r: var(--pa-sleeve-flag-r);
}

.roa-preview-sponsors .roa-print-area {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* v1.1.20 - product card mockup preview */
.roa-product-card-preview {
	width: 100% !important;
	height: 100% !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	place-items: center !important;
	gap: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.roa-product-card-preview::before {
	display: none !important;
}

.roa-product-card-preview .roa-product-preview-side {
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.roa-product-card-preview .roa-product-preview-canvas {
	width: 100% !important;
	height: 100% !important;
	aspect-ratio: 1 / 1 !important;
	margin: 0 auto !important;
}

.roa-product-card-media .roa-product-card-preview .roa-product-preview-canvas > img:first-child {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: contain !important;
	object-position: center !important;
	filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.38)) !important;
}

.roa-product-card-media .roa-product-card-preview .roa-print-area img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	filter: none !important;
}

.roa-product-card-preview .roa-preview-sponsors {
	display: contents;
}

/* v1.1.21 - saved print font sizes and taller card mockups */
.is-print-area-back-brand {
	font-size: var(--pa-back-brand-fs, clamp(10px, 1.45vh, 17px)) !important;
}

.is-print-area-back-nick {
	font-size: var(--pa-back-nick-fs, clamp(16px, 2.9vh, 31px)) !important;
}

.is-print-area-back-realname {
	font-size: var(--pa-back-realname-fs, clamp(9px, 1.45vh, 15px)) !important;
}

.roa-product-overview-card {
	grid-template-rows: minmax(0, 1fr) auto !important;
	min-height: 0 !important;
	max-height: calc(100svh - 24px) !important;
}

.roa-product-card-media {
	min-height: 0 !important;
	height: min(48svh, 300px) !important;
	padding: 0 !important;
}

.roa-product-card-preview {
	height: 100% !important;
}

/* v1.1.22 - print area position lock */
.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area {
	position: absolute !important;
	left: var(--pa-x) !important;
	top: var(--pa-y) !important;
	right: auto !important;
	bottom: auto !important;
	width: var(--pa-w) !important;
	height: var(--pa-h) !important;
	min-width: 0 !important;
	max-width: none !important;
	transform: translate(-50%, -50%) rotate(var(--pa-r, 0deg)) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-front-logo {
	--pa-x: var(--pa-front-logo-x) !important;
	--pa-y: var(--pa-front-logo-y) !important;
	--pa-w: var(--pa-front-logo-w) !important;
	--pa-h: var(--pa-front-logo-h) !important;
	--pa-r: var(--pa-front-logo-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-back-brand {
	--pa-x: var(--pa-back-brand-x) !important;
	--pa-y: var(--pa-back-brand-y) !important;
	--pa-w: var(--pa-back-brand-w) !important;
	--pa-h: var(--pa-back-brand-h) !important;
	--pa-r: var(--pa-back-brand-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-back-nick {
	--pa-x: var(--pa-back-nick-x) !important;
	--pa-y: var(--pa-back-nick-y) !important;
	--pa-w: var(--pa-back-nick-w) !important;
	--pa-h: var(--pa-back-nick-h) !important;
	--pa-r: var(--pa-back-nick-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-back-realname {
	--pa-x: var(--pa-back-realname-x) !important;
	--pa-y: var(--pa-back-realname-y) !important;
	--pa-w: var(--pa-back-realname-w) !important;
	--pa-h: var(--pa-back-realname-h) !important;
	--pa-r: var(--pa-back-realname-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-sponsor-left-shoulder {
	--pa-x: var(--pa-sponsor-left-shoulder-x) !important;
	--pa-y: var(--pa-sponsor-left-shoulder-y) !important;
	--pa-w: var(--pa-sponsor-left-shoulder-w) !important;
	--pa-h: var(--pa-sponsor-left-shoulder-h) !important;
	--pa-r: var(--pa-sponsor-left-shoulder-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-sponsor-right-shoulder {
	--pa-x: var(--pa-sponsor-right-shoulder-x) !important;
	--pa-y: var(--pa-sponsor-right-shoulder-y) !important;
	--pa-w: var(--pa-sponsor-right-shoulder-w) !important;
	--pa-h: var(--pa-sponsor-right-shoulder-h) !important;
	--pa-r: var(--pa-sponsor-right-shoulder-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-sponsor-center-chest {
	--pa-x: var(--pa-sponsor-center-chest-x) !important;
	--pa-y: var(--pa-sponsor-center-chest-y) !important;
	--pa-w: var(--pa-sponsor-center-chest-w) !important;
	--pa-h: var(--pa-sponsor-center-chest-h) !important;
	--pa-r: var(--pa-sponsor-center-chest-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-sponsor-left-sleeve {
	--pa-x: var(--pa-sponsor-left-sleeve-x) !important;
	--pa-y: var(--pa-sponsor-left-sleeve-y) !important;
	--pa-w: var(--pa-sponsor-left-sleeve-w) !important;
	--pa-h: var(--pa-sponsor-left-sleeve-h) !important;
	--pa-r: var(--pa-sponsor-left-sleeve-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-sponsor-right-sleeve {
	--pa-x: var(--pa-sponsor-right-sleeve-x) !important;
	--pa-y: var(--pa-sponsor-right-sleeve-y) !important;
	--pa-w: var(--pa-sponsor-right-sleeve-w) !important;
	--pa-h: var(--pa-sponsor-right-sleeve-h) !important;
	--pa-r: var(--pa-sponsor-right-sleeve-r) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area.is-print-area-sleeve-flag {
	--pa-x: var(--pa-sleeve-flag-x) !important;
	--pa-y: var(--pa-sleeve-flag-y) !important;
	--pa-w: var(--pa-sleeve-flag-w) !important;
	--pa-h: var(--pa-sleeve-flag-h) !important;
	--pa-r: var(--pa-sleeve-flag-r) !important;
}

/* v1.1.23 - element-level print area values beat legacy jersey positions */
.roa-product-preview-stage .roa-product-preview-canvas .roa-print-area[style*="--pa-x"] {
	left: var(--pa-x) !important;
	top: var(--pa-y) !important;
	right: auto !important;
	bottom: auto !important;
	width: var(--pa-w) !important;
	height: var(--pa-h) !important;
	transform: translate(-50%, -50%) rotate(var(--pa-r, 0deg)) !important;
}

/* Product-specific print areas override legacy fixed merch logo positions. */
.roa-product-preview-stage:not(.is-type-jersey) .roa-product-preview-canvas .roa-print-area.is-print-area-front-logo,
.roa-product-preview-stage:not(.is-type-jersey) .roa-product-preview-canvas .roa-print-area.is-print-area-back-logo {
	left: var(--pa-x) !important;
	top: var(--pa-y) !important;
	right: auto !important;
	bottom: auto !important;
	width: var(--pa-w) !important;
	height: var(--pa-h) !important;
	transform: translate(-50%, -50%) rotate(var(--pa-r, 0deg)) !important;
}

/* v1.1.24 - variant layer runtime from product editor */
.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer {
	position: absolute !important;
	z-index: 8;
	left: var(--layer-x) !important;
	top: var(--layer-y) !important;
	width: var(--layer-w) !important;
	height: var(--layer-h) !important;
	transform: translate(-50%, -50%) rotate(var(--layer-r, 0deg)) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: var(--layer-fs, clamp(10px, 1.6vh, 18px));
	font-weight: 950;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	pointer-events: none;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	filter: none !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-number {
	font-size: var(--layer-fs, clamp(42px, 8vh, 118px)) !important;
	font-weight: 950 !important;
	letter-spacing: -0.06em !important;
	font-family: "Bebas Neue", Montserrat, Arial, sans-serif !important;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.68) !important;
}

.roa-product-preview-stage.is-logo-black .roa-product-preview-canvas .roa-variant-runtime-layer.is-print-color-enabled {
	color: #070707 !important;
	text-shadow: 0 2px 8px rgba(255, 255, 255, 0.28) !important;
}

.roa-product-preview-stage.is-logo-black .roa-product-preview-canvas .roa-variant-runtime-layer.is-print-color-enabled img {
	filter: brightness(0) saturate(1) !important;
}

.roa-product-preview-stage.is-logo-white .roa-product-preview-canvas .roa-variant-runtime-layer.is-print-color-enabled {
	color: #ffffff !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65) !important;
}

.roa-product-preview-stage.is-logo-white .roa-product-preview-canvas .roa-variant-runtime-layer.is-print-color-enabled img,
.roa-product-preview-stage.is-logo-white .roa-jersey-logo-overlay {
	filter: brightness(0) invert(1) !important;
}

/* v1.1.25 - compact shop modal layout */
.roa-product-modal .roa-product-body {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}

.roa-product-modal .roa-product-body .roa-product-price-line {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px 12px;
	order: 5;
}

.roa-product-modal .roa-product-body .roa-product-price-line .roa-product-price {
	margin: 0 !important;
}

.roa-product-modal .roa-product-body .roa-product-price-line .roa-product-tax-note {
	margin: 0 !important;
	font-size: 12px;
	line-height: 1.25;
	opacity: 0.74;
}

.roa-product-modal .roa-product-body .roa-product-disclaimer {
	order: 6;
	margin: -2px 0 4px !important;
	font-size: 12px;
	line-height: 1.35;
	opacity: 0.72;
}

.roa-product-modal .roa-product-body .roa-product-options {
	order: 20;
	gap: 8px !important;
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	align-items: start !important;
}

.roa-product-modal .roa-product-body .roa-product-short-description {
	order: 35;
	margin: 4px 0 0 !important;
	font-size: 13px;
	line-height: 1.45;
	opacity: 0.78;
}

.roa-product-modal .roa-product-body .roa-add-to-cart {
	order: 40;
}

.roa-product-modal .roa-choice-buttons,
.roa-product-modal .roa-product-color-thumbs {
	gap: 6px !important;
	margin-top: 5px !important;
	align-items: center !important;
	align-content: flex-start !important;
}

.roa-product-modal .roa-product-choice-field,
.roa-product-modal .roa-product-options > label,
.roa-product-modal .roa-product-option-group,
.roa-product-modal .roa-product-check-option {
	margin: 0 !important;
	min-width: 0 !important;
}

.roa-product-modal .roa-product-choice-label {
	margin-bottom: 5px !important;
	font-size: 11px !important;
	line-height: 1.15 !important;
}

.roa-product-modal .roa-choice-button {
	min-height: 34px !important;
	padding: 7px 10px !important;
	font-size: 11px !important;
	line-height: 1.1 !important;
}

.roa-product-modal .roa-product-color-thumb {
	width: 38px !important;
	height: 38px !important;
	min-width: 38px !important;
}

.roa-product-modal .roa-choice-button.roa-choice-more,
.roa-product-modal .roa-product-color-thumb.roa-choice-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	border-style: dashed !important;
	font-weight: 950;
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 720px) {
	.roa-product-modal .roa-product-body .roa-product-options {
		grid-template-columns: 1fr !important;
	}
}

.roa-print-color-choice::before {
	content: "";
	display: inline-block;
	width: 0.85em;
	height: 0.85em;
	margin-right: 0.45em;
	border-radius: 999px;
	background: var(--print-color, #fff);
	box-shadow: 0 0 0 1px rgba(255,255,255,.38), 0 0 0 3px rgba(0,0,0,.18);
	vertical-align: -0.08em;
}

.roa-product-modal .roa-product-check-option.roa-inline-check.is-checked,
.roa-merch-shop .roa-product-check-option.roa-inline-check.is-checked,
.roa-product-modal .roa-product-check-option.roa-inline-check:has(input[type="checkbox"]:checked),
.roa-merch-shop .roa-product-check-option.roa-inline-check:has(input[type="checkbox"]:checked) {
	border-color: rgba(225, 29, 47, 0.78) !important;
	background:
		linear-gradient(135deg, rgba(225, 29, 47, 0.28), rgba(255, 255, 255, 0.08)) !important;
	box-shadow: 0 0 0 2px rgba(225, 29, 47, 0.18), 0 14px 28px rgba(0, 0, 0, 0.24) !important;
}

/* v1.3.4 - flags keep original artwork colors */
.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag,
.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-print-color-enabled {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: inherit !important;
	text-shadow: none !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag img,
.roa-product-preview-stage.is-logo-black .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag img,
.roa-product-preview-stage.is-logo-white .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag img,
.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-print-color-enabled img {
	filter: none !important;
	mix-blend-mode: normal !important;
	opacity: 1 !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-clip-left,
.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-clip-right {
	overflow: hidden !important;
}

/* v1.3.5 - sleeve flag half clipping must override generic runtime image rules */
.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-clip-left img,
.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-clip-right img {
	width: 200% !important;
	max-width: none !important;
	height: 100% !important;
	object-fit: cover !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-clip-left img {
	transform: translateX(0) !important;
}

.roa-product-preview-stage .roa-product-preview-canvas .roa-variant-runtime-layer.is-type-flag.is-clip-right img {
	transform: translateX(-50%) !important;
}

/* v1.3.6 - selected option price hints */
.roa-product-price-extra {
	margin: -6px 0 0 !important;
	color: var(--roa-accent, #dd3333) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
	letter-spacing: .04em !important;
}
/* v1.3.7 - clearer merch choices and price deltas */
.roa-merch-shop .roa-choice-button.is-active,
.roa-product-modal .roa-choice-button.is-active,
.roa-merch-shop .roa-product-color-thumb.is-active,
.roa-product-modal .roa-product-color-thumb.is-active {
	border-color: var(--roa-accent, #dd3333) !important;
	box-shadow: 0 0 0 2px rgba(221,51,51,.44), 0 10px 24px rgba(221,51,51,.20) !important;
	background: linear-gradient(180deg, rgba(221,51,51,.22), rgba(255,255,255,.045)) !important;
	color: #fff !important;
}

.roa-merch-shop .roa-choice-button.is-active::after,
.roa-product-modal .roa-choice-button.is-active::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-radius: 999px;
	background: var(--roa-accent, #dd3333);
	box-shadow: 0 0 12px rgba(221,51,51,.85);
	vertical-align: middle;
}

.roa-product-disclaimer {
	color: rgba(255,255,255,.72) !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
}

/* v1.4.3 - checkout discount codes */
.roa-merch-discount-fieldset {
	border-color: rgba(225, 29, 47, 0.22) !important;
	background: linear-gradient(135deg, rgba(225, 29, 47, 0.09), rgba(255, 255, 255, 0.035)) !important;
}

.roa-merch-discount-box {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto;
	gap: 10px;
	align-items: end;
}

.roa-merch-discount-box label {
	margin: 0 !important;
}

.roa-discount-apply {
	min-height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	padding: 0 18px;
}

.roa-discount-message {
	grid-column: 1 / -1;
	margin: -2px 0 0 !important;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 850;
}

.roa-discount-message.is-success {
	color: #8dffb0;
}

.roa-discount-message.is-error {
	color: #ff6b78;
}

.roa-merch-account-discount {
	margin-top: 10px;
	padding: 10px 12px;
	border: 1px solid rgba(53, 208, 127, .32);
	border-radius: 8px;
	background: rgba(53, 208, 127, .10);
	color: rgba(247, 251, 255, .82);
	font-weight: 800;
}

@media (max-width: 680px) {
	.roa-merch-discount-box {
		grid-template-columns: 1fr;
	}
}
