:root {
	--samurai-bg: #090909;
	--samurai-bg-soft: #111;
	--samurai-card: #151515;
	--samurai-text: #fff;
	--samurai-text-soft: rgba(255, 255, 255, .72);
	--samurai-text-muted: rgba(255, 255, 255, .52);
	--samurai-gold: #d7ad63;
	--samurai-gold-soft: rgba(215, 173, 99, .14);
	--samurai-burgundy: #9f0028;
	--samurai-border: rgba(255, 255, 255, .1);
	--samurai-border-gold: rgba(215, 173, 99, .46);
	--samurai-radius-lg: 28px;
	--samurai-radius-md: 20px;
	--samurai-container: 1280px;
}

.samurai-site-active {
	background: var(--samurai-bg);
	color: var(--samurai-text);
}

.samurai-site-active .samurai-header {
	border-bottom-color: rgba(215, 173, 99, .18);
	background: rgba(9, 9, 9, .88);
	backdrop-filter: blur(18px);
}

.samurai-site-active .samurai-menu-toggle {
	display: inline-flex;
	justify-self: center;
}

.samurai-site-active .samurai-menu-toggle i,
.samurai-site-active .samurai-menu-toggle i::before,
.samurai-site-active .samurai-menu-toggle i::after {
	background: var(--samurai-gold);
}

.samurai-site-active .samurai-cart-link small {
	background: var(--samurai-gold);
	color: #111;
}

.samurai-button--gold {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
}

.samurai-button--gold:hover {
	border-color: #fff;
	background: #fff;
	color: #111;
}

.hp-home,
.sl-services,
.ss-service {
	background: var(--samurai-bg);
	color: var(--samurai-text);
	font-family: Inter, Arial, Helvetica, sans-serif;
}

.hp-home a,
.sl-services a,
.ss-service a {
	color: inherit;
	text-decoration: none;
}

.hp-container,
.sl-container,
.ss-container {
	width: min(var(--samurai-container), calc(100% - 56px));
	margin: 0 auto;
}

.hp-section,
.ss-section {
	padding: 96px 0;
	background: var(--samurai-bg);
}

.hp-section--soft,
.ss-section--soft {
	background: var(--samurai-bg-soft);
}

.hp-section__top,
.sl-section__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 46px;
}

.hp-eyebrow,
.sl-eyebrow,
.ss-eyebrow,
.sp-eyebrow {
	margin: 0 0 12px;
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.hp-section-title,
.ss-section-title,
.sp-section-title {
	position: relative;
	margin: 0;
	font-size: clamp(34px, 4.6vw, 62px);
	font-weight: 950;
	letter-spacing: -.075em;
	line-height: .96;
}

.hp-section-title::after,
.ss-section-title::after,
.sp-section-title::after {
	display: block;
	width: 72px;
	height: 1px;
	margin-top: 20px;
	background: var(--samurai-gold);
	content: "";
	opacity: .82;
}

.hp-section-intro,
.sl-section__top > p {
	max-width: 480px;
	margin: 0;
	color: var(--samurai-text-muted);
	font-size: 15px;
	line-height: 1.7;
	text-align: right;
}

.hp-button,
.ss-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: rgba(215, 173, 99, .08);
	color: #fff;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: background .24s ease, color .24s ease, border-color .24s ease, transform .24s ease;
}

.hp-button:hover,
.ss-button:hover {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
	transform: translateY(-1px);
}

.hp-button--solid,
.ss-button--solid {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
}

.hp-button--solid:hover,
.ss-button--solid:hover {
	border-color: #fff;
	background: #fff;
	color: #111;
}

.hp-section-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 34px;
}

/* Homepage */

.hp-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: min(900px, 100vh);
	overflow: hidden;
	background: #000;
}

.hp-hero__bg,
.hp-cta__bg {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hp-hero::after,
.hp-cta::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		radial-gradient(circle at 68% 35%, rgba(215, 173, 99, .18), transparent 35%),
		linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .65) 48%, rgba(0, 0, 0, .2) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, .78), transparent 50%);
	content: "";
}

.hp-hero__content {
	position: relative;
	z-index: 3;
	padding: 190px 0 100px;
}

.hp-hero__eyebrow {
	margin: 0 0 18px;
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.hp-hero__title {
	max-width: 850px;
	margin: 0 0 24px;
	font-size: clamp(56px, 8.8vw, 126px);
	font-weight: 950;
	letter-spacing: -.09em;
	line-height: .86;
}

.hp-hero__text {
	max-width: 650px;
	margin: 0 0 34px;
	color: var(--samurai-text-soft);
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.65;
}

.hp-hero__buttons,
.hp-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hp-products-grid,
.hp-experience-grid,
.hp-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.hp-product-card {
	position: relative;
	isolation: isolate;
	min-height: 500px;
	overflow: hidden;
	border-radius: var(--samurai-radius-lg);
	background: var(--samurai-card);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.hp-product-card__bg,
.hp-service-card__image {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.hp-product-card:hover .hp-product-card__bg,
.hp-service-card:hover .hp-service-card__image {
	transform: scale(1.045);
}

.hp-product-card__overlay,
.hp-service-card__overlay {
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .14), transparent 34%),
		linear-gradient(0deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .66) 40%, rgba(0, 0, 0, .05) 75%);
}

.hp-product-card__label {
	position: absolute;
	z-index: 5;
	top: 18px;
	right: 18px;
	padding: 8px 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .92);
	color: #111;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.hp-product-card__content {
	position: absolute;
	z-index: 4;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 26px;
}

.hp-product-card__image-wrap {
	display: flex;
	align-items: flex-end;
	min-height: 170px;
	margin-bottom: 10px;
}

.hp-product-card__image {
	width: 135px;
	height: 160px;
	object-fit: contain;
	filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .48));
}

.hp-product-card__title,
.hp-service-card__title {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(24px, 2.1vw, 32px);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: 1;
}

.hp-product-card__desc,
.hp-service-card__desc {
	display: -webkit-box;
	min-height: 42px;
	margin: 0 0 20px;
	overflow: hidden;
	color: var(--samurai-text-soft);
	font-size: 13px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hp-product-card__bottom,
.hp-service-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.hp-product-card__price {
	font-size: 17px;
	font-weight: 850;
}

.hp-product-card__price del {
	color: rgba(255, 255, 255, .48);
	font-size: 12px;
}

.hp-product-card__button,
.hp-service-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 15px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: var(--samurai-gold);
	color: #111;
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
	cursor: pointer;
}

.hp-product-card__button.is-in-cart {
	border-color: #fff;
	background: #fff;
}

.hp-services-grid,
.hp-library-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.hp-service-card {
	position: relative;
	isolation: isolate;
	min-height: 570px;
	overflow: hidden;
	border-radius: var(--samurai-radius-lg);
	background: #111;
}

.hp-service-card__top {
	position: absolute;
	z-index: 5;
	top: 18px;
	right: 18px;
	left: 18px;
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.hp-service-card__difficulty,
.hp-service-card__badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 999px;
	background: rgba(0, 0, 0, .38);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.hp-service-card__badge {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
}

.hp-service-card__content {
	position: absolute;
	z-index: 4;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 26px;
}

.hp-service-card__products-label,
.sl-service-card__products-label {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, .55);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.hp-product-thumbs,
.sl-product-thumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
}

.hp-product-thumb,
.sl-product-thumb,
.hp-product-more,
.sl-product-more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 10px;
	font-weight: 850;
}

.hp-product-thumb img,
.sl-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hp-service-card__meta {
	display: flex;
	flex-direction: column;
	color: var(--samurai-text-soft);
	font-size: 12px;
}

.hp-service-card__price {
	color: var(--samurai-gold);
	font-weight: 850;
}

.hp-experience-card {
	min-height: 250px;
	padding: 28px;
	border: 1px solid var(--samurai-border);
	border-radius: var(--samurai-radius-md);
	background: var(--samurai-card);
}

.hp-experience-card__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 38px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 50%;
	color: var(--samurai-gold);
}

.hp-experience-card__icon svg {
	width: 25px;
	height: 25px;
}

.hp-experience-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	letter-spacing: -.04em;
}

.hp-experience-card p {
	margin: 0;
	color: var(--samurai-text-muted);
	font-size: 14px;
	line-height: 1.65;
}

.hp-steps {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hp-step {
	position: relative;
	min-height: 260px;
	padding: 28px 24px;
	border-top: 1px solid var(--samurai-border-gold);
}

.hp-step::before {
	position: absolute;
	top: -5px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--samurai-gold);
	content: "";
}

.hp-step__number {
	display: block;
	margin-bottom: 76px;
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
}

.hp-step h3 {
	margin: 0 0 10px;
	font-size: 26px;
}

.hp-step p {
	margin: 0;
	color: var(--samurai-text-muted);
	font-size: 14px;
	line-height: 1.65;
}

.hp-library-card {
	display: grid;
	grid-template-columns: .8fr 1fr;
	min-height: 300px;
	overflow: hidden;
	border: 1px solid var(--samurai-border);
	border-radius: var(--samurai-radius-md);
	background: var(--samurai-card);
	transition: transform .25s ease, border-color .25s ease;
}

.hp-library-card:hover {
	border-color: var(--samurai-border-gold);
	transform: translateY(-3px);
}

.hp-library-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hp-library-card__body {
	display: flex;
	flex-direction: column;
	padding: 26px;
}

.hp-library-card__duration {
	margin-bottom: 24px;
	color: var(--samurai-gold);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.hp-library-card h3 {
	margin: 0 0 10px;
	font-size: 24px;
	letter-spacing: -.045em;
}

.hp-library-card p {
	margin: 0 0 20px;
	color: var(--samurai-text-muted);
	font-size: 13px;
	line-height: 1.6;
}

.hp-library-card__link {
	margin-top: auto;
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
}

.hp-cta {
	position: relative;
	isolation: isolate;
	min-height: 650px;
	overflow: hidden;
}

.hp-cta__content {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	min-height: 650px;
}

.hp-cta__content > div {
	max-width: 720px;
}

.hp-cta h2 {
	margin: 0 0 22px;
	font-size: clamp(48px, 7vw, 94px);
	font-weight: 950;
	letter-spacing: -.085em;
	line-height: .9;
}

.hp-cta p:not(.hp-eyebrow) {
	max-width: 600px;
	margin: 0 0 30px;
	color: var(--samurai-text-soft);
	font-size: 17px;
	line-height: 1.7;
}

/* Product cards */

.pk-catalogue {
	padding: 70px 0 96px;
	background: var(--samurai-bg);
}

.pk-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.pk-product-card {
	position: relative;
	isolation: isolate;
	aspect-ratio: var(--pk-card-ratio, 3 / 4);
	min-height: 440px;
	overflow: hidden;
	border-radius: 26px;
	background: #111;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.pk-product-card__main,
.pk-upsell-card {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.pk-product-card__background,
.pk-upsell-card__background {
	position: absolute;
	z-index: 1;
	inset: 0;
	background-image: var(--pk-card-bg);
	background-position: center;
	background-size: cover;
	transition: transform .55s ease;
}

.pk-upsell-card__background {
	background-image: var(--pk-upsell-bg);
}

.pk-product-card:hover .pk-product-card__background,
.pk-upsell-card:hover .pk-upsell-card__background {
	transform: scale(1.05);
}

.pk-product-card__overlay,
.pk-upsell-card__overlay {
	position: absolute;
	z-index: 3;
	inset: 0;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .13), rgba(255, 255, 255, 0) 48%),
		linear-gradient(0deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .78) 24%, rgba(0, 0, 0, .42) 48%, transparent 72%);
}

