/**
 * Slate Product Slider 1.1
 *
 * Scoped to .sps so nothing leaks into the theme. Almost every visual
 * decision is a custom property, so a shortcode attribute, an Elementor
 * control or three lines of theme CSS can change it.
 */

/* ==================================================  1. Tokens */

.sps {
	/* Palette */
	--sps-ink: #16181c;
	--sps-body: #5c6169;
	--sps-soft: #8a8f97;
	--sps-line: #e5e4e0;
	--sps-line-strong: #c9c8c2;
	--sps-surface: #ffffff;
	--sps-well: #f1f1ef;
	--sps-accent: #1c4c4a;
	--sps-accent-ink: #ffffff;
	--sps-sale: #9c2c22;
	--sps-star: #d3a029;

	/* Scale */
	--sps-fs: 15px;
	--sps-radius: 14px;
	--sps-radius-sm: 8px;
	--sps-gap: 20px;
	--sps-ratio: 1/1;
	--sps-per: 1.2;
	--sps-pad: 3px;
	--sps-card-pad: 16px;
	--sps-border-width: 1px;
	--sps-arrow-size: 40px;
	--sps-dot-w: 24px;
	--sps-dot-h: 3px;

	position: relative;
	font-family: var(--sps-font, inherit);
	color: var(--sps-ink);
}

.sps--dark {
	--sps-ink: #f4f4f2;
	--sps-body: #a9aeb5;
	--sps-soft: #8b9097;
	--sps-line: #2b2e33;
	--sps-line-strong: #454950;
	--sps-surface: #17191d;
	--sps-well: #202329;
	--sps-accent: #e7ece8;
	--sps-accent-ink: #12211d;
	--sps-sale: #e0796c;
	--sps-star: #e0b453;
}

/* The overlay design puts text on a photo, so only the card flips to light
   text. Arrows and dots keep the colours of the page around them. */
.sps--design-overlay .sps-card {
	--sps-ink: #ffffff;
	--sps-body: rgba(255, 255, 255, 0.86);
	--sps-soft: rgba(255, 255, 255, 0.72);
	--sps-line: rgba(255, 255, 255, 0.24);
	--sps-line-strong: rgba(255, 255, 255, 0.5);
	--sps-accent: #ffffff;
	--sps-accent-ink: #14171b;
	--sps-sale: #ffb4a6;
	--sps-star: #f0c059;
}

@media (prefers-color-scheme: dark) {
	.sps--auto {
		--sps-ink: #f4f4f2;
		--sps-body: #a9aeb5;
		--sps-soft: #8b9097;
		--sps-line: #2b2e33;
		--sps-line-strong: #454950;
		--sps-surface: #17191d;
		--sps-well: #202329;
		--sps-accent: #e7ece8;
		--sps-accent-ink: #12211d;
		--sps-sale: #e0796c;
		--sps-star: #e0b453;
	}
}

.sps *,
.sps *::before,
.sps *::after {
	box-sizing: border-box;
}

.sps-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.sps-empty {
	margin: 0;
	padding: 16px 18px;
	border: 1px dashed #d6d5d1;
	border-radius: 10px;
	color: #6b7079;
	font-size: 0.875rem;
}

/* ==================================================  2. Columns per device */

.sps {
	--sps-per: var(--sps-per-m, 1.2);
}

@media (min-width: 768px) {
	.sps {
		--sps-per: var(--sps-per-t, 3);
	}
}

@media (min-width: 1025px) {
	.sps {
		--sps-per: var(--sps-per-d, 4);
	}
}

/* ==================================================  3. Header and footer */

.sps__header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.sps__heading {
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
	font-size: var(--sps-heading-size, clamp(1.125rem, 2.4vw, 1.375rem));
	font-weight: var(--sps-heading-weight, 600);
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: var(--sps-heading-color, var(--sps-ink));
}

.sps--heading-center .sps__heading {
	text-align: center;
}

.sps--heading-right .sps__heading {
	text-align: right;
}

.sps__header-nav {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.sps__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 18px;
}

.sps__footer:empty {
	display: none;
}

/* ==================================================  4. Track */

