/*
 * QA visual fixes for shop, compare, Redux Ultra, and PDP routes.
 * Loaded after the main component styles.
 */

/* Shop hero proof points: Figma inline checks with separators, not badge pills. */
body.redux-route-shop .shop-hero {
	padding: clamp(104px, 10vw, 156px) var(--gutter-mobile) clamp(92px, 9vw, 144px);
	background: linear-gradient(135deg, #25282A 0%, #202A36 58%, #233F6E 100%);
}

body.redux-route-shop .shop-hero::before,
body.redux-route-shop .shop-hero::after {
	display: none;
}

body.redux-route-shop .shop-hero__inner {
	max-width: 920px;
}

body.redux-route-shop .shop-hero h1 {
	margin-bottom: 18px;
	font-size: var(--route-hero-title-size);
	font-weight: 800;
	letter-spacing: 0;
	line-height: var(--hero-title-leading);
	text-transform: uppercase;
}

body.redux-route-shop .shop-hero p {
	max-width: 735px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(16px, 1.25vw, 18px);
	line-height: 1.6;
}

.shop-hero__badges,
.shop-hero__proof {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin: 0 auto 24px;
	color: rgba(255, 255, 255, .9);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.shop-hero__proof span,
.shop-hero__badges .badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	box-shadow: none;
}

.shop-hero__proof span::before {
	content: "\2713";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--rdx-blue-500);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.shop-hero__proof span:not(:last-child)::after,
.shop-hero__badges .badge:not(:last-child)::after {
	content: "";
	width: 1px;
	height: 14px;
	margin: 0 12px;
	background: rgba(255, 255, 255, .34);
}

.shop-hero__badges .badge .check {
	display: none;
}

body.redux-route-compare-products .redux-dynamic-compare-hero .eyebrow-chip {
	margin-bottom: 16px;
}

body.redux-route-compare-products .redux-dynamic-compare-hero h1 {
	text-transform: uppercase;
}

body.redux-route-compare-products .redux-dynamic-compare-hero p {
	margin-top: 14px;
}

body.redux-route-compare-products .redux-dynamic-compare-cta .container {
	text-align: center;
}

body.redux-route-compare-products .redux-compare-cta__orb {
	right: -200px;
	top: -120px;
}

body.redux-route-compare-products .redux-compare-cta__copy {
	max-width: 540px;
	margin: 0 auto 28px;
	color: var(--on-dark-3);
}

body.redux-route-compare-products .redux-compare-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

@media (max-width: 560px) {
	.shop-hero__proof,
	.shop-hero__badges {
		row-gap: 6px;
	}

	.shop-hero__proof span,
	.shop-hero__badges .badge {
		flex-basis: 100%;
		justify-content: center;
	}

	.shop-hero__proof span:not(:last-child)::after,
	.shop-hero__badges .badge:not(:last-child)::after {
		display: none;
	}
}

/* HSA/FSA pill inside the shop hero. */
.shop-hsa-pill {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: min(100%, 560px);
	min-height: 58px;
	padding: 16px 30px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
	color: var(--text-strong);
	cursor: pointer;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}

.shop-hsa-pill strong {
	color: var(--text-strong);
	font-weight: 800;
}

.shop-hsa-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--rdx-success);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
}

.shop-hsa-pill:hover {
	color: var(--rdx-blue-600);
	box-shadow: 0 18px 42px rgba(35, 63, 110, .22);
}

.redux-modal-open {
	overflow: hidden;
}