.pk-product-card__top-layer {
	position: absolute;
	top: 18px;
	right: 18px;
	left: 18px;
	z-index: 50;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	pointer-events: none;
}

.pk-product-card__upsells {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	max-width: calc(100% - 86px);
	gap: 9px;
	pointer-events: auto;
}

.pk-product-card__upsell-label {
	display: block;
	color: rgba(255, 255, 255, .68);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .02em;
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
	white-space: nowrap;
}

.pk-product-card__thumbs {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: -5px;
	padding: 5px;
	overflow-x: auto;
	overflow-y: hidden;
	gap: 12px;
	overscroll-behavior-inline: contain;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.pk-product-card__thumbs::-webkit-scrollbar {
	display: none;
}

.pk-product-card__thumb-button {
	position: relative;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .62);
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	cursor: pointer;
	scroll-snap-align: start;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.pk-product-card__thumb-button:hover,
.pk-product-card__thumb-button:focus-visible,
.pk-product-card__thumb-button.is-active,
.pk-product-card__thumb-button[aria-pressed="true"] {
	border-color: #fff;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, .16);
	transform: translateY(-2px);
}

.pk-product-card__thumb-button:focus-visible {
	outline: 2px solid var(--samurai-gold);
	outline-offset: 3px;
}

.pk-product-card__thumb-button.is-active::after,
.pk-product-card__thumb-button[aria-pressed="true"]::after {
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.pk-product-card__thumb-button img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pk-product-card__badge,
.pk-upsell-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
	color: #111;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	white-space: nowrap;
	backdrop-filter: blur(10px);
	pointer-events: auto;
}

.pk-product-card__badge {
	flex: 0 0 auto;
}

.pk-upsell-card__top {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 32;
	pointer-events: none;
}

.pk-product-card__content,
.pk-upsell-card__content {
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 28px;
}

.pk-product-card__image-wrap,
.pk-upsell-card__image {
	display: flex;
	align-items: flex-end;
	min-height: 155px;
	margin-bottom: 12px;
}

.pk-product-card__image,
.pk-upsell-card__image img {
	width: 120px;
	height: 145px;
	object-fit: contain;
	filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .48));
}

.pk-product-card__brand {
	margin: 0 0 8px;
	color: var(--samurai-gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.pk-product-card__title,
.pk-upsell-card h3 {
	margin: 0 0 7px;
	color: #fff;
	font-size: clamp(25px, 2.4vw, 35px);
	font-weight: 900;
	letter-spacing: -.055em;
	line-height: 1.03;
}

.pk-product-card__desc,
.pk-upsell-card__content > p:not(.pk-product-card__brand) {
	display: -webkit-box;
	min-height: 42px;
	margin: 0 0 19px;
	overflow: hidden;
	color: rgba(255, 255, 255, .74);
	font-size: 13px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pk-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.pk-product-card__price {
	color: #fff;
	font-size: 17px;
	font-weight: 850;
}

.pk-product-card__price del {
	color: rgba(255, 255, 255, .5);
	font-size: 12px;
}

.pk-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 15px;
	border: 1px solid #fff;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 10px;
	font-weight: 850;
	text-transform: uppercase;
	cursor: pointer;
}

.pk-product-card__button.is-in-cart {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
}

.pk-upsell-card {
	z-index: 20;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-105%);
	transition: transform .42s cubic-bezier(.2, .75, .25, 1), opacity .25s ease, visibility 0s .42s;
}

.pk-upsell-card.is-active {
	z-index: 21;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	transition-delay: 0s;
}

.pk-upsell-card__back {
	position: absolute;
	z-index: 30;
	top: 58px;
	right: 18px;
	height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, .76);
	border-radius: 999px;
	background: rgba(0, 0, 0, .18);
	color: #fff;
	font-size: 11px;
	font-weight: 750;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.pk-upsell-card__back:hover,
.pk-upsell-card__back:focus-visible {
	border-color: #fff;
	background: #fff;
	color: #111;
}

.pk-upsell-card__back:focus-visible {
	outline: 2px solid var(--samurai-gold);
	outline-offset: 3px;
}

/* Services listing */

.sl-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: 62vh;
	overflow: hidden;
	background: #000;
}

.sl-hero > img {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sl-hero__overlay {
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		radial-gradient(circle at 50% 40%, rgba(215, 173, 99, .18), transparent 52%),
		linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .42));
}

.sl-hero__content {
	position: relative;
	z-index: 3;
	padding: 100px 0;
	text-align: center;
}

.sl-hero h1 {
	max-width: 950px;
	margin: 0 auto 22px;
	font-size: clamp(46px, 7vw, 96px);
	font-weight: 950;
	letter-spacing: -.08em;
	line-height: .92;
}

.sl-hero__content > p:last-child {
	max-width: 680px;
	margin: 0 auto;
	color: var(--samurai-text-soft);
	font-size: 18px;
	line-height: 1.65;
}

.sl-listing {
	padding: 92px 0;
}

.sl-section__top h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: .98;
}

.sl-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.sl-filter-chip {
	min-height: 36px;
	padding: 0 14px;
	border: 1px solid var(--samurai-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, .035);
	color: rgba(255, 255, 255, .68);
	font-size: 12px;
	font-weight: 750;
	cursor: pointer;
}

.sl-filter-chip:hover,
.sl-filter-chip.is-active {
	border-color: var(--samurai-border-gold);
	background: var(--samurai-gold-soft);
	color: #fff;
}

.sl-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.sl-service-card {
	position: relative;
	isolation: isolate;
	min-height: 560px;
	overflow: hidden;
	border-radius: var(--samurai-radius-lg);
	background: #111;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.sl-service-card[hidden] {
	display: none;
}

.sl-service-card__image {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}

.sl-service-card:hover .sl-service-card__image {
	transform: scale(1.045);
}

.sl-service-card__overlay {
	position: absolute;
	z-index: 2;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .6) 43%, rgba(0, 0, 0, .05) 76%);
}

.sl-service-card__top {
	position: absolute;
	z-index: 5;
	top: 18px;
	right: 18px;
	left: 18px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.sl-service-card__difficulty,
.sl-service-card__badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, .26);
	border-radius: 999px;
	background: rgba(0, 0, 0, .4);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.sl-service-card__badge {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
}

.sl-service-card__content {
	position: absolute;
	z-index: 4;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 26px;
}

.sl-service-card__title {
	margin: 0 0 10px;
	font-size: clamp(27px, 2.7vw, 38px);
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: .98;
}

.sl-service-card__desc {
	display: -webkit-box;
	min-height: 48px;
	margin: 0 0 20px;
	overflow: hidden;
	color: var(--samurai-text-soft);
	font-size: 13px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sl-service-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.sl-service-card__meta {
	display: flex;
	flex-direction: column;
	color: var(--samurai-text-soft);
	font-size: 12px;
}

.sl-service-card__meta strong {
	color: var(--samurai-gold);
}

.sl-service-card__button {
	padding: 11px 15px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: var(--samurai-gold);
	color: #111;
	font-size: 10px;
	font-weight: 850;
	text-transform: uppercase;
}

.sl-product-preview {
	position: absolute;
	z-index: 20;
	inset: 0;
	visibility: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background: #111;
	transform: translateX(-105%);
	transition: transform .42s ease, visibility 0s .42s;
}

.sl-product-preview.is-active {
	visibility: visible;
	transform: translateX(0);
	transition-delay: 0s;
}

.sl-product-preview > button {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 9px 13px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.sl-product-preview > img {
	width: 65%;
	max-height: 240px;
	margin: 0 auto 25px;
	object-fit: contain;
}

.sl-product-preview h3 {
	margin: 0 0 10px;
	font-size: 32px;
	letter-spacing: -.05em;
}

.sl-product-preview p {
	color: var(--samurai-text-soft);
	font-size: 13px;
	line-height: 1.6;
}

.sl-product-preview > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--samurai-gold);
	font-weight: 850;
}

/* Single product */

.sp-product {
	background: #fff;
	color: #0b0b0b;
	font-family: Inter, Arial, Helvetica, sans-serif;
}

.sp-product a {
	color: inherit;
	text-decoration: none;
}

.sp-container {
	width: min(1440px, calc(100% - 70px));
	margin: 0 auto;
}

.sp-purchase {
	padding-bottom: 84px;
	background: #fff;
}

.sp-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 26px 0 24px;
	color: #6f6f6f;
	font-size: 13px;
}

.sp-purchase__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, .74fr);
	align-items: start;
	gap: 70px;
}

.sp-gallery {
	position: sticky;
	top: 110px;
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 22px;
}

.sp-gallery__thumbs {
	display: grid;
	align-content: start;
	gap: 14px;
}

.sp-gallery__thumbs button {
	width: 88px;
	aspect-ratio: 1;
	padding: 0;
	overflow: hidden;
	border: 1px solid #d8d8d8;
	background: #e8e8e8;
	cursor: pointer;
}

.sp-gallery__thumbs button:hover,
.sp-gallery__thumbs button[aria-current="true"] {
	border-color: var(--samurai-burgundy);
}

.sp-gallery__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-gallery__main {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 620px;
	overflow: hidden;
	border: 1px solid #d7d7d7;
	background: #e9e9e9;
}

.sp-gallery__main img {
	width: 76%;
	max-height: 540px;
	object-fit: contain;
	filter: drop-shadow(0 28px 26px rgba(0, 0, 0, .15));
}

.sp-summary {
	padding-top: 4px;
}

.sp-summary__brand {
	margin: 0 0 28px;
	color: #777;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .28em;
	text-transform: uppercase;
}

.sp-summary h1 {
	margin: 0 0 28px;
	font-size: clamp(42px, 4.3vw, 66px);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: .96;
}

.sp-summary__price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 28px;
	font-size: 27px;
	font-weight: 850;
}

.sp-summary__price del {
	color: #777;
	font-size: 17px;
}

.sp-summary__excerpt {
	max-width: 610px;
	margin-bottom: 34px;
	color: #555;
	font-size: 16px;
	line-height: 1.72;
}

.sp-add-to-cart form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 28px;
}

