:root {
	--sps-bg: #f5f5f7;
	--sps-surface: rgba(255, 255, 255, 0.72);
	--sps-surface-strong: rgba(255, 255, 255, 0.94);
	--sps-text: #111111;
	--sps-muted: #58606c;
	--sps-border: rgba(15, 23, 42, 0.08);
	--sps-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
	--sps-radius-lg: 32px;
	--sps-radius-md: 24px;
	--sps-max: 1280px;
}

body.sakthi-showcase-page {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(140, 198, 255, 0.26), transparent 24%),
		radial-gradient(circle at top right, rgba(255, 214, 153, 0.24), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f6f7fb 42%, #eef2f7 100%);
	color: var(--sps-text);
}

body.sakthi-shop-page {
	margin: 0;
	background:
		radial-gradient(circle at top center, rgba(161, 206, 255, 0.2), transparent 20%),
		radial-gradient(circle at 85% 18%, rgba(255, 214, 153, 0.18), transparent 18%),
		linear-gradient(180deg, #fbfbfd 0%, #f3f5f8 46%, #edf1f6 100%);
	color: var(--sps-text);
}

.sps-shell {
	padding: 48px 20px 96px;
}

.sps-shop-shell {
	padding-top: 28px;
}

.sps-shop-hero {
	max-width: var(--sps-max);
	margin: 0 auto 34px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
	gap: 22px;
	align-items: stretch;
}

.sps-shop-hero-copy,
.sps-shop-feature,
.sps-shop-tile {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 34px;
	box-shadow: var(--sps-shadow);
}

.sps-shop-hero-copy {
	padding: 46px;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 24%),
		linear-gradient(135deg, #f7f9fc 0%, #e9eff7 100%);
	color: #111111;
}

.sps-shop-hero-copy .sps-eyebrow,
.sps-shop-hero-copy .sps-intro {
	color: #5f6874;
}

.sps-shop-hero-copy h1 {
	margin: 0;
	font-size: clamp(3.4rem, 6vw, 6.2rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
}

.sps-shop-feature {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	min-height: 440px;
	overflow: hidden;
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.92), transparent 32%),
		linear-gradient(180deg, #f7fafc 0%, #dce6f0 100%);
	color: #111111;
	text-decoration: none;
}

.sps-shop-feature img {
	position: absolute;
	inset: 16px 16px auto auto;
	max-width: min(72%, 360px);
	height: auto;
}

.sps-shop-feature-copy {
	position: relative;
	z-index: 1;
	max-width: 18rem;
	display: grid;
	gap: 10px;
}

.sps-shop-feature-kicker {
	font-size: 0.8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #748090;
}

.sps-shop-feature strong {
	font-size: 2.35rem;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.sps-shop-feature em {
	font-style: normal;
	color: #44505d;
	font-size: 1.08rem;
}

.sps-shop-grid-wrap {
	max-width: var(--sps-max);
	margin: 0 auto;
}

.sps-shop-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.sps-shop-tile {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 18px;
	min-height: 320px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #111111;
}

.sps-shop-tile-copy {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 8px;
}

.sps-shop-tile-kicker {
	margin: 0;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #7a8390;
}

.sps-shop-tile-title {
	margin: 0;
	font-size: clamp(1.45rem, 1.9vw, 2.1rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.sps-shop-tile-text {
	margin: 0;
	max-width: 28rem;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #5f6874;
}

.sps-shop-tile-price {
	color: #4f5762;
	font-weight: 600;
	font-size: 1.12rem;
}

.sps-shop-tile-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding-top: 4px;
}

.sps-shop-tile-media {
	display: grid;
	place-items: center;
	flex: 1 1 auto;
	padding: 10px;
	margin-top: 10px;
	min-height: 220px;
	max-height: 220px;
	border-radius: 32px;
	background: linear-gradient(180deg, #f6f8fc 0%, #dde6f0 100%);
	text-decoration: none;
	overflow: hidden;
}

.sps-shop-tile-media img {
	max-width: min(100%, 240px);
	max-height: 190px;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 24px;
	filter: drop-shadow(0 24px 36px rgba(15, 23, 42, 0.12));
}

.sps-hero,
.sps-highlights,
.sps-gallery,
.sps-story,
.sps-description {
	max-width: var(--sps-max);
	margin: 0 auto 28px;
}

.sps-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
	gap: 32px;
	align-items: center;
	padding: 44px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 40px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 251, 0.88));
	box-shadow: var(--sps-shadow);
	overflow: hidden;
}

.sps-eyebrow,
.sps-section-heading p,
.sps-section-kicker {
	margin: 0 0 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #7a8390;
}

.sps-hero h1,
.sps-description h2 {
	margin: 0;
	font-size: clamp(2.8rem, 4.8vw, 4.8rem);
	line-height: 0.92;
	letter-spacing: -0.05em;
}

.sps-intro {
	max-width: 32rem;
	margin: 22px 0 0;
	font-size: clamp(1.28rem, 2vw, 1.75rem);
	line-height: 1.6;
	color: var(--sps-muted);
}

.sps-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.sps-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sps-button:hover {
	transform: translateY(-2px);
}

.sps-button-primary {
	background: #111111;
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(17, 17, 17, 0.18);
}

.sps-button-secondary {
	background: rgba(255, 255, 255, 0.88);
	color: #111111;
	border: 1px solid rgba(17, 17, 17, 0.1);
}

.sps-price {
	margin-top: 20px;
	font-size: 1.22rem;
	color: #444b54;
}



.sps-hero-media::after {
	content: "";
	position: absolute;
	inset: auto 9% 5% 9%;
	height: 20px;
	border-radius: 50%;
	filter: blur(24px);
	background: rgba(17, 17, 17, 0.18);
}

.sps-hero-media {
	min-width: 0;
}

.sps-shop-feature img,
.sps-shop-tile-media img,
.sps-hero-media img,
.sps-gallery-card img,
.sps-shell .woocommerce-product-gallery__image img,
.sps-shell img.wp-post-image {
	display: block;
	max-width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	border-radius: 30px;
}

.sps-section-heading {
	padding: 18px 6px;
}

.sps-shop-grid-wrap .sps-section-heading h1 {
	margin: 0;
	font-size: clamp(2.6rem, 4.2vw, 4.6rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
	color: #111111;
}

.sps-highlight-grid,
.sps-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sps-highlight-card,
.sps-story-card,
.sps-description {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--sps-radius-lg);
	background: var(--sps-surface);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--sps-shadow);
}