.sps__viewport {
	position: relative;
}

.sps__track {
	display: flex;
	gap: var(--sps-gap);
	padding-block: var(--sps-pad);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.sps__track::-webkit-scrollbar {
	display: none;
}

.sps__track:focus-visible {
	outline: 2px solid var(--sps-accent);
	outline-offset: -2px;
	border-radius: 4px;
}

.sps-slide {
	flex: 0 0 calc((100% - (var(--sps-per) - 1) * var(--sps-gap)) / var(--sps-per));
	min-width: 0;
	scroll-snap-align: start;
}

/* ==================================================  5. Card */

.sps-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--sps-surface);
	border: var(--sps-border-width) solid var(--sps-line);
	border-radius: var(--sps-radius);
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sps-card:hover {
	border-color: var(--sps-line-strong);
}

.sps-card.is-out-of-stock .sps-gallery__img {
	opacity: 0.68;
}

.sps-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
}

/* Media ---------------------------------------------------- */

.sps-card__media {
	position: relative;
	aspect-ratio: var(--sps-ratio);
	background: var(--sps-well);
	overflow: hidden;
}

@supports not (aspect-ratio: 1 / 1) {
	.sps-card__media {
		height: 0;
		padding-bottom: 100%;
	}
}

.sps-gallery {
	position: absolute;
	inset: 0;
}

.sps-gallery__track {
	display: flex;
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.sps-gallery__track::-webkit-scrollbar {
	display: none;
}

.sps-gallery.is-single .sps-gallery__track {
	overflow: hidden;
}

.sps-gallery__item {
	flex: 0 0 100%;
	height: 100%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.sps-gallery__link {
	display: block;
	height: 100%;
	text-decoration: none;
}

.sps-gallery__img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	border-radius: 0;
	transition: transform 0.5s ease, opacity 0.2s ease;
}

.sps-gallery:not(.is-single)::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 56px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
	pointer-events: none;
	z-index: 2;
}

/* Gallery arrows, always inside the card and only on hover */

.sps-gallery__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.94);
	color: #16181c;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--sps-radius-sm);
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.18s ease, background-color 0.18s ease;
}

.sps-gallery__nav svg {
	width: 15px;
	height: 15px;
}

.sps-gallery__nav--prev {
	inset-inline-start: 8px;
}

.sps-gallery__nav--next {
	inset-inline-end: 8px;
}

[dir="rtl"] .sps-gallery__nav svg,
[dir="rtl"] .sps__nav svg {
	transform: scaleX(-1);
}

.sps-card:hover .sps-gallery__nav,
.sps-card:focus-within .sps-gallery__nav {
	opacity: 1;
}

.sps-gallery__nav:hover {
	background: #fff;
}

.sps-gallery__nav:focus-visible {
	opacity: 1;
	outline: 2px solid var(--sps-accent);
	outline-offset: 2px;
}

@media (hover: none) {
	.sps-gallery__nav {
		display: none;
	}
}

/* Gallery dots */

.sps-gallery__dots {
	position: absolute;
	inset-inline: 0;
	bottom: 10px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 4px;
	padding: 0 12px;
}

.sps-gallery__dot {
	position: relative;
	width: 18px;
	max-width: 18px;
	height: 3px;
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.5);
	border: 0;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.sps-gallery__dot::after {
	content: "";
	position: absolute;
	inset: -9px -2px;
}

.sps-gallery__dot.is-active {
	background: #ffffff;
}

.sps-gallery__dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* Badge and stock chip */

.sps-chip {
	position: absolute;
	top: 10px;
	inset-inline-start: 10px;
	z-index: 4;
	padding: 4px 9px;
	background: rgba(255, 255, 255, 0.95);
	color: #16181c;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
}