.sp-add-to-cart .quantity input {
	width: 80px;
	min-height: 54px;
	border: 1px solid #ccc;
	text-align: center;
}

.sp-add-to-cart .single_add_to_cart_button {
	min-height: 54px;
	padding: 0 32px;
	border: 0;
	background: var(--samurai-burgundy);
	color: #fff;
	font-weight: 850;
	text-transform: uppercase;
	cursor: pointer;
}

.sp-add-to-cart table.variations {
	width: 100%;
	margin-bottom: 15px;
}

.sp-add-to-cart table.variations select {
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #ccc;
}

.sp-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 26px;
}

.sp-badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--samurai-gold);
	border-radius: 999px;
	background: #fff8eb;
	color: #4a3212;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.sp-badge--burgundy {
	border-color: var(--samurai-burgundy);
	background: var(--samurai-burgundy);
	color: #fff;
}

.sp-badge--outline {
	border-color: #bbb;
	background: transparent;
	color: #333;
}

.sp-tabs {
	margin-top: 65px;
	border-top: 1px solid #ddd;
}

.sp-tabs__list {
	display: flex;
	gap: 34px;
	border-bottom: 1px solid #ddd;
}

.sp-tabs__list button {
	position: relative;
	padding: 22px 0;
	border: 0;
	background: none;
	color: #777;
	font-weight: 800;
	cursor: pointer;
}

.sp-tabs__list button[aria-selected="true"] {
	color: #111;
}

.sp-tabs__list button[aria-selected="true"]::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--samurai-burgundy);
	content: "";
}

.sp-tabs__panel {
max-width: 950px;
	padding: 30px 0 0;
	color: #555;
	line-height: 1.75;
}

.sp-section {
	padding: 94px 0;
	background: var(--samurai-bg);
	color: #fff;
}

.sp-section--soft {
	background: var(--samurai-bg-soft);
}

.sp-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top: 44px;
}

.sp-benefits article {
	min-height: 230px;
	padding: 26px;
	border: 1px solid var(--samurai-border);
	border-radius: var(--samurai-radius-md);
	background: var(--samurai-card);
}

.sp-benefits article > span {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 38px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 50%;
	color: var(--samurai-gold);
}

.sp-benefits svg {
	width: 24px;
	height: 24px;
}

.sp-benefits h3 {
	margin: 0 0 10px;
	font-size: 21px;
}

.sp-benefits p {
	margin: 0;
	color: var(--samurai-text-muted);
	font-size: 14px;
	line-height: 1.65;
}

.sp-compatibility,
.sp-specifications {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 80px;
}

.sp-compatibility h3 {
	margin: 0 0 14px;
	color: var(--samurai-text-soft);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sp-compatibility h3:not(:first-child) {
	margin-top: 34px;
}

.sp-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sp-chips span {
	padding: 11px 16px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: var(--samurai-gold-soft);
	font-size: 12px;
	font-weight: 800;
}

.sp-how {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 70px;
}

.sp-how__image {
	min-height: 600px;
	overflow: hidden;
	border-radius: var(--samurai-radius-lg);
	background: #222;
}

.sp-how__image img {
	width: 100%;
	height: 100%;
	min-height: 600px;
	object-fit: cover;
}

.sp-how > div:last-child > p {
	color: var(--samurai-text-muted);
	line-height: 1.7;
}

.sp-how ol {
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.sp-how li {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 18px;
	padding: 20px 0;
	border-top: 1px solid var(--samurai-border);
}

.sp-how li > span {
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
}

.sp-how h3 {
	margin: 0 0 7px;
}

.sp-how li p {
	margin: 0;
	color: var(--samurai-text-muted);
	font-size: 14px;
}

.sp-specifications dl {
	margin: 0;
}

.sp-specifications dl > div {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 25px;
	padding: 18px 0;
	border-bottom: 1px solid var(--samurai-border);
}

.sp-specifications dt {
	color: var(--samurai-text-muted);
}

.sp-specifications dd {
	margin: 0;
	font-weight: 800;
}

.sp-set-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 44px;
}

.sp-set-card {
	overflow: hidden;
	border: 1px solid var(--samurai-border);
	border-radius: 18px;
	background: var(--samurai-card);
}

.sp-set-card > a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	background: rgba(255, 255, 255, .04);
}

.sp-set-card img {
	width: 75%;
	max-height: 210px;
	object-fit: contain;
}

.sp-set-card > div {
	padding: 20px;
}

.sp-set-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.2;
}

.sp-set-card > div > span {
	display: block;
	margin-bottom: 14px;
	color: var(--samurai-gold);
	font-weight: 850;
}

.sp-set-card__button {
	display: inline-flex;
	padding: 10px 14px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: var(--samurai-gold);
	color: #111;
	font-size: 10px;
	font-weight: 850;
	text-transform: uppercase;
	cursor: pointer;
}

.sp-trust {
	padding: 35px 0;
	background: var(--samurai-burgundy);
	color: #fff;
}

.sp-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 25px;
}

.sp-trust__grid > div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.sp-trust__grid strong {
	font-size: 13px;
	text-transform: uppercase;
}

.sp-trust__grid span {
	color: rgba(255, 255, 255, .7);
	font-size: 12px;
}

/* Single service */

.ss-hero {
	position: relative;
	isolation: isolate;
	min-height: 780px;
	overflow: hidden;
	background: #000;
}

.ss-hero__bg,
.ss-cta__bg {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ss-hero__overlay,
.ss-cta::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		radial-gradient(circle at 68% 35%, rgba(215, 173, 99, .16), transparent 36%),
		linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .58) 58%, rgba(0, 0, 0, .2)),
		linear-gradient(0deg, rgba(0, 0, 0, .82), transparent 50%);
	content: "";
}

.ss-hero__content {
	position: relative;
	z-index: 3;
	padding: 150px 0 100px;
}

.ss-hero__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}

.ss-hero__difficulty,
.ss-hero__badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 999px;
	background: rgba(0, 0, 0, .32);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.ss-hero__badge {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
}

.ss-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: end;
	gap: 70px;
}

.ss-hero__title {
	max-width: 900px;
	margin: 0 0 20px;
	font-size: clamp(58px, 8vw, 112px);
	font-weight: 950;
	letter-spacing: -.09em;
	line-height: .86;
}

.ss-hero__desc {
	max-width: 690px;
	margin: 0 0 28px;
	color: var(--samurai-text-soft);
	font-size: 18px;
	line-height: 1.65;
}

.ss-hero__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.ss-hero__duration,
.ss-hero__price {
	font-size: 15px;
	font-weight: 850;
}

.ss-hero__price {
	color: var(--samurai-gold);
}

.ss-hero__products {
	margin-top: 30px;
}

.ss-hero__products-label {
	display: block;
	margin-bottom: 10px;
	color: var(--samurai-text-muted);
	font-size: 10px;
	text-transform: uppercase;
}

.ss-product-thumbs {
	display: flex;
	gap: 9px;
}

.ss-product-thumb {
	width: 46px;
	height: 46px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
}

.ss-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ss-hero__side-note {
	padding: 24px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: var(--samurai-radius-md);
	background: rgba(0, 0, 0, .4);
	backdrop-filter: blur(12px);
}

.ss-hero__side-note strong {
	display: block;
	margin-bottom: 12px;
	color: var(--samurai-gold);
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ss-hero__side-note span {
	color: var(--samurai-text-soft);
	font-size: 13px;
	line-height: 1.65;
}

.ss-quick {
	position: relative;
	z-index: 5;
	margin-top: -44px;
}

.ss-quick__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid var(--samurai-border);
	border-radius: var(--samurai-radius-md);
	background: var(--samurai-card);
	box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
}

.ss-quick__item {
	display: flex;
	flex-direction: column;
	min-height: 150px;
	padding: 27px;
	border-right: 1px solid var(--samurai-border);
}

.ss-quick__item:last-child {
	border-right: 0;
}

.ss-quick__label {
	margin-bottom: auto;
	color: var(--samurai-text-muted);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ss-quick__value {
	margin-bottom: 5px;
	font-size: 20px;
}

.ss-quick__small {
	color: var(--samurai-text-muted);
	font-size: 11px;
}

.ss-description {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 80px;
}

.ss-intro {
	color: var(--samurai-text-muted);
	line-height: 1.7;
}

.ss-description__content {
	color: var(--samurai-text-soft);
	font-size: 16px;
	line-height: 1.75;
}

.ss-description__content ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.ss-description__content li {
	padding: 14px;
	border: 1px solid var(--samurai-border);
	border-radius: 12px;
}

.ss-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 46px 0 0;
	padding: 0;
	list-style: none;
}

.ss-process-step {
	min-height: 260px;
	padding: 28px;
	border-top: 1px solid var(--samurai-border-gold);
	background: linear-gradient(180deg, var(--samurai-gold-soft), transparent);
}

.ss-process-step__number {
	display: block;
	margin-bottom: 70px;
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
}

.ss-process-step h3 {
	margin: 0 0 10px;
	font-size: 23px;
}

.ss-process-step p {
	margin: 0;
	color: var(--samurai-text-muted);
	font-size: 14px;
	line-height: 1.65;
}

.ss-diy {
	margin-top: 45px;
	border-top: 1px solid var(--samurai-border);
}

.ss-diy-item {
	border-bottom: 1px solid var(--samurai-border);
}

.ss-diy-item__button {
	display: grid;
	grid-template-columns: 60px 1fr 34px;
	align-items: center;
	width: 100%;
	padding: 25px 0;
	border: 0;
	background: none;
	color: #fff;
	text-align: left;
	cursor: pointer;
}

.ss-diy-item__number {
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
}

.ss-diy-item__title {
	font-size: clamp(21px, 2.5vw, 31px);
	font-weight: 850;
	letter-spacing: -.04em;
}

.ss-diy-item__icon {
	color: var(--samurai-gold);
	font-size: 26px;
	text-align: center;
}

.ss-diy-item__panel[hidden] {
	display: none;
}

.ss-diy-item__inner {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 40px;
	padding: 0 0 36px 60px;
}

.ss-diy-item__image {
	overflow: hidden;
	border-radius: 18px;
}

.ss-diy-item__image img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
}

.ss-diy-item__text {
	color: var(--samurai-text-soft);
	line-height: 1.7;
}

.ss-step-products-title {
	margin: 25px 0 15px;
	color: #fff;
}

.ss-step-products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.ss-product-card {
	padding: 13px;
	border: 1px solid var(--samurai-border);
	border-radius: 14px;
	background: var(--samurai-card);
}

.ss-product-card__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 130px;
}

.ss-product-card__image-wrap img {
	width: 80%;
	max-height: 120px;
	object-fit: contain;
}

.ss-product-card__title {
	margin: 10px 0 6px;
	font-size: 13px;
	line-height: 1.25;
}