.sps-highlight-card,
.sps-story-card {
	padding: 26px;
}

.sps-highlight-card h2,
.sps-story-card h2 {
	margin: 0 0 14px;
	font-size: 1.7rem;
	letter-spacing: -0.03em;
}

.sps-highlight-card p,
.sps-story-card p,
.sps-rich-text {
	margin: 0;
	font-size: 1.42rem;
	line-height: 2;
	color: var(--sps-muted);
}

.sps-gallery-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
}

.sps-gallery-carousel::before,
.sps-gallery-carousel::after {
	content: none;
}

.sps-gallery-track {
	flex: 1 1 auto;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 30vw);
	gap: 18px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 6px 6px 12px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0,
		#000000 96px,
		#000000 calc(100% - 96px),
		transparent 100%
	);
	mask-image: linear-gradient(
		90deg,
		transparent 0,
		#000000 96px,
		#000000 calc(100% - 96px),
		transparent 100%
	);
}

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

.sps-gallery-card {
	margin: 0;
	padding: 0;
	min-height: auto;
	display: grid;
	place-items: center;
	border-radius: 0;
	background: transparent;
	scroll-snap-align: start;
	box-shadow: none;
	overflow: visible;
}

.sps-gallery-select {
	display: block;
	width: 100%;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	padding: 0 !important;
	border: 1px solid rgba(15, 23, 42, 0.08) !important;
	background: #ffffff !important;
	cursor: pointer;
	border-radius: 24px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	line-height: 0 !important;
	box-shadow: none !important;
}

.sps-gallery-select img {
	display: block;
	width: 100% !important;
	height: auto !important;
	object-fit: contain;
	padding: 16px;
	background: #ffffff !important;
	box-sizing: border-box;
	border-radius: 24px !important;
}

.sps-gallery-select:hover,
.sps-gallery-select:focus-visible {
	transform: translateY(-2px);
	box-shadow: none !important;
}

.sps-gallery-select[aria-pressed='true'] {
	box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.12) !important;
}

.sps-gallery-select:focus-visible {
	outline: 2px solid rgba(15, 23, 42, 0.7) !important;
	outline-offset: 3px !important;
}

.sps-gallery-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
	color: var(--sps-text);
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
	position: relative;
	z-index: 3;
}

.sps-gallery-arrow:hover:not(:disabled),
.sps-gallery-arrow:focus-visible:not(:disabled) {
	transform: translateY(-1px);
	background: #ffffff;
}

.sps-gallery-arrow:disabled {
	opacity: 0.4;
	cursor: default;
}

.sps-gallery-arrow span {
	font-size: 1.3rem;
	line-height: 1;
}

.sps-description {
	padding: 42px;
	border-radius: 40px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 251, 0.9) 100%);
	box-shadow: var(--sps-shadow);
}

.sps-description-copy {
	max-width: none;
}

.sps-description h2 {
	margin-bottom: 0.5em;
}