.sps-chip--sale {
	background: var(--sps-badge-bg, var(--sps-sale));
	color: var(--sps-badge-color, #fff);
	border-color: transparent;
}

/* Body ------------------------------------------------------ */

.sps-card__body {
	padding: var(--sps-card-pad) var(--sps-card-pad) 0;
}

.sps-card__cat {
	margin: 0 0 6px;
	font-size: calc(var(--sps-fs) * 0.8);
	line-height: 1.3;
	color: var(--sps-soft);
}

.sps-card__title {
	margin: 0;
	padding: 0;
	font-size: var(--sps-title-size, var(--sps-fs));
	font-weight: var(--sps-title-weight, 600);
	line-height: 1.35;
	letter-spacing: -0.008em;
	color: var(--sps-title-color, var(--sps-ink));
	display: -webkit-box;
	-webkit-line-clamp: var(--sps-title-lines, 2);
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sps-card__title a {
	color: inherit;
	text-decoration: none;
	box-shadow: none;
}

.sps-card__title a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}

.sps-card__title a:focus-visible {
	outline: 2px solid var(--sps-accent);
	outline-offset: 2px;
	border-radius: 3px;
}

.sps-card__text {
	margin: 8px 0 0;
	font-size: var(--sps-text-size, calc(var(--sps-fs) * 0.867));
	line-height: 1.55;
	color: var(--sps-text-color, var(--sps-body));
	display: -webkit-box;
	-webkit-line-clamp: var(--sps-text-lines, 2);
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sps-card__body > *:first-child {
	margin-top: 0;
}

/* Rating */

.sps-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	font-size: var(--sps-rating-size, calc(var(--sps-fs) * 0.8));
	line-height: 1.4;
	color: var(--sps-body);
}

.sps-stars {
	position: relative;
	display: inline-block;
	font-size: calc(var(--sps-rating-size, calc(var(--sps-fs) * 0.8)) * 1.05);
	line-height: 1;
	letter-spacing: 2px;
	color: var(--sps-line-strong);
	white-space: nowrap;
}

.sps-stars::before {
	content: "\2605\2605\2605\2605\2605";
	/* Cancels the trailing letter-spacing so the fill percentage is exact. */
	margin-inline-end: -2px;
}

.sps-stars__fill {
	position: absolute;
	inset-inline-start: 0;
	top: 0;
	overflow: hidden;
	color: var(--sps-star);
	white-space: nowrap;
}

.sps-stars__fill::before {
	content: "\2605\2605\2605\2605\2605";
	margin-inline-end: -2px;
}

.sps-rating__value {
	font-weight: 600;
	color: var(--sps-ink);
}

.sps-rating__count {
	color: var(--sps-soft);
}

.sps-rating--empty .sps-rating__value {
	display: none;
}

/* Price and cart -------------------------------------------- */

.sps-card__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 12px;
	margin-top: auto;
	padding: 14px var(--sps-card-pad) var(--sps-card-pad);
}

.sps-card__body .sps-card__price,
.sps-card__body .sps-card__cart {
	margin-top: 10px;
}

.sps-card__price {
	font-size: var(--sps-price-size, calc(var(--sps-fs) * 1.067));
	font-weight: var(--sps-price-weight, 600);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--sps-price-color, var(--sps-ink));
}

.sps-card__price del {
	margin-inline-end: 6px;
	font-size: 0.8125em;
	font-weight: 400;
	color: var(--sps-soft);
	opacity: 1;
	text-decoration: line-through;
}

.sps-card__price ins {
	background: none;
	color: var(--sps-sale);
	text-decoration: none;
}

.sps-card__price .woocommerce-Price-currencySymbol {
	font-size: 0.875em;
}

.sps-card__cart {
	flex: 1 1 128px;
	min-width: 0;
}

.sps .sps-card .sps-card__cart a.button,
.sps .sps-card .sps-card__cart button.button,
.sps .sps-card .sps-card__cart .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-height: var(--sps-btn-height, 40px);
	margin: 0;
	padding: 9px 14px;
	font-family: inherit;
	font-size: var(--sps-btn-size, calc(var(--sps-fs) * 0.867));
	font-weight: var(--sps-btn-weight, 600);
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	text-transform: none;
	text-decoration: none;
	color: var(--sps-btn-color, var(--sps-accent-ink));
	background: var(--sps-btn-bg, var(--sps-accent));
	border: 1px solid var(--sps-btn-bg, var(--sps-accent));
	border-radius: var(--sps-btn-radius, var(--sps-radius-sm));
	box-shadow: none;
	cursor: pointer;
	transition: box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.sps .sps-card .sps-card__cart .button:hover {
	color: var(--sps-btn-hover-color, var(--sps-btn-color, var(--sps-accent-ink)));
	background: var(--sps-btn-hover-bg, var(--sps-btn-bg, var(--sps-accent)));
	box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.1);
}