.ss-product-card__price {
	margin: 0 0 10px;
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
}

.ss-product-card__button {
	display: inline-flex;
	padding: 8px 10px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: var(--samurai-gold);
	color: #111;
	font-size: 9px;
	font-weight: 850;
	text-transform: uppercase;
	cursor: pointer;
}

.ss-cta {
	position: relative;
	isolation: isolate;
	min-height: 640px;
	overflow: hidden;
}

.ss-cta__content {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 80px;
	min-height: 640px;
}

.ss-cta h2 {
	max-width: 850px;
	margin: 0 0 20px;
	font-size: clamp(48px, 7vw, 94px);
	font-weight: 950;
	letter-spacing: -.085em;
	line-height: .9;
}

.ss-cta p:not(.ss-eyebrow) {
	max-width: 650px;
	color: var(--samurai-text-soft);
	line-height: 1.7;
}

.ss-trust-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
	margin-top: 36px;
}

.ss-trust-item {
	display: flex;
	flex-direction: column;
}

.ss-trust-item strong {
	font-size: 11px;
	text-transform: uppercase;
}

.ss-trust-item > span {
	color: var(--samurai-text-muted);
	font-size: 10px;
}

/* Site-wide multibox menu */

.samurai-menu-open,
.samurai-modal-open {
	overflow: hidden;
}

.samurai-multibox-menu {
	position: fixed;
	z-index: 9990;
	inset: 0;
	visibility: hidden;
	pointer-events: none;
}

.samurai-multibox-menu__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .7);
	opacity: 0;
	transition: opacity .35s ease;
}

.samurai-multibox-menu__grid {
	position: relative;
	display: grid;
	grid-template-columns: 20% 30% 25% 25%;
	grid-template-rows: 60% 40%;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #090909 url("../images/menu-background.png") center / cover no-repeat;
}

.samurai-multibox-menu__panel {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .06);
	background: #111;
	color: #fff;
	opacity: 0;
	transform: translateY(105%);
	transition: transform .55s cubic-bezier(.2, .72, .18, 1), opacity .35s ease;
}

.samurai-multibox-menu__panel--nav {
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(-105%);
}

.samurai-multibox-menu__panel--image {
	grid-row: 1 / 3;
	transform: translateY(-105%);
}

.samurai-multibox-menu__panel--objects {
	grid-column: 3 / 5;
	padding: 70px;
	transform: translateX(105%);
}

.samurai-multibox-menu__panel--cta {
	grid-column: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 38px;
	background: var(--samurai-gold);
	color: #111;
}

.samurai-multibox-menu__panel--quote {
	grid-column: 4;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 38px;
	background: var(--samurai-burgundy);
}

.samurai-multibox-menu.is-open {
	visibility: visible;
	pointer-events: auto;
}

.samurai-multibox-menu.is-open .samurai-multibox-menu__backdrop {
	opacity: 1;
}

.samurai-multibox-menu.is-open .samurai-multibox-menu__panel {
	opacity: 1;
	transform: none;
}

.samurai-multibox-menu.is-open .samurai-multibox-menu__panel:nth-child(2) {
	transition-delay: .05s;
}

.samurai-multibox-menu.is-open .samurai-multibox-menu__panel:nth-child(3) {
	transition-delay: .1s;
}

.samurai-multibox-menu.is-open .samurai-multibox-menu__panel:nth-child(4) {
	transition-delay: .15s;
}

.samurai-multibox-menu__panel--nav nav {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.samurai-multibox-menu__panel--nav nav a {
	font-size: clamp(28px, 3.2vw, 56px);
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: 1;
}

.samurai-multibox-menu__panel--nav nav a:hover,
.samurai-multibox-menu__panel--objects nav a:hover {
	color: var(--samurai-gold);
}

.samurai-multibox-menu__vertical {
	position: absolute;
	margin: 0;
	color: var(--samurai-text-muted);
	font-size: 9px;
	letter-spacing: .18em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.samurai-multibox-menu__vertical--top {
	top: 32px;
	left: 24px;
}

.samurai-multibox-menu__vertical--bottom {
	right: 24px;
	bottom: 32px;
	transform: rotate(180deg);
}

.samurai-multibox-menu__panel--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.samurai-multibox-menu__panel--image:hover img {
	transform: scale(1.035);
}

.samurai-multibox-menu__panel--image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .85), transparent 60%);
	content: "";
}

.samurai-multibox-menu__panel--image span {
	position: absolute;
	z-index: 2;
	right: 30px;
	bottom: 30px;
	left: 30px;
	font-size: 16px;
	font-weight: 850;
}

.samurai-multibox-menu__panel--objects > p {
	margin: 0 0 45px;
	color: var(--samurai-gold);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.samurai-multibox-menu__panel--objects nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 35px;
}

.samurai-multibox-menu__panel--objects nav a {
	padding-bottom: 14px;
	border-bottom: 1px solid var(--samurai-border);
	font-size: clamp(20px, 2vw, 31px);
	font-weight: 850;
	letter-spacing: -.04em;
}

.samurai-multibox-menu__panel--cta span,
.samurai-multibox-menu__panel--quote > span {
	margin-bottom: 16px;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.samurai-multibox-menu__panel--cta strong {
	max-width: 340px;
	font-size: clamp(25px, 2.7vw, 42px);
	letter-spacing: -.05em;
	line-height: 1.05;
}

.samurai-multibox-menu__panel--quote blockquote {
	margin: 0;
	font-size: clamp(22px, 2.4vw, 36px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.1;
}

.samurai-multibox-menu__close {
	position: absolute;
	z-index: 10;
	top: 24px;
	right: 24px;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	background: rgba(0, 0, 0, .3);
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.admin-bar .samurai-multibox-menu__close {
	top: 56px;
}

/* ACF-driven cinematic slider */

.samurai-cinematic-slider {
	position: relative;
	isolation: isolate;
	min-height: min(820px, 88vh);
	overflow: hidden;
	background: #050505;
	color: #fff;
}

.samurai-cinematic-slider__viewport,
.samurai-cinematic-slider__slide {
	position: absolute;
	inset: 0;
}

.samurai-cinematic-slider__slide {
	visibility: hidden;
	opacity: 0;
	transition: opacity .75s ease, transform .75s ease;
}

.samurai-cinematic-slider[data-effect="slide"] .samurai-cinematic-slider__slide {
	transform: translateX(8%);
}

.samurai-cinematic-slider__slide.is-active {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.samurai-cinematic-slider__slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.samurai-cinematic-slider[data-zoom="true"] .samurai-cinematic-slider__slide.is-active > img {
	animation: samurai-slider-zoom 9s linear both;
}

.samurai-cinematic-slider__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, var(--slider-overlay, .45)), rgba(0, 0, 0, .12)), linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 55%);
}

.samurai-cinematic-slider__content {
	position: absolute;
	z-index: 2;
	bottom: 110px;
	left: max(28px, calc((100% - 1280px) / 2));
	max-width: 820px;
}

