.sjwps-products,
.sjwps-products * {
	box-sizing: border-box;
}

.sjwps-products {
	--sjwps-accent: #b1141e;
	--sjwps-accent-strong: #99101a;
	--sjwps-sale-line: #ef233c;
	--sjwps-text: #16181d;
	--sjwps-muted: #8a94a3;
	--sjwps-border: #e2e6ec;
	--sjwps-surface: #ffffff;
	--sjwps-soft: #f6f7f9;
	--sjwps-gap: 16px;
	--sjwps-per-view: 6;
	--sjwps-card-width: 240px;
	--sjwps-arrow-size: 38px;
	--sjwps-side-arrow-offset: 14px;
	--sjwps-side-arrow-top: 50%;
	position: relative;
	width: 100%;
	min-width: 0;
	padding: 12px;
	border: 1px solid #f0c9cc;
	border-radius: 20px;
	background: var(--sjwps-surface);
	color: var(--sjwps-text);
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	isolation: isolate;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, border-radius .25s ease, box-shadow .25s ease;
}

.sjwps-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 54px;
	padding: 12px 18px;
	border-radius: 10px;
	background: var(--sjwps-accent);
	color: #fff;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, border-radius .25s ease, box-shadow .25s ease;
}

.sjwps-heading {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	flex: 1 1 auto;
}

.sjwps-section-title {
	min-width: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	color: inherit;
	font-family: inherit;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-header-actions,
.sjwps-navigation,
.sjwps-navigation-cluster {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.sjwps-view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex: 0 0 auto;
	min-height: 25px;
	margin: 0;
	padding: 3px 8px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 999px;
	background: #fff;
	color: var(--sjwps-accent-strong);
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 3px 10px rgba(52, 5, 9, .12);
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sjwps-view-all:hover,
.sjwps-view-all:focus-visible {
	border-color: #fff;
	background: #fdf1f2;
	color: var(--sjwps-accent-strong);
	box-shadow: 0 5px 14px rgba(52, 5, 9, .18);
	transform: translateY(-1px);
}

.sjwps-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	color: inherit;
	font-size: inherit;
	line-height: 1;
}

.sjwps-icon > i,
.sjwps-icon > svg {
	display: block;
	max-width: 100%;
	max-height: 100%;
	color: inherit;
	font-size: inherit;
	line-height: 1;
}

.sjwps-icon > svg {
	width: 100%;
	height: 100%;
}

.sjwps-view-all-icon {
	width: 13px;
	height: 13px;
	flex-basis: 13px;
	font-size: 13px;
	transition: transform .2s ease;
}

[dir="rtl"] .sjwps-view-all-icon.sjwps-icon--directional,
.rtl .sjwps-view-all-icon.sjwps-icon--directional {
	transform: rotate(180deg);
}

.sjwps-nav-button {
	appearance: none;
	-webkit-appearance: none;
	display: inline-grid;
	place-items: center;
	width: var(--sjwps-arrow-size);
	height: var(--sjwps-arrow-size);
	min-width: var(--sjwps-arrow-size);
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	font: inherit;
	line-height: 1;
	box-shadow: none;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

.sjwps-nav-button:hover,
.sjwps-nav-button:focus-visible {
	border-color: rgba(255, 255, 255, .78);
	background: rgba(255, 255, 255, .24);
	color: #fff;
	transform: translateY(-1px);
}

.sjwps-nav-button:focus-visible,
.sjwps-view-all:focus-visible,
.sjwps-viewport:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.sjwps-nav-button:disabled,
.sjwps-nav-button[aria-disabled="true"] {
	pointer-events: none;
	cursor: not-allowed;
	opacity: .32;
	filter: saturate(.35);
	transform: none;
}

.sjwps-nav-icon {
	width: 18px;
	height: 18px;
	font-size: 18px;
	transition: transform .2s ease;
}

.sjwps-prev .sjwps-nav-icon.sjwps-icon--directional {
	transform: rotate(180deg);
}

[dir="rtl"] .sjwps-prev .sjwps-nav-icon.sjwps-icon--directional,
.rtl .sjwps-prev .sjwps-nav-icon.sjwps-icon--directional {
	transform: none;
}

[dir="rtl"] .sjwps-next .sjwps-nav-icon.sjwps-icon--directional,
.rtl .sjwps-next .sjwps-nav-icon.sjwps-icon--directional {
	transform: rotate(180deg);
}

.sjwps-stage {
	position: relative;
	width: 100%;
	min-width: 0;
}

.sjwps-navigation--sides {
	position: absolute;
	z-index: 8;
	inset: 0;
	display: block;
	pointer-events: none;
}

.sjwps-navigation--sides .sjwps-nav-button {
	position: absolute;
	top: var(--sjwps-side-arrow-top);
	pointer-events: auto;
	transform: translateY(-50%);
}

.sjwps-navigation--sides .sjwps-prev {
	inset-inline-start: var(--sjwps-side-arrow-offset);
}

.sjwps-navigation--sides .sjwps-next {
	inset-inline-end: var(--sjwps-side-arrow-offset);
}

.sjwps-navigation--sides .sjwps-nav-button:hover,
.sjwps-navigation--sides .sjwps-nav-button:focus-visible {
	transform: translateY(calc(-50% - 1px));
}

.sjwps-navigation--sides .sjwps-nav-button:disabled,
.sjwps-navigation--sides .sjwps-nav-button[aria-disabled="true"] {
	transform: translateY(-50%);
}

.sjwps-nav-visibility--smart:not(.is-loop) .sjwps-nav-button.is-smart-hidden {
	display: none !important;
}

.sjwps-viewport {
	position: relative;
	width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding-block: 18px 4px;
	scroll-behavior: smooth;
	scroll-snap-type: inline proximity;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x pan-y;
}

.sjwps-viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.sjwps-track {
	display: flex;
	align-items: stretch;
	gap: var(--sjwps-gap);
	width: max-content;
	min-width: 100%;
}

.sjwps-card {
	position: relative;
	display: flex;
	flex: 0 0 var(--sjwps-card-width);
	flex-direction: column;
	width: var(--sjwps-card-width);
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--sjwps-border);
	border-radius: 16px;
	background: var(--sjwps-surface);
	color: var(--sjwps-text);
	scroll-snap-align: start;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, border-radius .25s ease, box-shadow .25s ease, transform .25s ease;
}

.sjwps-card:hover {
	transform: translateY(-3px);
}

.sjwps-card-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 4px;
	max-width: calc(100% - 24px);
	min-height: 24px;
	margin: 10px 12px 0;
	padding: 2px 6px;
	border-radius: 5px;
	background: transparent;
	color: #00b957;
	font-family: inherit;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-card-badge-icon {
	width: 18px;
	height: 18px;
	flex-basis: 18px;
	font-size: 18px;
}

.sjwps-card-badge-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sjwps-promo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 42px;
	margin: 8px 10px 0;
	padding: 5px 0 9px;
	font-family: inherit;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-promo.is-placeholder {
	visibility: hidden;
	pointer-events: none;
}

.sjwps-promo--line::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--sjwps-sale-line);
	box-shadow: 0 0 10px color-mix(in srgb, var(--sjwps-sale-line) 74%, transparent);
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {
	.sjwps-promo--line::after {
		box-shadow: 0 0 10px rgba(239, 35, 60, .48);
	}
}