.sps--dark .sps-card .sps-card__cart .button:hover,
.sps--design-overlay .sps-card .sps-card__cart .button:hover {
	box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.08);
}

.sps .sps-card .sps-card__cart .button:focus-visible {
	outline: 2px solid var(--sps-accent);
	outline-offset: 2px;
}

.sps .sps-card .sps-card__cart .button.loading {
	opacity: 0.7;
	pointer-events: none;
}

.sps .sps-card .sps-card__cart .added_to_cart {
	display: block;
	width: 100%;
	margin-top: 8px;
	font-size: calc(var(--sps-fs) * 0.8);
	font-weight: 500;
	text-align: center;
	color: var(--sps-body);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ==================================================  6. Slider arrows */

.sps__nav {
	position: absolute;
	top: calc(var(--sps-pad) + var(--sps-media-h, 180px) / 2);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--sps-arrow-size);
	height: var(--sps-arrow-size);
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	background: var(--sps-arrow-bg, var(--sps-surface));
	color: var(--sps-arrow-color, var(--sps-ink));
	border: 1px solid var(--sps-arrow-border, var(--sps-line));
	border-radius: var(--sps-arrow-radius, 10px);
	cursor: pointer;
	transition: border-color 0.18s ease, opacity 0.18s ease;
}

.sps__nav svg {
	width: calc(var(--sps-arrow-size) * 0.45);
	height: calc(var(--sps-arrow-size) * 0.45);
}

.sps__nav:hover {
	border-color: var(--sps-line-strong);
}

.sps__nav:focus-visible {
	outline: 2px solid var(--sps-accent);
	outline-offset: 2px;
}

.sps__nav[hidden] {
	display: none;
}

.sps__nav.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* Outside the slides, sitting in a gutter. This is the default. */

.sps--nav-outside .sps__viewport {
	padding-inline: calc(var(--sps-arrow-size) + 14px);
}

.sps--nav-outside .sps__nav--prev {
	inset-inline-start: 0;
}

.sps--nav-outside .sps__nav--next {
	inset-inline-end: 0;
}

/* Over the first and last slide. */

.sps--nav-inside .sps__nav--prev {
	inset-inline-start: 8px;
}

.sps--nav-inside .sps__nav--next {
	inset-inline-end: 8px;
}

/* In the header row or under the track. */

.sps__nav--static {
	position: static;
	transform: none;
	flex: 0 0 auto;
}

@media (max-width: 767px) {
	.sps__nav {
		display: none;
	}

	.sps--nav-outside .sps__viewport {
		padding-inline: 0;
	}

	.sps--arrows-mobile .sps__nav {
		display: flex;
	}

	.sps--arrows-mobile.sps--nav-outside .sps__viewport {
		padding-inline: calc(var(--sps-arrow-size) + 8px);
	}
}

/* ==================================================  7. Pagination */