.samurai-cinematic-slider__content > p {
	margin: 0 0 17px;
	color: var(--samurai-gold);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.samurai-cinematic-slider__content h2 {
	margin: 0 0 20px;
	font-size: clamp(52px, 8vw, 112px);
	font-weight: 950;
	letter-spacing: -.09em;
	line-height: .86;
}

.samurai-cinematic-slider__content > div {
	max-width: 620px;
	color: rgba(255, 255, 255, .74);
	font-size: 17px;
	line-height: 1.65;
}

.samurai-cinematic-slider__content > a {
	display: inline-flex;
	margin-top: 24px;
	padding: 13px 20px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: var(--samurai-gold);
	color: #111;
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.samurai-cinematic-slider__controls {
	position: absolute;
	z-index: 5;
	right: max(28px, calc((100% - 1280px) / 2));
	bottom: 38px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.samurai-cinematic-slider__controls > button {
	width: 43px;
	height: 43px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	background: rgba(0, 0, 0, .3);
	color: #fff;
	cursor: pointer;
}

.samurai-cinematic-slider__controls [role="tablist"] {
	display: flex;
	gap: 8px;
}

.samurai-cinematic-slider__controls [role="tab"] {
	width: 28px;
	height: 3px;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, .35);
	cursor: pointer;
}

.samurai-cinematic-slider__controls [role="tab"][aria-selected="true"] {
	background: var(--samurai-gold);
}

@keyframes samurai-slider-zoom {
	from { transform: scale(1); }
	to { transform: scale(1.07); }
}

@media (max-width: 1100px) {
	.hp-products-grid,
	.hp-experience-grid,
	.hp-steps,
	.sp-benefits,
	.sp-set-grid,
	.ss-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hp-services-grid,
	.hp-library-grid,
	.pk-product-grid,
	.sl-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-purchase__grid {
		grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr);
		gap: 40px;
	}

	.sp-gallery__main {
		min-height: 520px;
	}

	.ss-hero__inner,
	.ss-description,
	.sp-compatibility,
	.sp-specifications,
	.sp-how {
		gap: 45px;
	}

	.ss-quick__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ss-quick__item:nth-child(2) {
		border-right: 0;
	}

	.ss-quick__item:nth-child(-n+2) {
		border-bottom: 1px solid var(--samurai-border);
	}

	.samurai-multibox-menu__grid {
		grid-template-columns: 28% 35% 37%;
		grid-template-rows: 55% 45%;
	}

	.samurai-multibox-menu__panel--objects {
		grid-column: 3;
		grid-row: 1;
		padding: 50px 35px;
	}

	.samurai-multibox-menu__panel--cta {
		grid-column: 3;
		grid-row: 2;
	}

	.samurai-multibox-menu__panel--quote {
		display: none;
	}

	.samurai-multibox-menu__panel--objects nav {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.hp-container,
	.sl-container,
	.ss-container {
		width: min(100% - 34px, var(--samurai-container));
	}

	.sp-container {
		width: calc(100% - 34px);
	}

	.hp-section,
	.ss-section,
	.sp-section,
	.sl-listing {
		padding: 70px 0;
	}

	.hp-section__top,
	.sl-section__top {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 34px;
	}

	.hp-section-intro,
	.sl-section__top > p {
		text-align: left;
	}

	.hp-hero {
		min-height: 760px;
	}

	.hp-hero__content {
		padding: 160px 0 70px;
	}

	.hp-hero__title {
		font-size: clamp(54px, 18vw, 78px);
	}

	.hp-hero__buttons,
	.hp-cta__buttons {
		flex-direction: column;
	}

	.hp-button {
		width: 100%;
	}

	.hp-products-grid,
	.hp-services-grid,
	.hp-experience-grid,
	.hp-steps,
	.hp-library-grid,
	.pk-product-grid,
	.sl-services-grid,
	.sp-benefits,
	.sp-set-grid,
	.ss-process,
	.ss-trust-row,
	.sp-trust__grid {
		grid-template-columns: 1fr;
	}

	.hp-product-card,
	.hp-service-card,
	.sl-service-card {
		min-height: 520px;
	}

	.hp-library-card {
		grid-template-columns: 1fr;
	}

	.hp-library-card__image {
		height: 220px;
	}

	.hp-step {
		min-height: 200px;
	}

	.hp-step__number {
		margin-bottom: 42px;
	}

	.hp-cta,
	.hp-cta__content {
		min-height: 620px;
	}

	.pk-product-card {
		min-height: 0;
	}

	.pk-product-card__content,
	.pk-upsell-card__content {
		padding: 23px;
	}

	.pk-product-card__top-layer {
		top: 14px;
		right: 14px;
		left: 14px;
	}

	.pk-product-card__upsells {
		max-width: calc(100% - 78px);
	}

	.pk-product-card__thumb-button {
		flex-basis: 37px;
		width: 37px;
		height: 37px;
	}

	.pk-product-card__badge,
	.pk-upsell-card__badge {
		min-height: 26px;
		padding: 0 9px;
		border-radius: 9px;
		font-size: 8px;
	}

	.pk-upsell-card__top {
		top: 14px;
		right: 14px;
	}

	.pk-upsell-card__back {
		top: 54px;
		right: 14px;
	}

	.sl-hero {
		min-height: 560px;
	}

	.sl-hero h1 {
		font-size: clamp(46px, 15vw, 68px);
	}

	.sp-purchase {
		padding-bottom: 60px;
	}

	.sp-purchase__grid,
	.sp-compatibility,
	.sp-specifications,
	.sp-how,
	.ss-hero__inner,
	.ss-description,
	.ss-diy-item__inner,
	.ss-cta__content {
		grid-template-columns: 1fr;
	}

	.sp-gallery {
		position: static;
		grid-template-columns: 1fr;
	}

	.sp-gallery__thumbs {
		grid-row: 2;
		grid-template-columns: repeat(4, 72px);
		overflow-x: auto;
	}

	.sp-gallery__thumbs button {
		width: 72px;
	}

	.sp-gallery__main {
		min-height: 420px;
	}

	.sp-summary {
		padding-top: 25px;
	}

	.sp-summary h1 {
		font-size: 45px;
	}

	.sp-tabs__list {
		gap: 20px;
		overflow-x: auto;
	}

	.sp-benefits {
		gap: 14px;
	}

	.sp-how__image,
	.sp-how__image img {
		min-height: 420px;
	}

	.ss-hero {
		min-height: 800px;
	}

	.ss-hero__top {
		margin-bottom: 90px;
	}

	.ss-hero__title {
		font-size: clamp(55px, 17vw, 76px);
	}

	.ss-hero__side-note {
		display: none;
	}

	.ss-quick {
		margin-top: -25px;
	}

	.ss-quick__grid {
		grid-template-columns: 1fr;
	}

	.ss-quick__item,
	.ss-quick__item:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--samurai-border);
	}

	.ss-description__content ul {
		grid-template-columns: 1fr;
	}

	.ss-diy-item__button {
		grid-template-columns: 42px 1fr 30px;
	}

	.ss-diy-item__inner {
		padding-left: 0;
	}

	.ss-step-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ss-cta__content {
		align-content: center;
		gap: 30px;
	}

	.ss-cta__content > .ss-button {
		width: 100%;
	}

	.samurai-multibox-menu__grid {
		grid-template-columns: 40% 60%;
		grid-template-rows: 58% 42%;
	}

	.samurai-multibox-menu__panel--nav {
		grid-column: 1;
		grid-row: 1 / 3;
	}

	.samurai-multibox-menu__panel--image {
		grid-column: 2;
		grid-row: 1;
	}

	.samurai-multibox-menu__panel--objects {
		grid-column: 2;
		grid-row: 2;
		padding: 28px 20px;
	}

	.samurai-multibox-menu__panel--cta,
	.samurai-multibox-menu__panel--quote {
		display: none;
	}

	.samurai-multibox-menu__panel--nav nav {
		gap: 15px;
	}

	.samurai-multibox-menu__panel--nav nav a {
		font-size: 26px;
	}

	.samurai-multibox-menu__panel--objects > p {
		margin-bottom: 20px;
	}

	.samurai-multibox-menu__panel--objects nav {
		gap: 9px;
	}

	.samurai-multibox-menu__panel--objects nav a {
		padding-bottom: 8px;
		font-size: 17px;
	}

	.samurai-multibox-menu__close {
		top: 14px;
		right: 14px;
		width: 42px;
		height: 42px;
	}

	.admin-bar .samurai-multibox-menu__close {
		top: 60px;
	}

	.samurai-cinematic-slider {
		min-height: 720px;
	}

	.samurai-cinematic-slider__content {
		right: 20px;
		bottom: 125px;
		left: 20px;
	}

	.samurai-cinematic-slider__content h2 {
		font-size: clamp(52px, 17vw, 76px);
	}

	.samurai-cinematic-slider__controls {
		right: 20px;
		bottom: 35px;
		left: 20px;
		justify-content: space-between;
	}
}

/* Reusable global trust strip */

.samurai-trust-strip {
	border-block: 1px solid var(--samurai-border-gold);
	background:
		linear-gradient(135deg, rgba(215, 173, 99, .08), transparent 38%),
		var(--samurai-bg-soft);
	color: var(--samurai-text);
}

.samurai-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	padding-block: 24px;
}

.samurai-trust-strip__grid > div {
	display: grid;
	align-content: start;
	gap: 7px;
	min-width: 0;
	padding: 16px 28px;
	border-inline-start: 1px solid var(--samurai-border);
}

.samurai-trust-strip__grid > div:first-child {
	border-inline-start: 0;
}

.samurai-trust-strip__grid strong {
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .12em;
	line-height: 1.35;
	text-transform: uppercase;
}

.samurai-trust-strip__grid span {
	color: var(--samurai-text-soft);
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 680px) {
	.samurai-trust-strip__grid {
		grid-template-columns: 1fr 1fr;
		padding-block: 14px;
	}

	.samurai-trust-strip__grid > div {
		padding: 16px;
		border-block-start: 1px solid var(--samurai-border);
	}

	.samurai-trust-strip__grid > div:nth-child(-n + 2) {
		border-block-start: 0;
	}

	.samurai-trust-strip__grid > div:nth-child(odd) {
		border-inline-start: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hp-product-card__bg,
	.hp-service-card__image,
	.pk-product-card__background,
	.pk-upsell-card__background,
	.pk-upsell-card,
	.sl-service-card__image,
	.sl-product-preview,
	.samurai-multibox-menu__panel,
	.samurai-cinematic-slider__slide {
		transition-duration: .01ms !important;
	}

	.samurai-cinematic-slider[data-zoom="true"] .samurai-cinematic-slider__slide.is-active > img {
		animation: none;
	}
}

/* Single service 2.1 — supplied HTML contract */

.ss-service .ss-container {
	width: min(1180px, calc(100% - 56px));
}

.ss-service .ss-section {
	padding: 92px 0;
	background: var(--samurai-bg);
}

.ss-service .ss-section--soft {
	background: var(--samurai-bg-soft);
}

.ss-service .ss-eyebrow {
	margin: 0 0 12px;
	color: var(--samurai-gold);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.ss-service .ss-section-title {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(34px, 4.4vw, 58px);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: .96;
}

.ss-service .ss-section-title::after {
	display: none;
}

.ss-service .ss-intro {
	max-width: 700px;
	margin: 0;
	color: var(--samurai-text-soft);
	font-size: 16px;
	line-height: 1.75;
}

.ss-service .ss-button {
	width: auto;
	border-color: var(--samurai-border-gold);
	background: rgba(215, 173, 99, .08);
	color: #fff;
}

.ss-service .ss-button:hover {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
}

.ss-service .ss-button--solid {
	border-color: var(--samurai-burgundy);
	background: var(--samurai-burgundy);
	color: #fff;
}

.ss-service .ss-button--solid:hover {
	border-color: #6f001c;
	background: #6f001c;
	color: #fff;
}

.ss-service .ss-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: 94vh;
	overflow: hidden;
	background: #000;
}

.ss-service .ss-hero__bg {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
}

.ss-service .ss-hero::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		radial-gradient(circle at 68% 32%, rgba(215, 173, 99, .18) 0%, rgba(215, 173, 99, .04) 30%, transparent 52%),
		linear-gradient(to top, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .82) 24%, rgba(0, 0, 0, .55) 50%, rgba(0, 0, 0, .12) 78%, transparent 100%);
	content: "";
}

.ss-service .ss-hero__top {
	position: absolute;
	z-index: 4;
	top: 28px;
	right: 28px;
	left: 28px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin: 0;
	pointer-events: none;
}

.ss-service .ss-hero__difficulty {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(215, 173, 99, .5);
	border-radius: 999px;
	background: rgba(0, 0, 0, .24);
	color: rgba(255, 255, 255, .86);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .14em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.ss-service .ss-hero__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 18px 46px rgba(0, 0, 0, .3);
	color: #111;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.ss-service .ss-hero__content {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 0 0 74px;
}

.ss-service .ss-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 60px;
}

.ss-service .ss-hero__title {
	max-width: 880px;
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(50px, 8vw, 108px);
	font-weight: 950;
	letter-spacing: -.085em;
	line-height: .9;
}

.ss-service .ss-hero__desc {
	max-width: 720px;
	margin: 0 0 26px;
	overflow: hidden;
	color: rgba(255, 255, 255, .74);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ss-service .ss-hero__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 18px;
}

.ss-service .ss-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 18px;
}

.ss-service .ss-hero__duration {
	color: rgba(255, 255, 255, .74);
	font-size: 15px;
	font-weight: 750;
}

.ss-service .ss-hero__price {
	color: #fff;
	font-size: clamp(30px, 4vw, 50px);
	font-weight: 900;
	letter-spacing: -.05em;
	line-height: 1;
}

.ss-service .ss-hero__products {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 0;
}

.ss-service .ss-hero__products-label {
	display: inline;
	margin: 0;
	color: rgba(255, 255, 255, .54);
	font-size: 11px;
	font-weight: 600;
	text-transform: none;
}

.ss-service .ss-product-thumbs {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ss-service .ss-product-thumb {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .58);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ss-service .ss-product-thumb:hover {
	border-color: #fff;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, .12);
	transform: translateY(-2px);
}

.ss-service .ss-hero__side-note {
	width: 280px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 22px;
	background: rgba(255, 255, 255, .055);
	backdrop-filter: blur(14px);
}

.ss-service .ss-hero__side-note strong {
	margin-bottom: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
}

.ss-service .ss-hero__side-note span {
	display: block;
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
	line-height: 1.55;
}

.ss-service .ss-quick {
	position: relative;
	z-index: 5;
	margin-top: -42px;
}

.ss-service .ss-quick__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.ss-service .ss-quick__item {
	display: block;
	min-height: 116px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .11);
	border-radius: 22px;
	background: rgba(16, 16, 16, .86);
	box-shadow: 0 22px 50px rgba(0, 0, 0, .32);
	backdrop-filter: blur(16px);
}