.shop-hsa-modal {
	position: fixed;
	inset: 0;
	z-index: 100100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(12, 16, 20, .70);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.shop-hsa-modal.is-open {
	display: flex;
}

.shop-hsa-modal__dialog {
	width: min(520px, 100%);
	max-height: min(90vh, 680px);
	overflow: auto;
	padding: 30px 34px 34px;
	border: 1px solid var(--rdx-ink-100);
	border-radius: var(--r-xl);
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
	color: var(--text-strong);
}

.shop-hsa-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.shop-hsa-modal__brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #111419;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}

.shop-hsa-modal__brand-mark {
	position: relative;
	display: inline-block;
	width: .72em;
	height: .72em;
	border: .08em solid currentColor;
	border-radius: 50%;
}

.shop-hsa-modal__brand-mark::before,
.shop-hsa-modal__brand-mark::after {
	content: "";
	position: absolute;
	top: -.08em;
	width: 100%;
	height: 100%;
	border: .08em solid currentColor;
	border-radius: 50%;
}

.shop-hsa-modal__brand-mark::before {
	left: -.22em;
}

.shop-hsa-modal__brand-mark::after {
	right: -.22em;
}

.shop-hsa-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 1px solid var(--rdx-ink-50);
	border-radius: var(--r-md);
	background: #fff;
	box-shadow: 0 4px 14px rgba(37, 40, 42, .08);
	color: var(--rdx-ink-400);
	cursor: pointer;
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.shop-hsa-modal__close:hover {
	color: var(--text-strong);
	border-color: var(--rdx-ink-100);
}

.shop-hsa-modal h2 {
	margin: 0 0 6px;
	color: var(--text-strong);
	font-family: var(--font-sans);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.1;
	text-transform: uppercase;
}

.shop-hsa-modal__accent {
	margin: 0 0 18px;
	color: var(--title-accent-blue);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.shop-hsa-modal__intro {
	margin: 0 0 14px;
	color: var(--rdx-ink-400);
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.55;
}

.shop-hsa-modal__steps {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 16px;
}

.shop-hsa-modal__step {
	padding: 16px 18px;
	border-radius: var(--r-lg);
	background: var(--rdx-blue-50);
}

.shop-hsa-modal__step:nth-child(2) {
	background: #E3F2FF;
}

.shop-hsa-modal__step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	margin-bottom: 10px;
	padding: 0 13px;
	border-radius: 999px;
	background: var(--title-accent-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.shop-hsa-modal__step:nth-child(2) span {
	background: var(--rdx-sky-500);
}

.shop-hsa-modal__step p {
	margin: 0;
	color: var(--text-strong);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.18;
}

.shop-hsa-modal__confirm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	border: 0;
	border-radius: var(--r-md);
	background: linear-gradient(90deg, var(--title-accent-blue), var(--rdx-sky-500));
	color: #fff;
	cursor: pointer;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	line-height: 1;
	text-transform: uppercase;
}

.shop-hsa-modal__confirm:hover {
	background: linear-gradient(90deg, var(--rdx-blue-500), var(--rdx-sky-500));
}

@media (max-width: 720px) {
	body.redux-route-shop .shop-hero {
		padding: 70px 20px 76px;
	}

	body.redux-route-shop .shop-hero h1 {
		font-size: var(--route-hero-title-size);
	}

	.shop-hsa-pill {
		align-items: flex-start;
		padding: 14px 18px;
		font-size: 14px;
		text-align: left;
	}

	.shop-hsa-modal {
		padding: 12px;
	}

	.shop-hsa-modal__dialog {
		padding: 24px 18px 18px;
		border-radius: var(--r-lg);
	}

	.shop-hsa-modal__head {
		margin-bottom: 18px;
	}

	.shop-hsa-modal__brand {
		font-size: 24px;
	}

	.shop-hsa-modal__close {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

	.shop-hsa-modal h2 {
		font-size: 21px;
	}

	.shop-hsa-modal__accent {
		margin-bottom: 14px;
		font-size: 17px;
	}

	.shop-hsa-modal__intro {
		margin-bottom: 12px;
		font-size: 14px;
	}

	.shop-hsa-modal__steps {
		gap: 9px;
		margin-bottom: 14px;
	}

	.shop-hsa-modal__step {
		padding: 14px;
	}

	.shop-hsa-modal__step span {
		min-height: 26px;
		margin-bottom: 9px;
		padding-inline: 12px;
		font-size: 11px;
	}

	.shop-hsa-modal__step p {
		font-size: 15.5px;
	}

	.shop-hsa-modal__confirm {
		min-height: 44px;
		font-size: 12.5px;
	}
}

/* Shop category filter: minimal underline nav, preserving data-cat buttons. */
.redux-dynamic-product-grid .filter-bar,
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	gap: 4px 22px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 34px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid var(--rdx-ink-100);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.redux-dynamic-product-grid .filter-bar button,
.filter-bar button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 0 11px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	cursor: pointer;
}

.redux-dynamic-product-grid .filter-bar button::after,
.filter-bar button::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: transparent;
}

.redux-dynamic-product-grid .filter-bar button:hover,
.filter-bar button:hover {
	background: transparent;
	color: var(--text-strong);
}

.redux-dynamic-product-grid .filter-bar button.is-active,
.filter-bar button.is-active {
	background: transparent;
	color: var(--rdx-blue-500);
}

.redux-dynamic-product-grid .filter-bar button.is-active::after,
.filter-bar button.is-active::after {
	background: var(--rdx-blue-500);
}

/* Compare page: readable table text, uncropped select, and no horizontal page overflow. */
.compare-wrap {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}

.cmp-v2,
.compare-table {
	width: 100%;
	min-width: 880px;
	table-layout: fixed;
	color: var(--text-default);
}

.cmp-v2 th,
.cmp-v2 td,
.compare-table th,
.compare-table td {
	overflow-wrap: anywhere;
	word-break: normal;
}

.cmp-v2 tbody th {
	font-weight: 800;
}

.dev-select {
	max-width: 1100px;
}

.dev-select select {
	min-width: 0;
	width: 100%;
	height: auto;
	min-height: 46px;
	padding-right: 46px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 760px) {
	.cmp-v2,
	.compare-table {
		font-size: 11px;
	}

	.cmp-v2 thead th,
	.cmp-v2 tbody th,
	.cmp-v2 tbody td,
	.cmp-v2 tfoot td,
	.compare-table thead th,
	.compare-table tbody th,
	.compare-table tbody td,
	.compare-table tfoot td {
		padding-right: 6px;
		padding-left: 6px;
	}
}

.redux-dynamic-pdp-tabs[data-content-source="wordpress-db"] .redux-pdp-tab-panel[hidden] {
	display: none !important;
}

.redux-dynamic-route-cta[data-content-source="wordpress-db"] > .container {
	position: relative;
	z-index: 1;
	text-align: center;
}

.redux-dynamic-route-cta[data-content-source="wordpress-db"] .redux-route-cta__copy {
	max-width: 580px;
	margin-right: auto;
	margin-bottom: 28px;
	margin-left: auto;
	color: var(--on-dark-3);
}

.cta-grad.redux-dynamic-route-cta[data-content-source="wordpress-db"] .redux-route-cta__copy {
	color: var(--on-dark-2);
}

.redux-dynamic-route-cta[data-content-source="wordpress-db"] .redux-route-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.redux-dynamic-route-cta--veri-dry .redux-route-cta__orb--blue {
	right: -200px;
	top: -120px;
}

.redux-dynamic-route-cta--veri-dry .redux-route-cta__orb--ink {
	bottom: -100px;
	left: -160px;
}

.redux-dynamic-route-cta--veri-dry .btn--primary {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Storefront/API shop PDP: match the production detail surface without adding product copy. */
body.redux-route-shop:has(.redux-dynamic-shop-product-detail) main {
	background: #242829 !important;
}

body.redux-route-shop:has(.redux-dynamic-shop-product-detail) .shop-hero {
	display: none;
}

.redux-dynamic-shop-product-detail {
	background: #242829;
	padding: 0 0 clamp(58px, 7vw, 96px);
	color: rgba(255, 255, 255, .76);
}

.redux-dynamic-shop-product-detail > .container {
	max-width: 1120px;
}

.redux-shop-product-detail__backbar {
	display: flex;
	align-items: center;
	min-height: 52px;
	background: transparent;
}

.redux-shop-product-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: rgba(255, 255, 255, .66);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: none;
}

.redux-shop-product-back:hover {
	color: #fff;
}

.redux-shop-product-single {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	padding: 36px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #fff;
}

.redux-shop-product-single__gallery {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.redux-shop-product-single__main-image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1.12;
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
}

.redux-shop-product-single__main-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.redux-shop-product-single__thumbnails {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.redux-shop-product-single__thumb {
	width: 100%;
	height: auto;
	aspect-ratio: 1.14;
	padding: 10px;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #151617;
	transition: border-color var(--t-base), box-shadow var(--t-base);
}

.redux-shop-product-single__thumb:hover,
.redux-shop-product-single__thumb:focus,
.redux-shop-product-single__thumb:focus-visible,
.redux-shop-product-single__thumb.is-active {
	outline: 0;
	border: 1px solid rgba(255, 255, 255, .92) !important;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .92), 0 9px 20px rgba(0, 0, 0, .24) !important;
	transition: none;
}

.redux-shop-product-single__thumb img {
	width: 100%;
	height: 100%;
	background: #fff;
	object-fit: contain;
}

.redux-shop-product-single__info {
	min-width: 0;
	padding-top: 8px;
}

.redux-shop-product-single__info h1 {
	margin: 0 0 2px;
	color: #fff;
	font-size: clamp(29px, 2.15vw, 34px);
	line-height: 1.06;
	text-transform: none;
}

.redux-shop-product-single__subtitle {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, .42);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.redux-shop-product-single__price {
	margin: 0 0 30px;
	color: #4aaef2;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.12;
}

.redux-shop-product-single__price s {
	display: block;
	margin-bottom: 2px;
	color: var(--on-dark-5);
	font-size: 15px;
	font-weight: 600;
}

.redux-shop-product-single__description {
	color: rgba(255, 255, 255, .62);
	font-size: 16px;
	line-height: 1.58;
}

.redux-shop-product-single__description p {
	margin: 0 0 18px;
}

.redux-shop-product-single__description h2,
.redux-shop-product-single__description h3,
.redux-shop-product-single__description h4 {
	margin: 28px 0 14px;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.redux-shop-product-single__description h2:first-child,
.redux-shop-product-single__description h3:first-child,
.redux-shop-product-single__description h4:first-child {
	margin-top: 0;
}

.redux-shop-product-single__description ul,
.redux-shop-product-single__description ol {
	margin: 0 0 22px;
	padding-left: 20px;
}

.redux-shop-product-single__description li {
	margin-bottom: 13px;
	padding-left: 3px;
}

.redux-shop-product-single__description li::marker {
	color: #4aaef2;
}

.redux-shop-product-single__description img.emoji,
.redux-shop-product-single__description img[role="img"] {
	display: inline-block;
	width: 1em;
	max-width: 1em;
	height: 1em;
	margin: 0 .12em;
	vertical-align: -.12em;
}

.redux-shop-product-single__description > div {
	margin: 30px 0 0;
	padding: 24px 26px;
	border: 1px solid rgba(255, 255, 255, .05);
	border-radius: 12px;
	background: #303a46;
	color: rgba(255, 255, 255, .68);
	font-size: 14px;
	line-height: 1.58;
}

.redux-shop-product-single__description > div + div {
	margin-top: 30px;
}

.redux-shop-product-single__description > div h2,
.redux-shop-product-single__description > div h3,
.redux-shop-product-single__description > div h4 {
	margin-top: 0;
}

.redux-shop-product-single__description > div p {
	margin: 0;
}

.redux-shop-product-single__description > div b {
	color: #fff;
}

.redux-shop-product-single__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24px;
	margin-top: 34px;
}

.redux-shop-qty {
	display: block;
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
	font-weight: 800;
}

.redux-shop-qty label {
	display: block;
	margin-bottom: 7px;
}

.redux-shop-qty__control {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.redux-shop-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 8px;
	background: #1a1a1a;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
}

.redux-shop-qty__btn:hover {
	background: #30343a;
}

.redux-shop-qty input {
	width: 58px;
	height: 40px;
	border: 0;
	border-radius: 8px;
	background: #1a1a1a;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	text-align: center;
}

.redux-shop-product-single__cart {
	width: 100%;
	min-width: 0;
	min-height: 52px;
	border-radius: 10px;
	background: #3783e7;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.redux-shop-product-single__cart:hover {
	background: #42a7e9;
	color: #fff;
}

.redux-shop-product-single__sections {
	display: grid;
	gap: 24px;
	margin-top: 30px;
}

.redux-shop-product-section {
	color: rgba(255, 255, 255, .68);
	font-size: 14px;
	line-height: 1.58;
}

.redux-shop-product-section h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	text-transform: none;
}