.sjwps-campaign {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-width: 0;
	color: var(--sjwps-sale-line);
}

.sjwps-campaign-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sjwps-promo-icon {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.sjwps-countdown {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	min-height: 26px;
	padding: 4px 7px;
	border-radius: 5px;
	background: #2d3036;
	color: #fff;
	font-family: inherit;
	font-size: 11px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	direction: ltr;
	unicode-bidi: isolate;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-countdown.is-expired {
	opacity: .65;
}

.sjwps-promo--split {
	padding: 6px 0;
}

.sjwps-promo--split .sjwps-campaign {
	min-height: 28px;
	padding: 4px 8px;
	border: 1px solid rgba(239, 35, 60, .20);
	border-radius: 999px;
	background: rgba(239, 35, 60, .055);
}

.sjwps-promo--split .sjwps-countdown {
	border-radius: 999px;
	background: var(--sjwps-sale-line);
	box-shadow: 0 5px 14px rgba(239, 35, 60, .18);
}

.sjwps-image-link {
	position: relative;
	display: grid;
	place-items: center;
	width: auto;
	min-width: 0;
	margin: 8px 12px 0;
	padding: 8px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	background: #fff;
	text-decoration: none;
	transition: background-color .25s ease, border-color .25s ease, border-radius .25s ease, box-shadow .25s ease, transform .25s ease;
}

.sjwps-product-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0;
	object-fit: contain;
	object-position: center;
	transition: transform .35s cubic-bezier(.2, .75, .2, 1);
}

.sjwps-card:hover .sjwps-product-image {
	transform: scale(1.035);
}

.sjwps-card-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 14px 13px 15px;
	text-align: center;
}