.ss-service .ss-quick__label {
	display: block;
	margin-bottom: 10px;
	color: var(--samurai-gold);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .14em;
}

.ss-service .ss-quick__value {
	display: block;
	margin: 0;
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -.04em;
}

.ss-service .ss-quick__small {
	display: block;
	margin-top: 5px;
	color: rgba(255, 255, 255, .54);
	font-size: 13px;
	line-height: 1.4;
}

.ss-service .ss-description {
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	align-items: start;
	gap: 64px;
}

.ss-service .ss-description__content {
	max-width: 760px;
	color: var(--samurai-text-soft);
	font-size: 18px;
	line-height: 1.8;
}

.ss-service .ss-description__content p {
	margin: 0 0 22px;
}

.ss-service .ss-description__content > :last-child {
	margin-bottom: 0;
}

.ss-service .ss-process {
	display: block;
	margin: 48px 0 0;
	padding: 0;
	border-top: 1px solid var(--samurai-border);
	list-style: none;
}

.ss-service .ss-process-step {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 28px;
	min-height: 0;
	padding: 34px 0;
	border: 0;
	border-bottom: 1px solid var(--samurai-border);
	background: none;
}

.ss-service .ss-process-step__number {
	margin: 0;
	color: var(--samurai-gold);
	font-size: 38px;
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: 1;
}

.ss-service .ss-process-step h3 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: -.045em;
}

.ss-service .ss-process-step p {
	max-width: 780px;
	margin: 0;
	color: var(--samurai-text-soft);
	font-size: 15px;
	line-height: 1.75;
}

.ss-service .ss-diy {
	display: grid;
	gap: 14px;
	margin-top: 48px;
	border: 0;
}

.ss-service .ss-diy-item {
	overflow: hidden;
	border: 1px solid var(--samurai-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, .035);
}

.ss-service .ss-diy-item__heading {
	margin: 0;
	font: inherit;
}

.ss-service .ss-diy-item__button {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	width: 100%;
	min-height: 86px;
	padding: 0 26px;
	border: 0;
	background: transparent;
	color: #fff;
	text-align: left;
	cursor: pointer;
}

.ss-service .ss-diy-item__button:focus-visible,
.ss-service .ss-diy-gallery button:focus-visible,
.ss-service .ss-diy-gallery__viewport:focus-visible,
.ss-service .ss-step-product-card a:focus-visible,
.ss-service .ss-step-product-card button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.ss-service .ss-diy-item__number {
	color: var(--samurai-gold);
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ss-service .ss-diy-item__title {
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -.04em;
}

.ss-service .ss-diy-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(215, 173, 99, .42);
	border-radius: 50%;
	color: var(--samurai-gold);
	font-size: 24px;
	line-height: 1;
	transition: transform .25s ease;
}

.ss-service .ss-diy-item.is-open .ss-diy-item__icon {
	transform: rotate(45deg);
}

.ss-service .ss-diy-item__panel {
	padding: 0 26px 30px;
}

.ss-service .ss-diy-item__panel[hidden] {
	display: none;
}

.ss-service .ss-diy-item__inner {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: stretch;
	gap: 28px;
	padding: 4px 0 0;
}

.ss-service .ss-diy-item__inner--no-media {
	grid-template-columns: 1fr;
}

.ss-service .ss-diy-gallery {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border-radius: 20px;
	background: #111;
}

.ss-service .ss-diy-gallery__viewport,
.ss-service .ss-diy-gallery__slides,
.ss-service .ss-diy-gallery__slide {
	width: 100%;
	height: 100%;
	min-height: 260px;
}

.ss-service .ss-diy-gallery__slide {
	margin: 0;
}

.ss-service .ss-diy-gallery__slide[hidden] {
	display: none;
}

.ss-service .ss-diy-gallery__slide img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	opacity: .94;
}

.ss-service .ss-diy-gallery__controls {
	position: absolute;
	z-index: 2;
	right: 14px;
	bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
	background: rgba(0, 0, 0, .72);
	backdrop-filter: blur(12px);
}

.ss-service .ss-diy-gallery__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-size: 25px;
	cursor: pointer;
}

.ss-service .ss-diy-gallery__status {
	min-width: 46px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.ss-service .ss-diy-gallery__dots {
	position: absolute;
	z-index: 2;
	bottom: 1px;
	left: 1px;
	display: flex;
	gap: 0;
}

.ss-service .ss-diy-gallery__dots button {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.ss-service .ss-diy-gallery__dots button::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border: 1px solid #fff;
	border-radius: 50%;
	background: transparent;
	content: "";
	transform: translate(-50%, -50%);
}

.ss-service .ss-diy-gallery__dots button[aria-pressed="true"]::after {
	background: #fff;
}

.ss-service .ss-diy-item__text {
	align-self: center;
	color: var(--samurai-text-soft);
	font-size: 15px;
	line-height: 1.75;
}

.ss-service .ss-diy-item__text p {
	margin: 0 0 16px;
}

.ss-service .ss-diy-item__text > :last-child {
	margin-bottom: 0;
}

.ss-service .ss-diy-item__text ul,
.ss-service .ss-diy-item__text ol {
	margin: 0;
	padding-left: 18px;
}

.ss-service .ss-diy-item__text li {
	margin-bottom: 9px;
}

.ss-service .ss-step-products-title {
	margin: 34px 0 0;
	color: var(--samurai-gold);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.ss-service .ss-step-products-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 22px;
}

.ss-service .ss-step-product-card {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	aspect-ratio: 1 / 1;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--samurai-border);
	border-radius: 24px;
	background: #111;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.ss-service .ss-step-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 18px;
	background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 65%);
}

.ss-service .ss-step-product-card__image img {
	width: 72%;
	height: 100%;
	max-height: 100%;
	object-fit: contain;
}

.ss-service .ss-step-product-card__content {
	padding: 17px;
	border-top: 1px solid var(--samurai-border);
	background: rgba(0, 0, 0, .42);
}

.ss-service .ss-step-product-card__title {
	margin: 0 0 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
}

.ss-service .ss-step-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ss-service .ss-step-product-card__price {
	color: #fff;
	font-size: 15px;
	font-weight: 850;
}

.ss-service .ss-step-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--samurai-border-gold);
	border-radius: 999px;
	background: rgba(215, 173, 99, .08);
	color: #fff;
	font-size: 11px;
	font-weight: 850;
	white-space: nowrap;
	cursor: pointer;
}

.ss-service .ss-step-product-card__button:hover {
	border-color: var(--samurai-gold);
	background: var(--samurai-gold);
	color: #111;
}

.ss-service .ss-step-product-card__button.is-in-cart {
	border-color: #d71920;
	background: #d71920;
	color: #fff;
}

.ss-service .ss-section--products .pk-product-grid {
	margin-top: 48px;
}

.ss-service #book-service {
	scroll-margin-top: 90px;
}

.ss-service .ss-cta {
	position: relative;
	isolation: isolate;
	min-height: 0;
	overflow: hidden;
	border: 1px solid var(--samurai-border);
	border-radius: 34px;
	background: #111;
}

.ss-service .ss-cta__bg {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .6;
}

.ss-service .ss-cta::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		radial-gradient(circle at 72% 32%, rgba(215, 173, 99, .2) 0%, rgba(215, 173, 99, .05) 32%, transparent 54%),
		linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .74) 48%, rgba(0, 0, 0, .48) 100%);
	content: "";
}

.ss-service .ss-cta__content {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 34px;
	min-height: 0;
	padding: 54px;
}

.ss-service .ss-cta h2 {
	max-width: none;
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(32px, 4vw, 58px);
	font-weight: 950;
	letter-spacing: -.075em;
	line-height: .96;
}

.ss-service .ss-cta p:not(.ss-eyebrow) {
	max-width: 680px;
	margin: 0;
	color: var(--samurai-text-soft);
	font-size: 16px;
	line-height: 1.7;
}

.ss-service .ss-trust-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 26px;
}

.ss-service .ss-trust-item {
	display: block;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 18px;
	background: rgba(255, 255, 255, .055);
}

.ss-service .ss-trust-item strong {
	display: block;
	margin-bottom: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-transform: none;
}

.ss-service .ss-trust-item > span {
	display: block;
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
	line-height: 1.45;
}

@media (max-width: 980px) {
	.ss-service .ss-hero__inner,
	.ss-service .ss-description,
	.ss-service .ss-diy-item__inner,
	.ss-service .ss-cta__content {
		grid-template-columns: 1fr;
	}

	.ss-service .ss-hero__side-note {
		display: none;
	}

	.ss-service .ss-quick__grid,
	.ss-service .pk-product-grid,
	.ss-service .ss-step-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ss-service .ss-trust-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ss-service .ss-container {
		width: min(100% - 30px, 1180px);
	}

	.ss-service .ss-section {
		padding: 66px 0;
	}

	.ss-service .ss-hero {
		min-height: 86vh;
	}

	.ss-service .ss-hero__top {
		top: 18px;
		right: 18px;
		left: 18px;
	}

	.ss-service .ss-hero__badge {
		width: 62px;
		height: 62px;
		font-size: 8px;
	}

	.ss-service .ss-hero__difficulty {
		min-height: 30px;
		padding: 0 11px;
		font-size: 9px;
	}

	.ss-service .ss-hero__content {
		padding-bottom: 44px;
	}

	.ss-service .ss-hero__desc {
		display: -webkit-box;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.ss-service .ss-hero__meta-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.ss-service .ss-button {
		width: 100%;
	}

	.ss-service .ss-quick {
		margin-top: 0;
		padding-top: 24px;
	}

	.ss-service .ss-quick__grid,
	.ss-service .pk-product-grid,
	.ss-service .ss-step-products-grid {
		grid-template-columns: 1fr;
	}

	.ss-service .ss-process-step {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ss-service .ss-diy-item__button {
		grid-template-columns: 1fr auto;
		gap: 12px;
		padding: 22px;
	}

	.ss-service .ss-diy-item__number {
		grid-column: 1 / -1;
	}

	.ss-service .ss-diy-item__panel {
		padding: 0 22px 26px;
	}

	.ss-service .ss-diy-gallery__controls {
		right: 8px;
		bottom: 8px;
	}

	.ss-service .ss-diy-gallery__dots {
		bottom: 14px;
		left: 12px;
	}

	.ss-service .ss-step-product-card__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.ss-service .ss-step-product-card__button {
		width: 100%;
	}

	.ss-service .ss-cta {
		border-radius: 26px;
	}

	.ss-service .ss-cta__content {
		padding: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ss-service .ss-diy-item__icon,
	.ss-service .ss-product-thumb {
		transition-duration: .01ms !important;
	}
}

/* Single product 3.0 — supplied Templates/html/single product.html contract. */

.sp-product {
	--sp-white: #fff;
	--sp-cream: #f7f6f3;
	--sp-light: #eee;
	--sp-ink: #0b0b0b;
	--sp-muted: #666;
	--sp-line: #ddd;
	--sp-dark: #090909;
	--sp-dark-soft: #111;
	--sp-card: #151515;
	--sp-gold: #d7ad63;
	--sp-burgundy: #9f0028;
	--sp-burgundy-dark: #6f001c;
	--sp-radius: 22px;
	--sp-container: 1440px;
	background: var(--sp-white);
	color: var(--sp-ink);
	font-family: Inter, Arial, Helvetica, sans-serif;
	overflow: clip;
}

.sp-product a {
	color: inherit;
	text-decoration: none;
}

.sp-product .sp-container {
	width: min(var(--sp-container), calc(100% - 70px));
	margin: 0 auto;
}

.sp-product-top,
.sp-product .sp-purchase {
	padding: 0 0 86px;
	background: var(--sp-white);
}

.sp-product .sp-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 26px 0 24px;
	color: #6f6f6f;
	font-size: 13px;
	letter-spacing: .03em;
}

.sp-product-layout,
.sp-product .sp-purchase__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, .74fr);
	gap: 70px;
	align-items: start;
}