.sps__dots {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.sps__dots[hidden] {
	display: none;
}

.sps__dot {
	position: relative;
	width: var(--sps-dot-w);
	height: var(--sps-dot-h);
	margin: 0;
	padding: 0;
	background: var(--sps-dot-color, var(--sps-line-strong));
	border: 0;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.sps__dot::after {
	content: "";
	position: absolute;
	inset: -11px -3px;
}

.sps__dot.is-active {
	background: var(--sps-dot-active, var(--sps-ink));
}

.sps__dot:focus-visible {
	outline: 2px solid var(--sps-accent);
	outline-offset: 4px;
}

/* ==================================================  8. Designs */

/* clean: no card, the photo does the framing */

.sps--design-clean .sps-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
}

.sps--design-clean .sps-card__media {
	border-radius: var(--sps-radius);
	overflow: hidden;
}

.sps--design-clean .sps-card__body {
	padding: 14px 0 0;
}

.sps--design-clean .sps-card__foot {
	padding: 12px 0 0;
}

/* frame: the photo sits inside the card with a mat around it */

.sps--design-frame .sps-card {
	padding: 10px;
}

.sps--design-frame .sps-card__media {
	border-radius: calc(var(--sps-radius) - 5px);
	overflow: hidden;
}

.sps--design-frame .sps-card__body {
	padding: 14px 6px 0;
}

.sps--design-frame .sps-card__foot {
	margin: 14px 6px 0;
	padding: 14px 0 4px;
	border-top: 1px solid var(--sps-line);
}

.sps--design-frame .sps-card .sps-card__cart .button {
	color: var(--sps-btn-color, var(--sps-ink));
	background: transparent;
	border-color: var(--sps-line-strong);
}

.sps--design-frame .sps-card .sps-card__cart .button:hover {
	color: var(--sps-btn-hover-color, var(--sps-accent-ink));
	background: var(--sps-btn-hover-bg, var(--sps-btn-bg, var(--sps-accent)));
	border-color: transparent;
	box-shadow: none;
}

/* overlay: text sits on the photo */

.sps--design-overlay .sps-card {
	position: relative;
	background: transparent;
	border: 0;
}

.sps--design-overlay .sps-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(10, 11, 13, 0.85), rgba(10, 11, 13, 0.3) 46%, rgba(10, 11, 13, 0) 74%);
	pointer-events: none;
}

.sps--design-overlay .sps-gallery:not(.is-single)::after {
	display: none;
}

.sps--design-overlay .sps-gallery__dots {
	top: 12px;
	bottom: auto;
}

.sps--design-overlay .sps-card__content {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 4;
}

.sps--design-overlay .sps-card__foot {
	padding-top: 12px;
}

.sps--design-overlay .sps-card .sps-card__cart .button {
	color: var(--sps-btn-color, #14171b);
	background: var(--sps-btn-bg, rgba(255, 255, 255, 0.95));
	border-color: transparent;
	backdrop-filter: blur(6px);
}

/* compact: photo on the left, text on the right */

.sps--design-compact .sps-card {
	flex-direction: row;
	align-items: stretch;
}

.sps--design-compact .sps-card__media {
	flex: 0 0 var(--sps-media-w, 40%);
	aspect-ratio: auto;
	align-self: stretch;
}

@supports not (aspect-ratio: 1 / 1) {
	.sps--design-compact .sps-card__media {
		height: auto;
		padding-bottom: 0;
	}
}

.sps--design-compact .sps-card__content {
	padding-block: 4px;
}

.sps--design-compact .sps-card__body {
	padding-top: calc(var(--sps-card-pad) - 2px);
}

.sps--design-compact .sps-gallery__dots {
	bottom: 6px;
}

.sps--design-compact .sps-card__foot {
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
}

/* ==================================================  9. Alignment */

.sps--align-center .sps-card__content {
	text-align: center;
}

.sps--align-center .sps-rating,
.sps--align-center .sps-card__foot {
	justify-content: center;
}

.sps--align-center .sps-card__cart {
	flex: 1 1 100%;
}

.sps--align-right .sps-card__content {
	text-align: right;
}

.sps--align-right .sps-rating,
.sps--align-right .sps-card__foot {
	justify-content: flex-end;
}

.sps--align-right .sps-card__cart {
	flex: 1 1 100%;
}

[dir="rtl"] .sps--align-right .sps-card__content {
	text-align: left;
}

/* ================================================== 10. Hover effects */

.sps--hover-zoom .sps-card:hover .sps-gallery__img {
	transform: scale(1.06);
}

.sps--hover-lift .sps-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(16, 18, 22, 0.12);
}

.sps--dark.sps--hover-lift .sps-card:hover {
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

/* ================================================== 11. Motion preference */

@media (prefers-reduced-motion: reduce) {
	.sps__track,
	.sps-gallery__track {
		scroll-behavior: auto;
	}

	.sps *,
	.sps *::before,
	.sps *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	.sps--hover-zoom .sps-card:hover .sps-gallery__img,
	.sps--hover-lift .sps-card:hover {
		transform: none;
	}
}