.sjwps-product-title {
	display: -webkit-box;
	height: 3.4em;
	min-height: 3.4em;
	height: 2lh;
	min-height: 2lh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	color: var(--sjwps-text);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	text-wrap: pretty;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-product-title a {
	color: inherit;
	font: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.sjwps-product-title a:hover,
.sjwps-product-title a:focus-visible {
	color: var(--sjwps-accent);
}

.sjwps-price-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
	min-height: 50px;
	margin-top: 14px;
}

.sjwps-prices {
	order: 1;
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 5px 8px;
	min-width: 0;
	margin-inline-start: auto;
	font-family: inherit;
	line-height: 1.35;
}

.sjwps-price-layout--sale_top .sjwps-prices,
.sjwps-price-layout--regular_top .sjwps-prices {
	align-items: flex-end;
	flex-direction: column;
}

.sjwps-price-layout--inline .sjwps-prices {
	flex-flow: row wrap;
}

.sjwps-current-price,
.sjwps-regular-price {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-family: inherit;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-current-price {
	color: #15171b;
	font-size: 15px;
	font-weight: 850;
	text-decoration: none;
}

.sjwps-current-price .woocommerce-Price-currencySymbol,
.sjwps-current-price .woocommerce-Price-amount {
	color: inherit;
}

.sjwps-regular-price .woocommerce-Price-currencySymbol,
.sjwps-regular-price .woocommerce-Price-amount {
	color: inherit;
}

.sjwps-regular-price {
	color: var(--sjwps-muted);
	font-size: 12px;
	font-weight: 500;
	text-decoration-thickness: 1px;
}

.sjwps-regular-price--only {
	text-decoration: none;
}

.sjwps-price-row.has-badge-only {
	align-items: center;
	justify-content: flex-start;
}

.sjwps-price-suffix {
	display: block;
	width: 100%;
	color: var(--sjwps-muted);
	font-size: 10px;
}

.sjwps-discount-badge {
	order: 0;
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	min-height: 24px;
	padding: 4px 7px;
	border-radius: 5px;
	background: var(--sjwps-sale-line);
	color: #fff;
	font-family: inherit;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	direction: ltr;
	unicode-bidi: isolate;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 34px;
	padding-top: 8px;
	color: var(--sjwps-muted);
	font-size: 12px;
}

.sjwps-loader[hidden] {
	display: none !important;
}

.sjwps-spinner {
	width: 17px;
	height: 17px;
	border: 2px solid currentColor;
	border-inline-end-color: transparent;
	border-radius: 50%;
	animation: sjwps-spin .75s linear infinite;
}

.sjwps-status {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sjwps-editor-empty {
	padding: 18px;
	border: 1px dashed #c8ced8;
	border-radius: 10px;
	background: #f7f8fa;
	color: #5d6572;
	font-family: inherit;
	text-align: center;
}

/* Theme 1: campaign / reference image. */
.sjwps-theme--campaign .sjwps-card {
	border: 0;
	border-inline-end: 1px solid #dfe4ea;
	border-radius: 0;
	box-shadow: none;
}

.sjwps-theme--campaign .sjwps-card:hover {
	transform: translateY(-2px);
}

.sjwps-theme--campaign .sjwps-image-link {
	background: #fff;
}

/* Theme 2: premium floating cards. */
.sjwps-theme--floating {
	border-color: transparent;
	background-color: #f4f6f8;
	box-shadow: 0 20px 55px rgba(25, 31, 43, .08);
}

.sjwps-theme--floating .sjwps-header {
	background: transparent;
	color: var(--sjwps-text);
}

.sjwps-theme--floating .sjwps-section-title {
	position: relative;
	padding-inline-start: 14px;
}

.sjwps-theme--floating .sjwps-section-title::before {
	content: "";
	position: absolute;
	inset-block: .22em;
	inset-inline-start: 0;
	width: 4px;
	border-radius: 999px;
	background: var(--sjwps-accent);
}

.sjwps-theme--floating .sjwps-nav-button {
	border-color: #e1e5eb;
	background: #fff;
	color: var(--sjwps-text);
	box-shadow: 0 7px 18px rgba(25, 31, 43, .08);
}

.sjwps-theme--floating .sjwps-nav-button:hover,
.sjwps-theme--floating .sjwps-nav-button:focus-visible {
	border-color: var(--sjwps-accent);
	background: var(--sjwps-accent);
	color: #fff;
}

.sjwps-theme--floating .sjwps-view-all {
	border-color: var(--sjwps-border);
	background: #fff;
	color: var(--sjwps-accent);
	box-shadow: none;
}

.sjwps-theme--floating .sjwps-view-all:hover,
.sjwps-theme--floating .sjwps-view-all:focus-visible {
	border-color: var(--sjwps-accent);
	background: var(--sjwps-accent);
	color: #fff;
}

.sjwps-theme--floating .sjwps-card {
	border-color: rgba(219, 225, 233, .86);
	box-shadow: 0 12px 30px rgba(29, 35, 47, .07);
}

.sjwps-theme--floating .sjwps-card:hover {
	border-color: rgba(177, 20, 30, .25);
	box-shadow: 0 18px 38px rgba(29, 35, 47, .12);
}

.sjwps-theme--floating .sjwps-image-link {
	background-color: #f7f8fa;
}

/* Theme 3: minimal. */
.sjwps-theme--minimal {
	padding-inline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.sjwps-theme--minimal .sjwps-header {
	padding-inline: 0;
	border-block-end: 1px solid var(--sjwps-border);
	border-radius: 0;
	background: transparent;
	color: var(--sjwps-text);
}

.sjwps-theme--minimal .sjwps-view-all {
	border-color: var(--sjwps-border);
	background: var(--sjwps-soft);
	color: var(--sjwps-accent);
	box-shadow: none;
}

.sjwps-theme--minimal .sjwps-view-all:hover,
.sjwps-theme--minimal .sjwps-view-all:focus-visible {
	border-color: var(--sjwps-accent);
	background: var(--sjwps-accent);
	color: #fff;
}

.sjwps-theme--minimal .sjwps-nav-button {
	border-color: var(--sjwps-border);
	background: transparent;
	color: var(--sjwps-text);
}

.sjwps-theme--minimal .sjwps-nav-button:hover,
.sjwps-theme--minimal .sjwps-nav-button:focus-visible {
	border-color: var(--sjwps-accent);
	background: var(--sjwps-accent);
	color: #fff;
}

.sjwps-theme--minimal .sjwps-card {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.sjwps-theme--minimal .sjwps-image-link {
	border: 1px solid var(--sjwps-border);
	background: #fff;
}

/* Theme 4: ExoGame-inspired clean storefront cards. */
.sjwps-theme--exogame {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.sjwps-theme--exogame .sjwps-header {
	min-height: 44px;
	padding: 0 0 8px;
	border-radius: 0;
	background: transparent;
	color: #202329;
}

.sjwps-theme--exogame .sjwps-section-title {
	font-size: 16px;
	font-weight: 750;
}

.sjwps-theme--exogame .sjwps-view-all {
	min-height: 26px;
	border-color: #d9dde2;
	border-radius: 5px;
	background: #f6f7f8;
	color: #23272d;
	box-shadow: none;
}

.sjwps-theme--exogame .sjwps-view-all:hover,
.sjwps-theme--exogame .sjwps-view-all:focus-visible {
	border-color: #bbc1c8;
	background: #eceff2;
	color: #111418;
	box-shadow: none;
}

.sjwps-theme--exogame .sjwps-viewport {
	padding-block: 8px 2px;
}

.sjwps-theme--exogame .sjwps-card {
	border: 1px solid #d9dce0;
	border-radius: 6px;
	background: #fff;
	box-shadow: none;
}

.sjwps-theme--exogame .sjwps-card:hover {
	border-color: #bfc4ca;
	box-shadow: 0 7px 18px rgba(22, 27, 34, .055);
	transform: translateY(-2px);
}

.sjwps-theme--exogame .sjwps-card-badge {
	min-height: 24px;
	margin: 10px 13px 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #00b957;
}

.sjwps-theme--exogame .sjwps-promo {
	min-height: 35px;
	margin: 8px 13px 0;
	padding: 2px 0 4px;
	font-size: 11px;
}

.sjwps-theme--exogame .sjwps-promo--line::after {
	display: none;
}

.sjwps-theme--exogame .sjwps-campaign {
	color: #00b957;
}

.sjwps-theme--exogame .sjwps-promo--split .sjwps-campaign {
	padding: 0;
	border: 0;
	background: transparent;
}

.sjwps-theme--exogame .sjwps-countdown {
	min-width: 64px;
	min-height: 23px;
	border: 1px solid #dce1e5;
	border-radius: 4px;
	background: #f5f6f7;
	color: #30343a;
	box-shadow: none;
}

.sjwps-theme--exogame .sjwps-image-link {
	margin: 6px 18px 0;
	padding: 10px;
	border-radius: 0;
	background: #fff;
}

.sjwps-theme--exogame .sjwps-card-content {
	padding: 10px 14px 18px;
}

.sjwps-theme--exogame .sjwps-product-title {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.9;
}

.sjwps-theme--exogame .sjwps-price-row {
	min-height: 40px;
	margin-top: 4px;
	justify-content: center;
}

.sjwps-theme--exogame .sjwps-prices {
	margin-inline: 0;
	align-items: center;
}

.sjwps-theme--exogame .sjwps-current-price {
	font-size: 16px;
	font-weight: 550;
}

.sjwps-theme--exogame .sjwps-regular-price {
	font-size: 11px;
}

.sjwps-theme--exogame .sjwps-nav-button {
	border: 1px solid #cbd0d6;
	border-radius: 5px;
	background: #fff;
	color: #20252b;
	box-shadow: 0 2px 7px rgba(25, 31, 38, .06);
}

.sjwps-theme--exogame .sjwps-nav-button:hover,
.sjwps-theme--exogame .sjwps-nav-button:focus-visible {
	border-color: #9ea5ad;
	background: #f5f6f7;
	color: #111418;
}

.sjwps-theme--exogame .sjwps-nav-button:disabled,
.sjwps-theme--exogame .sjwps-nav-button[aria-disabled="true"] {
	background: #f4f5f6;
	color: #9ba2aa;
}

@keyframes sjwps-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
	.sjwps-products {
		--sjwps-per-view: 3.2;
		--sjwps-gap: 14px;
	}
}

@media (max-width: 767px) {
	.sjwps-products {
		--sjwps-per-view: 2.15;
		--sjwps-gap: 10px;
		padding: 8px;
		border-radius: 14px;
	}

	.sjwps-header {
		min-height: 48px;
		gap: 10px;
		padding: 9px 11px;
		border-radius: 8px;
	}

	.sjwps-heading {
		gap: 6px;
	}

	.sjwps-section-title {
		font-size: 15px;
	}

	.sjwps-view-all {
		min-height: 22px;
		gap: 3px;
		padding: 2px 6px;
		font-size: 10px;
	}

	.sjwps-view-all-icon {
		width: 11px;
		height: 11px;
		flex-basis: 11px;
		font-size: 11px;
	}

	.sjwps-navigation {
		gap: 5px;
	}


	.sjwps-viewport {
		padding-block-start: 12px;
	}

	.sjwps-card-badge {
		min-height: 21px;
		margin: 7px 7px 0;
		padding: 1px 4px;
		font-size: 9px;
	}

	.sjwps-card-badge-icon {
		width: 15px;
		height: 15px;
		flex-basis: 15px;
		font-size: 15px;
	}

	.sjwps-promo {
		min-height: 36px;
		margin-inline: 7px;
		font-size: 10px;
	}

	.sjwps-countdown {
		min-width: 62px;
		min-height: 23px;
		padding: 3px 5px;
		font-size: 9px;
	}

	.sjwps-promo-icon {
		width: 17px;
		height: 17px;
		font-size: 17px;
	}

	.sjwps-image-link {
		margin-inline: 7px;
		padding: 5px;
	}

	.sjwps-card-content {
		padding: 10px 8px 12px;
	}

	.sjwps-product-title {
		font-size: 12px;
	}

	.sjwps-current-price {
		font-size: 12px;
	}

	.sjwps-regular-price {
		font-size: 10px;
	}

	.sjwps-discount-badge {
		min-width: 29px;
		min-height: 21px;
		padding: 3px 5px;
		font-size: 10px;
	}

	.sjwps-price-row {
		gap: 5px;
		min-height: 44px;
		margin-top: 10px;
	}
}

@media (max-width: 767px) {
	.sjwps-theme--exogame {
		padding: 0;
		border-radius: 0;
	}

	.sjwps-theme--exogame .sjwps-header {
		min-height: 40px;
		padding: 0 0 7px;
		border-radius: 0;
	}

	.sjwps-theme--exogame .sjwps-card-badge {
		margin: 7px 9px 0;
		padding: 0;
	}

	.sjwps-theme--exogame .sjwps-image-link {
		margin-inline: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sjwps-products *,
	.sjwps-products *::before,
	.sjwps-products *::after {
		scroll-behavior: auto !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}

/* Theme 5: SeoJan product columns — inspired by the supplied DJI Store structure. */
.sjwps-theme--seojan {
	--sjwps-seojan-radius: 7px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.sjwps-theme--seojan .sjwps-header {
	min-height: 0;
	padding: 0 0 18px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sjwps-text);
	box-shadow: none;
}

.sjwps-theme--seojan .sjwps-heading {
	gap: 12px;
}

.sjwps-theme--seojan .sjwps-section-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	white-space: normal;
}

.sjwps-theme--seojan .sjwps-view-all {
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #2a2d31;
	font-size: 14px;
	font-weight: 600;
	box-shadow: none;
}

.sjwps-theme--seojan .sjwps-view-all:hover,
.sjwps-theme--seojan .sjwps-view-all:focus-visible {
	border: 0;
	background: transparent;
	color: #000;
	box-shadow: none;
	transform: none;
}

.sjwps-theme--seojan .sjwps-stage {
	padding: 6px;
	border-radius: var(--sjwps-seojan-radius);
	background: #f2f2f2;
}

.sjwps-theme--seojan .sjwps-viewport {
	padding-block: 0;
}

.sjwps-theme--seojan .sjwps-track {
	align-items: stretch;
}

.sjwps-theme--seojan .sjwps-card {
	min-height: 472px;
	border: 0;
	border-radius: var(--sjwps-seojan-radius);
	background: #fff;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.sjwps-theme--seojan .sjwps-card:hover,
.sjwps-theme--seojan .sjwps-card:focus-within,
.sjwps-theme--seojan .sjwps-card:active {
	transform: none;
}

/* Campaign ornaments are intentionally suppressed in this clean storefront theme. */
.sjwps-theme--seojan .sjwps-card-badge,
.sjwps-theme--seojan .sjwps-promo {
	display: none;
}

.sjwps-theme--seojan .sjwps-product-media {
	position: relative;
	flex: 0 0 auto;
	height: 315px;
	overflow: hidden;
	border-radius: var(--sjwps-seojan-radius) var(--sjwps-seojan-radius) 0 0;
	background: #f6f6f6;
	transition: background-color .25s ease, border-color .25s ease, border-radius .25s ease, box-shadow .25s ease;
}

.sjwps-theme--seojan .sjwps-image-link {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 20px 20px 8px;
	overflow: hidden;
	aspect-ratio: auto;
	border: 0;
	border-radius: inherit;
	background: transparent;
	box-shadow: none;
	color: inherit;
	text-decoration: none;
}

.sjwps-theme--seojan .sjwps-product-media--gallery .sjwps-image-link {
	padding-bottom: 27px;
}

.sjwps-theme--seojan .sjwps-image-link:focus-visible,
.sjwps-theme--seojan .sjwps-banner-main:focus-visible,
.sjwps-theme--seojan .sjwps-banner-button:focus-visible {
	outline: 2px solid #1f2328;
	outline-offset: -2px;
}

.sjwps-theme--seojan .sjwps-product-image,
.sjwps-theme--seojan .sjwps-gallery-main {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0;
	aspect-ratio: auto;
	object-fit: contain;
	object-position: center;
	transform: none;
	transition: opacity .18s ease, transform .22s ease;
}

.sjwps-theme--seojan .sjwps-card:hover .sjwps-product-image,
.sjwps-theme--seojan .sjwps-card:focus-within .sjwps-product-image {
	transform: none;
}

.sjwps-theme--seojan .sjwps-gallery-main.is-switching {
	opacity: .28;
	transform: scale(.985);
}

.sjwps-gallery-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.sjwps-theme--seojan .sjwps-gallery-dots {
	position: absolute;
	z-index: 4;
	inset-inline: 0;
	bottom: 8px;
	min-height: 17px;
	padding: 0 12px;
	pointer-events: auto;
}

.sjwps-gallery-dot {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 18px;
	height: 3px;
	margin: 0;
	padding: 6px 0;
	border: 0;
	border-radius: 999px;
	background: #c8c8c8;
	background-clip: content-box;
	box-sizing: content-box;
	box-shadow: none;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sjwps-gallery-dot > span {
	display: none;
}

.sjwps-gallery-dot:hover,
.sjwps-gallery-dot:focus-visible {
	background-color: #777;
	outline: none;
}

.sjwps-gallery-dot.is-active {
	background-color: #151515;
}

.sjwps-gallery-dot:focus-visible {
	box-shadow: 0 0 0 2px rgba(17, 17, 17, .22);
}

.sjwps-theme--seojan .sjwps-card-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	row-gap: 8px;
	min-height: 0;
	padding: 18px 24px 24px;
	border: 0;
	background: #fff;
	text-align: start;
}

.sjwps-product-subtitle {
	margin: 0;
	padding: 0;
	overflow: hidden;
	color: #575b61;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	text-align: start;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.sjwps-product-subtitle.is-placeholder {
	visibility: hidden;
}

.sjwps-theme--seojan .sjwps-product-title {
	display: -webkit-box;
	height: auto;
	min-height: 2.7em;
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	text-align: start;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sjwps-theme--seojan .sjwps-product-title a {
	color: inherit;
	text-decoration: none;
}

.sjwps-theme--seojan .sjwps-product-title a:hover,
.sjwps-theme--seojan .sjwps-product-title a:focus-visible {
	color: #000;
}

.sjwps-theme--seojan .sjwps-price-row {
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	min-height: 28px;
	margin-top: auto;
	padding-top: 14px;
	text-align: start;
}

.sjwps-theme--seojan .sjwps-prices {
	align-items: flex-start;
	justify-content: flex-start;
	margin-inline: 0;
}

.sjwps-theme--seojan .sjwps-current-price,
.sjwps-theme--seojan .sjwps-base-price,
.sjwps-theme--seojan .sjwps-regular-price--only {
	color: #1f2328;
	font-size: 16px;
	font-weight: 500;
}

.sjwps-theme--seojan .sjwps-regular-price {
	font-size: 12px;
}

.sjwps-theme--seojan .sjwps-nav-button {
	width: var(--sjwps-arrow-size);
	height: var(--sjwps-arrow-size);
	border: 1px solid #d6d8db;
	border-radius: 999px;
	background: #fff;
	color: #1f2328;
	box-shadow: 0 3px 10px rgba(16, 24, 40, .08);
}

.sjwps-theme--seojan .sjwps-nav-button:hover,
.sjwps-theme--seojan .sjwps-nav-button:focus-visible {
	border-color: #1f2328;
	background: #fff;
	color: #000;
	box-shadow: 0 5px 14px rgba(16, 24, 40, .12);
}

.sjwps-theme--seojan .sjwps-nav-button:disabled,
.sjwps-theme--seojan .sjwps-nav-button[aria-disabled="true"] {
	border-color: #e5e7e9;
	background: #f8f8f8;
	color: #a6a9ad;
	box-shadow: none;
}

.sjwps-banner-card {
	position: relative;
	display: grid;
	flex: 0 0 var(--sjwps-card-width);
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 16px;
	width: var(--sjwps-card-width);
	min-width: 0;
	min-height: 472px;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	scroll-snap-align: start;
}

.sjwps-banner-main {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	min-height: 0;
	padding: 22px 22px 0;
	overflow: hidden;
	border: 0;
	border-radius: var(--sjwps-seojan-radius);
	background: #fff;
	color: #1f2328;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sjwps-banner-main:hover,
.sjwps-banner-main:focus-visible {
	color: #000;
	transform: none;
}

.sjwps-banner-copy {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 7px;
	text-align: start;
}

.sjwps-banner-eyebrow {
	margin: 0;
	color: #575b61;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.sjwps-banner-title {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	margin: 0;
	color: #171a1e;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
}

.sjwps-banner-title-text {
	min-width: 0;
}

.sjwps-banner-title-icon,
.sjwps-banner-button-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	padding: 6px;
	border: 0;
	border-radius: 999px;
	background: #2c2f33;
	color: #fff;
	font-size: 12px;
	box-shadow: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sjwps-banner-title-icon > i,
.sjwps-banner-title-icon > svg,
.sjwps-banner-button-icon > i,
.sjwps-banner-button-icon > svg {
	width: 100%;
	height: 100%;
}

.sjwps-banner-image {
	display: block;
	width: calc(100% + 44px);
	height: 285px;
	max-width: none;
	margin: auto -22px 0;
	object-fit: cover;
	object-position: center bottom;
}

.sjwps-banner-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 80px;
	margin: 0;
	padding: 18px 22px;
	border: 0;
	border-radius: var(--sjwps-seojan-radius);
	background: #fff;
	color: #1f2328;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
	text-align: center;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, border-radius .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sjwps-banner-button:hover,
.sjwps-banner-button:focus-visible {
	background: #fafafa;
	color: #000;
	transform: none;
}

.sjwps-banner-button .sjwps-icon {
	width: 24px;
	height: 24px;
	font-size: 12px;
}

.sjwps-banner-main:hover .sjwps-banner-title-icon,
.sjwps-banner-main:focus-visible .sjwps-banner-title-icon,
.sjwps-banner-button:hover .sjwps-banner-button-icon,
.sjwps-banner-button:focus-visible .sjwps-banner-button-icon {
	background: #17191c;
}

[dir="rtl"] .sjwps-banner-title-icon.sjwps-icon--directional,
.rtl .sjwps-banner-title-icon.sjwps-icon--directional,
[dir="rtl"] .sjwps-banner-button-icon.sjwps-icon--directional,
.rtl .sjwps-banner-button-icon.sjwps-icon--directional {
	transform: rotate(180deg);
}

@media (max-width: 1024px) {
	.sjwps-theme--seojan .sjwps-section-title {
		font-size: 24px;
	}

	.sjwps-theme--seojan .sjwps-card,
	.sjwps-banner-card {
		min-height: 430px;
	}

	.sjwps-theme--seojan .sjwps-product-media {
		height: 285px;
	}

	.sjwps-banner-image {
		height: 250px;
	}
}

@media (max-width: 767px) {
	.sjwps-theme--seojan .sjwps-stage {
		padding: 4px;
	}

	.sjwps-theme--seojan .sjwps-header {
		padding-bottom: 12px;
	}

	.sjwps-theme--seojan .sjwps-section-title {
		font-size: 20px;
	}

	.sjwps-theme--seojan .sjwps-card,
	.sjwps-banner-card {
		min-height: 360px;
	}

	.sjwps-theme--seojan .sjwps-product-media {
		height: 235px;
	}

	.sjwps-theme--seojan .sjwps-image-link {
		padding: 14px 14px 7px;
	}

	.sjwps-theme--seojan .sjwps-product-media--gallery .sjwps-image-link {
		padding-bottom: 24px;
	}

	.sjwps-theme--seojan .sjwps-card-content {
		row-gap: 6px;
		padding: 13px 14px 16px;
	}

	.sjwps-theme--seojan .sjwps-product-subtitle {
		font-size: 11px;
	}

	.sjwps-theme--seojan .sjwps-product-title {
		font-size: 14px;
	}

	.sjwps-theme--seojan .sjwps-current-price,
	.sjwps-theme--seojan .sjwps-base-price,
	.sjwps-theme--seojan .sjwps-regular-price--only {
		font-size: 13px;
	}

	.sjwps-theme--seojan .sjwps-price-row {
		padding-top: 8px;
	}

	.sjwps-banner-main {
		padding: 16px 16px 0;
	}

	.sjwps-banner-eyebrow {
		font-size: 11px;
	}

	.sjwps-banner-title {
		font-size: 15px;
	}

	.sjwps-banner-image {
		width: calc(100% + 32px);
		height: 210px;
		margin-inline: -16px;
	}

	.sjwps-banner-button {
		min-height: 62px;
		padding: 14px 16px;
		font-size: 13px;
	}
}


/* v1.0.10 gallery and banner refinements */
.sjwps-theme--seojan .sjwps-product-media--gallery {
	position: relative;
}

.sjwps-theme--seojan .sjwps-product-media--gallery .sjwps-image-link {
	padding-bottom: 32px;
}

.sjwps-theme--seojan .sjwps-gallery-dots {
	position: absolute;
	z-index: 4;
	inset-inline: 0;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: min(86px, calc(100% - 48px));
	min-height: 2px;
	margin-inline: auto;
	padding: 0;
	overflow: hidden;
	pointer-events: auto;
}

.sjwps-theme--seojan .sjwps-gallery-dot {
	flex: 1 1 0;
	width: auto;
	height: 2px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: rgba(0, 0, 0, .2);
	background-clip: border-box;
	box-sizing: border-box;
}

.sjwps-theme--seojan .sjwps-gallery-dot:hover,
.sjwps-theme--seojan .sjwps-gallery-dot:focus-visible {
	background: rgba(0, 0, 0, .45);
	box-shadow: none;
	outline: none;
}

.sjwps-theme--seojan .sjwps-gallery-dot.is-active {
	background: rgba(0, 0, 0, .85);
}

.sjwps-theme--seojan .sjwps-gallery-nav {
	position: absolute;
	z-index: 5;
	inset: 0;
	pointer-events: none;
}

.sjwps-theme--seojan .sjwps-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(198, 198, 198, .92);
	color: #272727;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .2s ease, visibility .2s ease, background-color .2s ease, color .2s ease;
}

.sjwps-theme--seojan .sjwps-gallery-arrow svg {
	width: 16px;
	height: 16px;
}

.sjwps-theme--seojan .sjwps-gallery-arrow--prev {
	inset-inline-start: 12px;
}

.sjwps-theme--seojan .sjwps-gallery-arrow--next {
	inset-inline-end: 12px;
}

.sjwps-theme--seojan .sjwps-product-media--gallery:hover .sjwps-gallery-arrow,
.sjwps-theme--seojan .sjwps-product-media--gallery:focus-within .sjwps-gallery-arrow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.sjwps-theme--seojan .sjwps-gallery-arrow:hover,
.sjwps-theme--seojan .sjwps-gallery-arrow:focus-visible {
	background: rgba(185, 185, 185, .98);
	color: #111;
	outline: none;
}

.sjwps-theme--seojan .sjwps-gallery-arrow.is-disabled,
.sjwps-theme--seojan .sjwps-gallery-arrow:disabled {
	opacity: .45;
	visibility: visible;
	pointer-events: none;
}

.sjwps-theme--seojan .sjwps-product-subtitle,
.sjwps-theme--seojan .sjwps-product-title,
.sjwps-theme--seojan .sjwps-price-row {
	text-align: inherit;
}

.sjwps-theme--seojan .sjwps-banner-card {
	grid-template-rows: minmax(0, 3fr) minmax(0, 1fr);
	gap: 12px;
	min-height: 470px;
}

.sjwps-theme--seojan .sjwps-banner-main {
	position: relative;
	justify-content: flex-start;
	padding: 24px;
	background: #efefef;
	background-image: var(--sjwps-banner-bg-image, none);
	background-size: cover;
	background-position: center center;
	isolation: isolate;
}

.sjwps-theme--seojan .sjwps-banner-main.has-background {
	color: #fff;
}

.sjwps-theme--seojan .sjwps-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(18, 18, 18, .08) 0%, rgba(18, 18, 18, .22) 55%, rgba(18, 18, 18, .45) 100%);
	pointer-events: none;
}

.sjwps-theme--seojan .sjwps-banner-copy {
	position: relative;
	z-index: 2;
	margin-top: auto;
}

.sjwps-theme--seojan .sjwps-banner-main.has-background .sjwps-banner-eyebrow,
.sjwps-theme--seojan .sjwps-banner-main.has-background .sjwps-banner-title {
	color: #fff;
}

.sjwps-theme--seojan .sjwps-banner-title {
	justify-content: space-between;
}

.sjwps-theme--seojan .sjwps-banner-title-text {
	flex: 1 1 auto;
}

.sjwps-theme--seojan .sjwps-banner-main.has-background .sjwps-banner-title-icon {
	background: rgba(0, 0, 0, .56);
	color: #fff;
}

.sjwps-theme--seojan .sjwps-banner-button {
	min-height: 0;
	height: 100%;
	justify-content: space-between;
	text-align: start;
}

.sjwps-theme--seojan .sjwps-banner-button-text {
	flex: 1 1 auto;
}

@media (max-width: 767px) {
	.sjwps-theme--seojan .sjwps-gallery-arrow {
		width: 30px;
		height: 30px;
	}
	.sjwps-theme--seojan .sjwps-banner-card {
		min-height: 400px;
	}
}