.sp-product .sp-gallery {
	position: sticky;
	top: 116px;
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 22px;
}

.sp-product .sp-gallery--no-thumbs {
	grid-template-columns: minmax(0, 1fr);
}

.admin-bar .sp-product .sp-gallery {
	top: 148px;
}

.sp-product .sp-gallery__thumbs {
	display: grid;
	gap: 14px;
	align-content: start;
	max-height: 620px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.sp-product .sp-gallery__thumb,
.sp-product .sp-gallery__thumbs button {
	width: 88px;
	aspect-ratio: 1;
	padding: 0;
	overflow: hidden;
	border: 1px solid #d8d8d8;
	border-radius: 0;
	background: #e8e8e8;
	cursor: pointer;
	transition: border-color .2s ease, transform .2s ease;
}

.sp-product .sp-gallery__thumb:hover,
.sp-product .sp-gallery__thumb:focus-visible,
.sp-product .sp-gallery__thumb.is-active,
.sp-product .sp-gallery__thumbs button[aria-current="true"] {
	border-color: var(--sp-burgundy);
	transform: translateY(-1px);
}

.sp-product .sp-gallery__thumb img,
.sp-product .sp-gallery__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-product .sp-gallery__main {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 620px;
	overflow: hidden;
	border: 1px solid #d7d7d7;
	background: #e9e9e9;
}

.sp-product .sp-gallery__main img {
	position: relative;
	z-index: 1;
	width: 74%;
	height: auto;
	max-height: 78%;
	object-fit: contain;
	filter: drop-shadow(0 28px 26px rgba(0, 0, 0, .15));
}

.sp-product .sp-summary {
	min-width: 0;
	padding-top: 4px;
}

.sp-product .sp-brand,
.sp-product .sp-summary__brand {
	margin: 0 0 28px;
	color: #777;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .32em;
	text-transform: uppercase;
}

.sp-product .sp-title,
.sp-product .sp-summary h1 {
	margin: 0 0 28px;
	color: var(--sp-ink);
	font-size: clamp(42px, 4.3vw, 66px);
	font-weight: 850;
	letter-spacing: -.07em;
	line-height: .96;
}

.sp-product .sp-price,
.sp-product .sp-summary__price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 28px;
	font-size: 27px;
	font-weight: 800;
	letter-spacing: -.04em;
}

.sp-product .sp-price ins {
	order: 1;
	background: none;
	text-decoration: none;
}

.sp-product .sp-price del {
	order: 2;
	color: #777;
	font-size: 17px;
	font-weight: 650;
}

.sp-product .sp-short-desc,
.sp-product .sp-summary__excerpt {
	max-width: 610px;
	margin: 0 0 34px;
	color: #4e4e4e;
	font-size: 20px;
	line-height: 1.55;
	letter-spacing: -.015em;
}

.sp-product .sp-summary__excerpt > :first-child {
	margin-top: 0;
}

.sp-product .sp-summary__excerpt > :last-child {
	margin-bottom: 0;
}

.sp-buy-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px;
	gap: 18px;
	align-items: end;
	margin-bottom: 26px;
}

.sp-product .sp-add-to-cart {
	min-width: 0;
}

.sp-product .sp-add-to-cart form.cart {
	margin: 0;
}

.sp-product .sp-add-to-cart form.cart:not(.variations_form):not(.grouped_form) {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
}

.sp-product .sp-add-to-cart form.variations_form,
.sp-product .sp-add-to-cart form.grouped_form {
	display: block;
}

.sp-product .sp-add-to-cart table.variations,
.sp-product .sp-add-to-cart table.group_table {
	display: table;
	width: 100%;
	margin: 0 0 24px;
	border: 0;
}

.sp-product .sp-add-to-cart table.variations tr,
.sp-product .sp-add-to-cart table.variations th,
.sp-product .sp-add-to-cart table.variations td {
	display: block;
	padding: 0;
	border: 0;
	background: none;
	text-align: left;
}

.sp-product .sp-add-to-cart table.variations th.label {
	margin: 0 0 12px;
	color: #777;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.sp-product .sp-add-to-cart table.variations tr.sp-variation-row--enhanced > th.label {
	display: none;
}

.sp-product .sp-add-to-cart table.variations tr + tr {
	margin-top: 24px;
}

.sp-product .sp-add-to-cart table.variations select {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #ccc;
	background: #fff;
}

.sp-product .sp-add-to-cart table.variations select.sp-variation-select--enhanced {
	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;
}

.sp-product .reset_variations {
	display: inline-flex;
	margin-top: 10px;
	color: var(--sp-burgundy);
	font-size: 12px;
	font-weight: 750;
}

.sp-option-group {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.sp-option-label {
	margin: 0 0 15px;
	padding: 0;
	color: #777;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.sp-radio-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
}

.sp-radio {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: #111;
	font-size: 16px;
	cursor: pointer;
}

.sp-radio input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.sp-radio__circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid #cfcfcf;
	border-radius: 50%;
}

.sp-radio__circle::after {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: transparent;
	content: "";
}

.sp-radio input:focus-visible + .sp-radio__circle {
	outline: 3px solid #ff3155;
	outline-offset: 3px;
}

.sp-radio input:checked + .sp-radio__circle {
	border-color: var(--sp-burgundy);
	box-shadow: 0 0 0 2px rgba(159, 0, 40, .08);
}

.sp-radio input:checked + .sp-radio__circle::after {
	background: var(--sp-burgundy);
}

.sp-radio:has(input:disabled) {
	opacity: .42;
	cursor: not-allowed;
}

.sp-product .sp-add-to-cart .quantity {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 34px;
	align-items: center;
	width: 120px;
	height: 50px;
	margin: 0;
	overflow: hidden;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	background: #fff;
}

.sp-product .sp-add-to-cart .quantity.sp-quantity--hidden,
.sp-product .sp-add-to-cart--sold-individually .quantity {
	display: none;
}

.sp-product .sp-add-to-cart--sold-individually form.cart:not(.variations_form):not(.grouped_form),
.sp-product .sp-add-to-cart--sold-individually .single_variation_wrap .variations_button {
	grid-template-columns: minmax(0, 1fr);
}

.sp-product .sp-add-to-cart .quantity .qty {
	width: 100%;
	min-width: 0;
	min-height: 0;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 18px;
	text-align: center;
	appearance: textfield;
}

.sp-product .sp-add-to-cart .quantity .qty::-webkit-inner-spin-button,
.sp-product .sp-add-to-cart .quantity .qty::-webkit-outer-spin-button {
	margin: 0;
	appearance: none;
}

.sp-qty__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 18px;
	cursor: pointer;
}

.sp-product .sp-add-to-cart .single_add_to_cart_button,
.sp-product .sp-add-to-cart .button {
	min-height: 50px;
	padding: 0 28px;
	border: 0;
	border-radius: 999px;
	background: var(--sp-burgundy);
	color: #fff;
	font-size: 14px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .22s ease, transform .22s ease;
}

.sp-product .sp-add-to-cart form.cart:not(.variations_form):not(.grouped_form) .single_add_to_cart_button {
	width: 100%;
}

.sp-product .sp-add-to-cart .single_variation_wrap .variations_button {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
}

.sp-product .sp-add-to-cart .single_add_to_cart_button:hover,
.sp-product .sp-add-to-cart .single_add_to_cart_button:focus-visible {
	background: var(--sp-burgundy-dark);
	transform: translateY(-1px);
}

.sp-product .sp-add-to-cart .single_add_to_cart_button.disabled,
.sp-product .sp-add-to-cart .single_add_to_cart_button:disabled {
	opacity: .5;
	cursor: not-allowed;
	transform: none;
}

.sp-product .woocommerce-variation-price {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 800;
}

.sp-product .woocommerce-variation-availability {
	margin-bottom: 14px;
}

.sp-wishlist {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid #dedede;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
}

.sp-wishlist svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #111;
	transition: fill .2s ease, stroke .2s ease;
}

.sp-wishlist.is-active,
.sp-wishlist[aria-pressed="true"] {
	border-color: var(--sp-burgundy);
	background: #fff5f7;
}

.sp-wishlist.is-active svg,
.sp-wishlist[aria-pressed="true"] svg {
	fill: var(--sp-burgundy);
	stroke: var(--sp-burgundy);
}

.sp-product .sp-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 42px;
}

.sp-product .sp-badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 15px;
	border: 1px solid #d5d5d5;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.sp-product .sp-badge--dark,
.sp-product .sp-badge--burgundy {
	border-color: #4b000f;
	background: #4b000f;
	color: #fff;
}

.sp-product .sp-badge--gold {
	border-color: var(--sp-gold);
	background: #fff8eb;
	color: #4a3212;
}

.sp-product .sp-badge--outline {
	border-color: #d5d5d5;
	background: #fff;
	color: #111;
}

.sp-product .sp-tabs {
	margin-top: 0;
	border-top: 1px solid #dedede;
}

.sp-product .sp-tabs__nav,
.sp-product .sp-tabs__list {
	display: flex;
	gap: 34px;
	border-bottom: 1px solid #dedede;
}

.sp-product .sp-tab-btn,
.sp-product .sp-tabs__list button {
	position: relative;
	padding: 20px 2px 18px;
	border: 0;
	background: transparent;
	color: #777;
	font-size: 14px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
}

.sp-product .sp-tab-btn[aria-selected="true"],
.sp-product .sp-tabs__list button[aria-selected="true"] {
	color: #111;
}