.sps-rich-text {
	font-size: 1.48rem;
	line-height: 2.02;
	color: var(--sps-muted);
}

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

.sps-rich-text > *:last-child {
	margin-bottom: 0;
}

.sps-rich-text p {
	margin: 0 0 0.9em;
}

.sps-rich-text strong,
.sps-rich-text b {
	color: #111111;
	font-weight: 700;
}

.sps-rich-text h3,
.sps-rich-text h4 {
	margin: 1.2em 0 0.55em;
	font-size: 1.36rem;
	line-height: 1.35;
	color: #111111;
	letter-spacing: -0.02em;
}

.sps-rich-text ul,
.sps-rich-text ol {
	margin: 1em 0 1.15em;
	padding: 0;
	list-style: none;
}

.sps-rich-text li {
	position: relative;
	margin: 0 0 0.55em;
	padding: 0 0 0 1.1em;
}

.sps-rich-text li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.95em;
	width: 0.42em;
	height: 0.42em;
	border-radius: 50%;
	background: #111111;
}

.sps-rich-text hr {
	margin: 1.4em 0;
	border: 0;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.sps-description .sk-stock-cards {
	margin-top: 28px;
	display: grid;
	gap: 26px;
}

.sps-description .sk-card {
	border-radius: 24px;
	overflow: hidden;
}

.sps-description .sk-cards-wrap {
	border-radius: 24px;
	overflow: hidden;
}

.sps-description .sk-card-inner {
	width: min(75%, 960px);
	max-width: none;
	max-height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	box-sizing: border-box;
	margin: auto;
	padding: 2.5rem;
}

.sps-description .sk-card-inner::-webkit-scrollbar {
	display: none;
}

.sps-description .sk-card-content {
	width: 100%;
	max-width: 100%;
}

.sps-description .sk-card-content iframe,
.sps-description .sk-card-content video,
.sps-description .sk-card-content .wp-video,
.sps-description .sk-card-content .wp-block-embed,
.sps-description .sk-card-content .wp-block-embed__wrapper,
.sps-description .sk-card-content .fluid-width-video-wrapper {
	width: 100% !important;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.sps-description .sk-card-content iframe,
.sps-description .sk-card-content video {
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
	display: block;
}

.sps-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.sps-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.sps-show-on-mobile {
	display: none !important;
}

@media (max-width: 1024px) {
	.sps-shop-hero,
	.sps-hero,
	.sps-highlight-grid,
	.sps-story-grid,
	.sps-shop-grid {
		grid-template-columns: 1fr;
	}

	.sps-shop-hero-copy,
	.sps-hero {
		padding: 30px;
	}
}

@media (max-width: 680px) {
	.sps-hide-on-mobile {
		display: none !important;
	}

	.sps-show-on-mobile {
		display: flex !important;
	}

	.sps-shell {
		padding: 94px 14px 72px;
	}

	.sps-hero {
		padding: 22px;
		border-radius: 28px;
	}

	.sps-shop-hero-copy,
	.sps-shop-feature,
	.sps-shop-tile {
		border-radius: 24px;
	}

	.sps-shop-hero-copy {
		padding: 24px;
	}

	.sps-shop-feature {
		min-height: 360px;
	}

	.sps-shop-feature img {
		max-width: 78%;
	}

	.sps-shop-tile {
		min-height: 280px;
		padding: 16px;
	}

	.sps-hero-media {
		min-height: 300px;
	}

	.sps-highlight-card,
	.sps-story-card,
	.sps-description {
		border-radius: 24px;
		padding: 22px;
	}

	.sps-gallery-track {
		grid-auto-columns: 82vw;
	}

	.sps-hero-mobile-gallery .sps-gallery-track {
		-webkit-mask-image: none;
		mask-image: none;
		grid-auto-columns: 100%;
		padding: 0;
	}

	.sps-gallery-carousel {
		gap: 10px;
	}

	.sps-gallery-arrow {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}

	.sps-hero-mobile-gallery .sps-gallery-arrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10;
	}

	.sps-hero-mobile-gallery .sps-gallery-arrow-prev {
		left: -14px;
	}

	.sps-hero-mobile-gallery .sps-gallery-arrow-next {
		right: -14px;
	}

	.sps-gallery-card {
		min-height: 320px;
		padding: 20px;
	}

	.sps-hero-mobile-gallery .sps-gallery-card {
		padding: 0;
		min-height: 280px;
	}

	.sps-description .sk-card-inner {
		width: min(92%, 960px);
		padding: 1.5rem 1rem;
	}

	.sps-description .sk-card {
		padding: 1rem;
	}

	.sps-description .sk-card-title {
		font-size: 1.75rem;
	}

	.sps-description .sk-card-content {
		max-width: 95%;
		font-size: 1.05rem;
	}
}