.redux-shop-product-section p {
	margin: 0 0 14px;
}

.redux-shop-product-section ul,
.redux-shop-product-section ol {
	margin: 0;
	padding-left: 18px;
}

.redux-shop-product-section li {
	margin-bottom: 13px;
	padding-left: 4px;
}

.redux-shop-product-section li::marker {
	color: #4aaef2;
}

.redux-shop-product-section b,
.redux-shop-product-section strong {
	color: rgba(255, 255, 255, .9);
}

.redux-shop-product-section--highlight,
.redux-shop-product-section--callout {
	padding: 24px 26px;
	border: 1px solid rgba(255, 255, 255, .05);
	border-radius: 12px;
	background: #303a46;
}

.redux-shop-product-section--highlight h2,
.redux-shop-product-section--callout h2 {
	display: flex;
	align-items: center;
	gap: 12px;
}

.redux-shop-product-section--highlight h2::before {
	content: "\2713";
	color: #4aaef2;
	font-size: 18px;
	line-height: 1;
}

.redux-shop-product-section--callout h2::before {
	content: "\21C4";
	color: #b8d9f4;
	font-size: 17px;
	line-height: 1;
}

.redux-shop-product-section--list {
	margin-top: 4px;
}

.redux-shop-product-section--chips h2 {
	margin-bottom: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, .78);
}

.redux-shop-product-chiplist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.redux-shop-product-chiplist span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 16px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	background: rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .76);
	font-size: 13px;
	font-weight: 700;
}

.redux-shop-product-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
}

.redux-shop-product-single__tags span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	color: rgba(255, 255, 255, .72);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

@media (min-width: 900px) {
	.redux-shop-product-single {
		grid-template-columns: minmax(0, 540px) minmax(0, 540px);
		align-items: start;
		gap: 44px;
	}
}

@media (max-width: 520px) {
	.redux-dynamic-shop-product-detail {
		padding-bottom: 56px;
	}

	.redux-shop-product-detail__backbar {
		min-height: 48px;
	}

	.redux-shop-product-single {
		padding-top: 24px;
	}

	.redux-shop-product-single__info {
		padding-top: 0;
	}

	.redux-shop-product-single__info h1 {
		line-height: 1.08;
	}

	.redux-shop-product-single__description {
		font-size: 16px;
	}

	.redux-shop-product-single__actions {
		gap: 18px;
	}

	.redux-shop-product-single__thumbnails {
		gap: 8px;
	}

	.redux-shop-product-single__thumb {
		padding: 7px;
	}
}