.sp-product .sp-tab-btn[aria-selected="true"]::after,
.sp-product .sp-tabs__list button[aria-selected="true"]::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--sp-burgundy);
	content: "";
}

.sp-product .sp-tab-panel,
.sp-product .sp-tabs__panel {
	max-width: none;
	padding: 44px 0 0;
	color: #4e4e4e;
	font-size: 19px;
	line-height: 1.6;
}

.sp-product .sp-tab-panel[hidden],
.sp-product .sp-tabs__panel[hidden] {
	display: none;
}

.sp-product .sp-tab-panel > :first-child {
	margin-top: 0;
}

.sp-product .sp-premium {
	background: var(--sp-dark);
	color: #fff;
}

.sp-product .sp-section {
	padding: 92px 0;
	background: var(--sp-dark);
	color: #fff;
}

.sp-product .sp-section--soft {
	background: var(--sp-dark-soft);
}

.sp-product .sp-eyebrow {
	margin: 0 0 12px;
	color: var(--sp-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.sp-product .sp-section-title {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 850;
	letter-spacing: -.065em;
	line-height: .96;
}

.sp-product .sp-section-title::after {
	display: none;
}

.sp-product .sp-intro {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, .68);
	font-size: 16px;
	line-height: 1.75;
}

.sp-product .sp-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 46px;
}

.sp-product .sp-benefit,
.sp-product .sp-benefits article {
	min-height: 230px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 26px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}

.sp-product .sp-benefit__icon,
.sp-product .sp-benefits article > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0 0 24px;
	border: 0;
	border-radius: 14px;
	background: rgba(215, 173, 99, .14);
	color: var(--sp-gold);
}

.sp-product .sp-benefit__icon svg,
.sp-product .sp-benefits svg {
	width: 21px;
	height: 21px;
}

.sp-product .sp-benefit h3,
.sp-product .sp-benefits h3 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 850;
	letter-spacing: -.03em;
	line-height: 1.1;
}

.sp-benefit__copy,
.sp-benefit__copy p,
.sp-product .sp-benefits p {
	margin: 0;
	color: rgba(255, 255, 255, .66);
	font-size: 14px;
	line-height: 1.6;
}

.sp-product .sp-suitable {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 46px;
}

.sp-product .sp-suitable-card {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 26px;
	background: #0d0d0d;
}

.sp-product .sp-suitable-card h3 {
	margin: 0 0 22px;
	color: #fff;
	font-size: 23px;
	font-weight: 850;
	letter-spacing: -.04em;
}

.sp-product .sp-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sp-product .sp-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 999px;
	background: rgba(255, 255, 255, .045);
	color: rgba(255, 255, 255, .78);
	font-size: 13px;
	font-weight: 750;
}

.sp-product .sp-chip--surface[style] {
	background-image: linear-gradient(rgba(13, 13, 13, .82), rgba(13, 13, 13, .82)), var(--sp-surface-texture);
	background-position: center;
	background-size: cover;
}

.sp-product .sp-dot {
	width: 12px;
	height: 12px;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 50%;
	background: var(--dot);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}

.sp-product .sp-chip i,
.sp-product .sp-chip svg {
	width: 15px;
	color: var(--sp-gold);
	font-size: 15px;
	line-height: 1;
	text-align: center;
}

.sp-product .sp-steps {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 50px;
	align-items: start;
	margin-top: 46px;
}

.sp-product .sp-steps--no-image {
	grid-template-columns: minmax(0, 880px);
}

.sp-product .sp-steps__list {
	margin: 0;
	padding: 0;
	list-style-position: inside;
}

.sp-product .sp-steps__list > .sp-step {
	list-style: decimal;
}

.sp-product .sp-steps__list > .sp-step::marker {
	font-size: 0;
}

.sp-product .sp-steps__image {
	position: sticky;
	top: 116px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 26px;
	background: #111;
}

.sp-product .sp-steps__image img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	opacity: .9;
}

.sp-product .sp-step {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sp-product .sp-step:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.sp-product .sp-step__no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(215, 173, 99, .35);
	border-radius: 50%;
	background: rgba(215, 173, 99, .12);
	color: var(--sp-gold);
	font-size: 14px;
	font-weight: 850;
}

.sp-product .sp-step h3 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 23px;
	font-weight: 850;
	letter-spacing: -.04em;
}

.sp-product .sp-step__copy,
.sp-product .sp-step__copy p {
	margin: 0;
	color: rgba(255, 255, 255, .68);
	font-size: 15px;
	line-height: 1.75;
}

.sp-product .sp-specs {
	margin: 46px 0 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 26px;
	background: #0d0d0d;
}

.sp-product .sp-spec {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 24px;
	padding: 20px 26px;
	border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.sp-product .sp-spec:last-child {
	border-bottom: 0;
}

.sp-product .sp-spec dt {
	color: rgba(255, 255, 255, .45);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sp-product .sp-spec dd {
	margin: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.5;
}

.sp-product .sp-services {
	display: grid;
	grid-auto-columns: 322px;
	grid-auto-flow: column;
	gap: 18px;
	margin-top: 46px;
	padding-bottom: 14px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x proximity;
	scrollbar-color: var(--sp-gold) rgba(255, 255, 255, .08);
}

.sp-product .sp-service {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 26px;
	background: #0d0d0d;
	scroll-snap-align: start;
}

.sp-product .sp-service__image {
	display: block;
	background: #1a1a1a;
}

.sp-product .sp-service__image img,
.sp-product .sp-service__image > span {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.sp-product .sp-service__body {
	padding: 21px;
}

.sp-product .sp-service__duration {
	display: block;
	margin-bottom: 10px;
	color: var(--sp-gold);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sp-product .sp-service h3 {
	margin: 0 0 9px;
	color: #fff;
	font-size: 22px;
	font-weight: 850;
	letter-spacing: -.05em;
	line-height: 1.05;
}

.sp-product .sp-service p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, .68);
	font-size: 14px;
	line-height: 1.6;
}

.sp-product .sp-service__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 15px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	transition: background .2s ease, color .2s ease;
}

.sp-product .sp-service__link:hover,
.sp-product .sp-service__link:focus-visible {
	background: #fff;
	color: #111;
}

.sp-product .sp-addons {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 46px;
}

.sp-product .sp-addon {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	gap: 13px;
	align-items: center;
	min-width: 0;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 20px;
	background: rgba(255, 255, 255, .035);
}

.sp-product .sp-addon__image,
.sp-product .sp-addon__image img {
	display: block;
	width: 58px;
	height: 58px;
	border-radius: 15px;
	object-fit: cover;
}

.sp-product .sp-addon__body {
	min-width: 0;
}

.sp-product .sp-addon h3 {
	margin: 0 0 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.25;
}

.sp-product .sp-addon__price {
	color: rgba(255, 255, 255, .48);
	font-size: 12px;
	font-weight: 750;
}

.sp-product .sp-addon__price del {
	display: none;
}

.sp-product .sp-addon__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(215, 173, 99, .45);
	border-radius: 50%;
	background: rgba(215, 173, 99, .1);
	color: var(--sp-gold);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.sp-product .sp-addon__button.is-added,
.sp-product .sp-addon__button.is-in-cart {
	border-color: #d71920;
	background: #d71920;
	color: #fff;
	font-size: 18px;
}

.sp-product .sp-addon__button.is-busy {
	opacity: .55;
	cursor: wait;
}

.sp-product .sp-addon__button--link {
	font-size: 16px;
}

.sp-product .sp-universal-benefits {
	padding-block: 92px;
}

.sp-product .sp-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
	background: transparent;
	color: #fff;
}

.sp-product .sp-trust-item {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 22px;
	background: rgba(255, 255, 255, .04);
}

.sp-product .sp-trust-item strong {
	display: block;
	margin-bottom: 7px;
	color: #fff;
	font-size: 15px;
	font-weight: 850;
}

.sp-product .sp-trust-item div,
.sp-product .sp-trust-item p {
	margin: 0;
	color: rgba(255, 255, 255, .64);
	font-size: 13px;
	line-height: 1.5;
}

@media (max-width: 1100px) {
	.sp-product-layout,
	.sp-product .sp-purchase__grid {
		grid-template-columns: 1fr;
	}

	.sp-product .sp-gallery,
	.sp-product .sp-steps__image {
		position: relative;
		top: auto;
	}

	.sp-product .sp-benefits,
	.sp-product .sp-addons,
	.sp-product .sp-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-product .sp-suitable,
	.sp-product .sp-steps {
		grid-template-columns: 1fr;
	}

	.sp-product .sp-steps__image {
		max-width: 680px;
	}
}

@media (max-width: 680px) {
	.sp-product .sp-container {
		width: min(100% - 30px, var(--sp-container));
	}

	.sp-product-top,
	.sp-product .sp-purchase {
		padding-bottom: 58px;
	}

	.sp-product-layout,
	.sp-product .sp-purchase__grid {
		gap: 38px;
	}

	.sp-product .sp-gallery {
		grid-template-columns: 1fr;
	}

	.sp-product .sp-gallery__thumbs {
		grid-row: 2;
		display: flex;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.sp-product .sp-gallery__thumb,
	.sp-product .sp-gallery__thumbs button {
		flex: 0 0 76px;
		width: 76px;
	}

	.sp-product .sp-gallery__main {
		min-height: auto;
		aspect-ratio: 1 / 1.08;
	}

	.sp-product .sp-title,
	.sp-product .sp-summary h1 {
		font-size: 42px;
	}

	.sp-product .sp-short-desc,
	.sp-product .sp-summary__excerpt {
		font-size: 17px;
	}

	.sp-buy-row {
		grid-template-columns: minmax(0, 1fr) 48px;
	}

	.sp-product .sp-add-to-cart form.cart:not(.variations_form):not(.grouped_form),
	.sp-product .sp-add-to-cart .single_variation_wrap .variations_button {
		grid-template-columns: 1fr;
	}

	.sp-product .sp-add-to-cart .quantity {
		width: 100%;
	}

	.sp-product .sp-tabs__nav,
	.sp-product .sp-tabs__list {
		gap: 20px;
		overflow-x: auto;
	}

	.sp-product .sp-section,
	.sp-product .sp-universal-benefits {
		padding: 66px 0;
	}

	.sp-product .sp-benefits,
	.sp-product .sp-addons,
	.sp-product .sp-trust {
		grid-template-columns: 1fr;
	}

	.sp-product .sp-spec {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.sp-product .sp-services {
		grid-auto-columns: 86%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sp-product *,
	.sp-product *::before,
	.sp-product *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

@media (pointer: coarse) {
	.sp-product .sp-addon__button {
		width: 44px;
		height: 44px;
	}

	.sp-product .sp-add-to-cart .quantity {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		width: 140px;
	}

	.sp-product .sp-qty__button {
		min-width: 44px;
	}
}
