/* Single product — advanced editorial commerce layout */

.product-page {
	--sp-green: #3f9a44;
	--sp-green-dark: #2d7a31;
	--sp-gold: #c99a4a;
	--sp-text: #1a2332;
	--sp-muted: #64748b;
	--sp-line: rgba(63, 154, 68, 0.12);
	background: #ffffff;
}

/* ── Hero scene ── */

.sp-hero {
	position: relative;
	padding-block: clamp(6.5rem, 10vw, 8rem) clamp(2rem, 4vw, 3rem);
	overflow: hidden;
}

.sp-hero__scene {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.sp-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.4;
}

.sp-hero__orb--1 {
	width: clamp(220px, 30vw, 380px);
	height: clamp(220px, 30vw, 380px);
	top: -8%;
	inset-inline-start: -5%;
	background: rgba(63, 154, 68, 0.14);
}

.sp-hero__orb--2 {
	width: clamp(180px, 24vw, 300px);
	height: clamp(180px, 24vw, 300px);
	bottom: 5%;
	inset-inline-end: -3%;
	background: rgba(201, 154, 74, 0.12);
}

.sp-hero__dots {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image: radial-gradient(circle, rgba(63, 154, 68, 0.18) 1px, transparent 1px);
	background-size: 18px 18px;
	mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.sp-hero__wheat {
	position: absolute;
	bottom: 8%;
	inset-inline-end: 4%;
	width: clamp(48px, 6vw, 72px);
	color: rgba(63, 154, 68, 0.12);
}

.sp-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--rbz-container);
	margin: 0 auto;
	padding-inline: var(--rbz-gutter);
}

.sp-hero__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.625rem 0.875rem;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.sp-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
	flex-shrink: 0;
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--sp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--sp-muted);
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.25s ease, gap 0.25s ease, border-color 0.25s ease;
}

.sp-hero__back:hover {
	color: var(--sp-green-dark);
	gap: 0.5625rem;
	border-color: rgba(63, 154, 68, 0.22);
}

.sp-hero__crumb-wrap {
	flex: 1 1 12rem;
	min-width: 0;
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--sp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.sp-hero__crumb-wrap::-webkit-scrollbar {
	display: none;
}

.sp-hero__crumb-wrap .woocommerce-breadcrumb {
	margin: 0;
	color: var(--sp-muted);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.45;
	white-space: nowrap;
}

.sp-hero__crumb-wrap .woocommerce-breadcrumb a {
	color: var(--sp-green-dark);
	text-decoration: none;
}

.sp-hero__crumb-wrap .woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}

.sp-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

/* ── Gallery ── */

.sp-gallery {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.sp-gallery__stage {
	position: relative;
	border-radius: 28px 28px 28px 8px;
	overflow: hidden;
	background: rgba(63, 154, 68, 0.04);
	aspect-ratio: 1;
}

[dir="ltr"] .sp-gallery__stage {
	border-radius: 28px 28px 8px 28px;
}

.sp-gallery__ring {
	position: absolute;
	inset: 12px;
	border: 1px dashed rgba(63, 154, 68, 0.18);
	border-radius: 20px;
	pointer-events: none;
	z-index: 2;
}

.sp-gallery__main {
	position: relative;
	width: 100%;
	height: 100%;
}

.sp-gallery__counter {
	display: none;
}

.sp-gallery__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-gallery__img.is-active {
	opacity: 1;
	transform: scale(1);
}

.sp-gallery__badge {
	position: absolute;
	top: 1rem;
	z-index: 3;
	padding: 0.3125rem 0.6875rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 800;
}

.sp-gallery__badge--sale {
	inset-inline-start: 1rem;
	background: linear-gradient(135deg, #e53935, #ff7043);
	color: #ffffff;
}

.sp-gallery__badge--cat {
	inset-inline-end: 1rem;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--sp-line);
	color: var(--sp-green-dark);
}

.sp-gallery__zoom {
	position: absolute;
	bottom: 1rem;
	inset-inline-end: 1rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--sp-green-dark);
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.sp-gallery__zoom:hover {
	background: #ffffff;
	transform: scale(1.06);
}

.sp-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sp-gallery__thumb {
	flex: 0 0 auto;
	width: 4.25rem;
	height: 4.25rem;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(63, 154, 68, 0.05);
	cursor: pointer;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.sp-gallery__thumb.is-active {
	border-color: var(--sp-green);
}

.sp-gallery__thumb:hover {
	transform: translateY(-2px);
}

.sp-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-gallery__lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(10, 16, 12, 0.88);
	backdrop-filter: blur(8px);
}

.sp-gallery__lightbox[hidden] {
	display: none;
}

.sp-gallery__lightbox-img {
	max-width: min(960px, 100%);
	max-height: 85vh;
	border-radius: 16px;
	object-fit: contain;
}

.sp-gallery__lightbox-close {
	position: absolute;
	top: 1.25rem;
	inset-inline-end: 1.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 1.125rem;
	cursor: pointer;
}

/* ── Summary ── */

.sp-summary__featured {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.75rem;
	padding: 0.3125rem 0.75rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(201, 154, 74, 0.15), rgba(201, 154, 74, 0.08));
	color: #9a7228;
	font-size: 0.75rem;
	font-weight: 700;
}

.sp-summary__title {
	margin-bottom: 0.75rem;
	color: var(--sp-text);
	font-size: clamp(1.65rem, 3.5vw, 2.35rem);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: -0.03em;
}

.sp-summary__rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1rem;
}

.sp-summary__rating-count {
	color: var(--sp-muted);
	font-size: 0.8125rem;
	font-weight: 600;
}

.sp-summary__stars,
.sp-related__stars {
	display: inline-flex;
	gap: 0.125rem;
}

.sp-summary__star,
.sp-related__star {
	width: 0.875rem;
	height: 0.875rem;
	background: rgba(63, 154, 68, 0.18);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sp-summary__star--full,
.sp-related__star--full {
	background: var(--sp-gold);
}

.sp-summary__star--half,
.sp-related__star--half {
	background: linear-gradient(90deg, var(--sp-gold) 50%, rgba(63, 154, 68, 0.18) 50%);
}

.sp-summary__price {
	margin-bottom: 1.125rem;
	color: var(--sp-green-dark);
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 900;
	line-height: 1.2;
}

.sp-summary__price del {
	color: var(--sp-muted);
	font-size: 0.85em;
	font-weight: 600;
	opacity: 0.75;
}

.sp-summary__price ins {
	text-decoration: none;
}

.sp-summary__excerpt {
	margin-bottom: 1.125rem;
	color: var(--sp-muted);
	font-size: 0.9375rem;
	line-height: 1.9;
}

.sp-summary__excerpt p {
	margin: 0;
}

.sp-summary__stock {
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
	margin-bottom: 1.25rem;
	padding: 0.4375rem 0.875rem;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 700;
}

.sp-summary__stock--in {
	background: rgba(63, 154, 68, 0.08);
	color: var(--sp-green-dark);
}

.sp-summary__stock--out {
	background: rgba(229, 57, 53, 0.08);
	color: #c62828;
}

.sp-summary__stock-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: currentColor;
}

.sp-summary__purchase {
	margin-bottom: 1.5rem;
}

.sp-summary__purchase .cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.75rem;
}

.sp-summary__purchase .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--sp-line);
	border-radius: 999px;
	overflow: hidden;
	background: #ffffff;
}

.sp-qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: none;
	background: transparent;
	color: var(--sp-green-dark);
	font-size: 0.875rem;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.sp-qty-btn:hover {
	background: rgba(63, 154, 68, 0.08);
}

.sp-summary__purchase .quantity .qty {
	width: 3rem;
	height: 2.75rem;
	border: none;
	background: transparent;
	color: var(--sp-text);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
}

.sp-summary__purchase .quantity .qty::-webkit-outer-spin-button,
.sp-summary__purchase .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.sp-summary__purchase .single_add_to_cart_button,
.sp-summary__purchase .button.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4375rem;
	flex: 1 1 auto;
	min-height: 2.75rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sp-green-dark), var(--sp-green));
	color: #ffffff;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.sp-summary__purchase .single_add_to_cart_button:hover,
.sp-summary__purchase .button.alt:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -8px rgba(45, 122, 49, 0.55);
}

.sp-summary__purchase .single_add_to_cart_button:disabled,
.sp-summary__purchase .button.alt:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.sp-summary__purchase .variations {
	width: 100%;
	margin-bottom: 0.5rem;
	border-collapse: collapse;
}

.sp-summary__purchase .variations td,
.sp-summary__purchase .variations th {
	padding: 0.375rem 0;
	border: none;
	vertical-align: middle;
}

.sp-summary__purchase .variations label {
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 700;
}

.sp-summary__purchase .variations select {
	min-width: 10rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--sp-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--sp-text);
	font-family: inherit;
	font-size: 0.875rem;
}

.sp-summary__purchase .reset_variations {
	display: inline-block;
	margin-top: 0.375rem;
	color: var(--sp-muted);
	font-size: 0.75rem;
	font-weight: 600;
}

.sp-summary__purchase .woocommerce-variation-price {
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--sp-green-dark);
}

.sp-summary__trust {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.625rem;
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.sp-summary__trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0.875rem;
	border: 1px solid var(--sp-line);
	border-radius: 16px;
	background: rgba(63, 154, 68, 0.03);
}

.sp-summary__trust-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(63, 154, 68, 0.1);
	color: var(--sp-green-dark);
	font-size: 1rem;
}

.sp-summary__trust-title {
	display: block;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 800;
}

.sp-summary__trust-desc {
	display: block;
	color: var(--sp-muted);
	font-size: 0.75rem;
	font-weight: 600;
}

.sp-summary__sku {
	margin: 0;
	color: var(--sp-muted);
	font-size: 0.8125rem;
}

.sp-summary__sku strong {
	color: var(--sp-text);
	font-weight: 700;
}

/* Summary quick stats */

.sp-summary__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.sp-summary__stat {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.75rem;
	border: 1px solid var(--sp-line);
	border-radius: 14px;
	background: rgba(63, 154, 68, 0.04);
}

.sp-summary__stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 10px;
	background: rgba(63, 154, 68, 0.1);
	color: var(--sp-green-dark);
	font-size: 0.9375rem;
}

.sp-summary__stat-value {
	display: block;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 900;
	line-height: 1.2;
}

.sp-summary__stat-label {
	display: block;
	margin-top: 0.0625rem;
	color: var(--sp-muted);
	font-size: 0.625rem;
	font-weight: 700;
}

.sp-summary__features-link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 1.25rem;
	padding: 0.5rem 0.875rem;
	border: 1px dashed rgba(63, 154, 68, 0.25);
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.04);
	color: var(--sp-green-dark);
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sp-summary__features-link:hover {
	background: rgba(63, 154, 68, 0.1);
	border-color: rgba(63, 154, 68, 0.35);
	transform: translateY(-1px);
}

.sp-summary__features-link .rbz-icon--chevron-down {
	margin-inline-start: auto;
	font-size: 0.875rem;
	opacity: 0.7;
}

/* ── Product features (nutrition, cooking, quality) ── */

.sp-features {
	padding-block: clamp(2rem, 4vw, 3rem);
	background:
		radial-gradient(ellipse 80% 50% at 50% 0%, rgba(63, 154, 68, 0.06) 0%, transparent 70%),
		#ffffff;
	scroll-margin-top: 5rem;
}

.sp-features__inner {
	width: 100%;
	max-width: var(--rbz-container);
	margin: 0 auto;
	padding-inline: var(--rbz-gutter);
}

.sp-features__head {
	max-width: 640px;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.sp-features__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.5rem;
	color: var(--sp-green-dark);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.sp-features__title {
	margin: 0 0 0.5rem;
	color: var(--sp-text);
	font-size: clamp(1.375rem, 2.8vw, 1.875rem);
	font-weight: 900;
	line-height: 1.35;
}

.sp-features__desc {
	margin: 0;
	color: var(--sp-muted);
	font-size: 0.9375rem;
	line-height: 1.85;
}

.sp-features__highlights {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.sp-features__highlight {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	border: 1px solid var(--sp-line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 28px -20px rgba(26, 35, 50, 0.14);
}

.sp-features__highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.375rem;
	height: 2.375rem;
	border-radius: 12px;
	background: rgba(63, 154, 68, 0.1);
	color: var(--sp-green-dark);
	font-size: 1rem;
}

.sp-features__highlight-label {
	display: block;
	color: var(--sp-muted);
	font-size: 0.6875rem;
	font-weight: 700;
}

.sp-features__highlight-value {
	display: block;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 800;
}

.sp-features__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.sp-features__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.4rem 0.75rem;
	border: 1px solid var(--sp-line);
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.05);
	color: var(--sp-green-dark);
	font-size: 0.75rem;
	font-weight: 700;
}

.sp-features__bento {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: clamp(1rem, 2vw, 1.25rem);
	align-items: start;
}

.sp-features__nutrition,
.sp-features__panel {
	padding: clamp(1.125rem, 2vw, 1.5rem);
	border: 1px solid var(--sp-line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 20px 48px -32px rgba(26, 35, 50, 0.16);
}

.sp-features__card-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	margin-bottom: 1rem;
}

.sp-features__card-title,
.sp-features__panel-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	color: var(--sp-text);
	font-size: 1rem;
	font-weight: 900;
}

.sp-features__serving {
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.08);
	color: var(--sp-green-dark);
	font-size: 0.6875rem;
	font-weight: 800;
}

.sp-features__calorie-hero {
	display: flex;
	align-items: baseline;
	gap: 0.375rem;
	margin-bottom: 1rem;
	padding: 1rem 1.125rem;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(63, 154, 68, 0.1), rgba(201, 154, 74, 0.08));
}

.sp-features__calorie-value {
	color: var(--sp-text);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.03em;
}

.sp-features__calorie-unit {
	color: var(--sp-muted);
	font-size: 0.875rem;
	font-weight: 700;
}

.sp-features__calc {
	margin-bottom: 1.25rem;
	padding: 0.875rem 1rem;
	border: 1px dashed var(--sp-line);
	border-radius: 14px;
	background: rgba(63, 154, 68, 0.03);
}

.sp-features__calc-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--sp-text);
	font-size: 0.75rem;
	font-weight: 800;
}

.sp-features__calc-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sp-features__calc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid var(--sp-line);
	border-radius: 10px;
	background: #ffffff;
	color: var(--sp-green-dark);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.sp-features__calc-btn:hover {
	background: rgba(63, 154, 68, 0.08);
	border-color: rgba(63, 154, 68, 0.22);
}

.sp-features__calc-input {
	flex: 1;
	min-width: 0;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--sp-line);
	border-radius: 10px;
	background: #ffffff;
	color: var(--sp-text);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 800;
	text-align: center;
}

.sp-features__calc-hint {
	margin: 0.5rem 0 0;
	color: var(--sp-muted);
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.6;
}

.sp-features__nutrition-table {
	width: 100%;
	border-collapse: collapse;
}

.sp-features__nutrition-table th,
.sp-features__nutrition-table td {
	padding: 0.625rem 0;
	border-bottom: 1px solid var(--sp-line);
	vertical-align: middle;
}

.sp-features__nutrition-table tr:last-child th,
.sp-features__nutrition-table tr:last-child td {
	border-bottom: 0;
}

.sp-features__nutrition-table th {
	width: 65%;
	text-align: start;
	font-weight: 600;
}

.sp-features__nutrition-table td {
	text-align: end;
}

.sp-features__nut-label {
	display: block;
	margin-bottom: 0.375rem;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 700;
}

.sp-features__nut-bar {
	display: block;
	height: 4px;
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.1);
	overflow: hidden;
}

.sp-features__nut-bar-fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--sp-green-dark), var(--sp-green));
	transition: width 0.35s ease;
}

.sp-features__nut-value {
	color: var(--sp-green-dark);
	font-size: 0.875rem;
	font-weight: 900;
}

.sp-features__nutrition-note {
	display: flex;
	align-items: flex-start;
	gap: 0.375rem;
	margin: 1rem 0 0;
	color: var(--sp-muted);
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.65;
}

.sp-features__side {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sp-features__dl {
	margin: 0 0 1rem;
}

.sp-features__dl-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.625rem 0;
	border-bottom: 1px solid var(--sp-line);
}

.sp-features__dl-row:last-child {
	border-bottom: 0;
}

.sp-features__dl-row dt {
	margin: 0;
	color: var(--sp-muted);
	font-size: 0.8125rem;
	font-weight: 700;
}

.sp-features__dl-row dd {
	margin: 0;
	color: var(--sp-text);
	font-size: 0.875rem;
	font-weight: 800;
}

.sp-features__tip {
	padding: 0.875rem 1rem;
	border-radius: 14px;
	background: rgba(201, 154, 74, 0.08);
}

.sp-features__tip-label {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.375rem;
	color: #9a7332;
	font-size: 0.75rem;
	font-weight: 800;
}

.sp-features__tip p {
	margin: 0;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.75;
}

.sp-features__cert {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.75rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.1);
	color: var(--sp-green-dark);
	font-size: 0.75rem;
	font-weight: 800;
}

.sp-features__storage-text {
	margin: 0 0 0.875rem;
	color: var(--sp-muted);
	font-size: 0.8125rem;
	line-height: 1.8;
}

.sp-features__storage-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sp-features__storage-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4375rem 0;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 600;
}

.sp-features__storage-list .rbz-icon {
	color: var(--sp-green-dark);
	font-size: 0.9375rem;
}

/* ── Tabs ── */

.sp-tabs {
	padding-block: clamp(2rem, 4vw, 3rem);
	background:
		radial-gradient(ellipse 70% 40% at 50% 0%, rgba(63, 154, 68, 0.05) 0%, transparent 70%),
		#ffffff;
}

.sp-tabs__inner {
	width: 100%;
	max-width: var(--rbz-container);
	margin: 0 auto;
	padding-inline: var(--rbz-gutter);
}

.sp-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4375rem;
	margin-bottom: 1.5rem;
	padding: 0.375rem;
	border: 1px solid var(--sp-line);
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.03);
	width: fit-content;
	max-width: 100%;
}

.sp-tabs__btn {
	padding: 0.5625rem 1.125rem;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--sp-muted);
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.sp-tabs__btn.is-active {
	background: linear-gradient(135deg, var(--sp-green-dark), var(--sp-green));
	color: #ffffff;
	box-shadow: 0 8px 20px -8px rgba(45, 122, 49, 0.55);
}

.sp-tabs__panel {
	animation: sp-tab-in 0.35s ease;
}

.sp-tabs__panel[hidden] {
	display: none;
}

.sp-tabs__prose {
	max-width: 72ch;
	color: var(--sp-text);
	font-size: 1rem;
	line-height: 2;
}

.sp-tabs__prose h2,
.sp-tabs__prose h3 {
	margin: 1.75rem 0 0.75rem;
	font-weight: 800;
	line-height: 1.45;
}

.sp-tabs__prose p {
	margin-bottom: 1rem;
}

.sp-tabs__prose ul,
.sp-tabs__prose ol {
	margin-bottom: 1rem;
	padding-inline-start: 1.5rem;
}

.sp-product table.shop_attributes {
	width: 100%;
	border-collapse: collapse;
}

.sp-product table.shop_attributes th,
.sp-product table.shop_attributes td {
	padding: 0.875rem 1rem;
	border-bottom: 1px solid var(--sp-line);
	text-align: start;
}

.sp-product table.shop_attributes th {
	width: 35%;
	color: var(--sp-muted);
	font-size: 0.8125rem;
	font-weight: 700;
}

.sp-product table.shop_attributes td {
	color: var(--sp-text);
	font-size: 0.9375rem;
	font-weight: 600;
}

.sp-product table.shop_attributes td p {
	margin: 0;
}

/* Reviews inside tabs */

.sp-tabs__panel .woocommerce-Reviews {
	padding: 0.25rem 0;
}

.sp-tabs__panel .woocommerce-Reviews-title,
.sp-tabs__panel #reply-title {
	margin: 0 0 1rem;
	color: var(--sp-text);
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.45;
}

.sp-tabs__panel .woocommerce-noreviews {
	margin: 0 0 1.25rem;
	padding: 0.875rem 1rem;
	border: 1px dashed rgba(63, 154, 68, 0.2);
	border-radius: 14px;
	background: rgba(63, 154, 68, 0.03);
	color: var(--sp-muted);
	font-size: 0.875rem;
	line-height: 1.75;
}

.sp-tabs__panel #review_form_wrapper {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--sp-line);
}

.sp-tabs__panel .comment-respond {
	margin: 0;
}

.sp-tabs__panel .comment-form {
	display: grid;
	gap: 0.875rem;
	margin: 0;
}

.sp-tabs__panel .comment-form > p {
	margin: 0;
}

.sp-tabs__panel .comment-notes,
.sp-tabs__panel .comment-form-cookies-consent {
	color: var(--sp-muted);
	font-size: 0.8125rem;
	line-height: 1.75;
}

.sp-tabs__panel .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.sp-tabs__panel .comment-form-cookies-consent input {
	margin-top: 0.2rem;
	accent-color: var(--sp-green);
}

.sp-tabs__panel .comment-form label {
	display: block;
	margin-bottom: 0.375rem;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 700;
}

.sp-tabs__panel .comment-form-rating select {
	width: 100%;
	max-width: 16rem;
	height: 2.625rem;
	padding-inline: 1rem;
	border: 1px solid var(--sp-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--sp-text);
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	outline: none;
	transition: border-color 0.25s ease;
}

.sp-tabs__panel .comment-form-rating select:focus {
	border-color: rgba(63, 154, 68, 0.35);
}

.sp-tabs__panel .commentlist {
	margin: 1rem 0;
	padding: 0;
	list-style: none;
}

.sp-tabs__panel .comment_container {
	display: flex;
	gap: 0.875rem;
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid var(--sp-line);
	border-radius: 16px;
	background: rgba(63, 154, 68, 0.02);
}

.sp-tabs__panel .comment-text,
.sp-tabs__panel .description {
	color: var(--sp-muted);
	font-size: 0.875rem;
	line-height: 1.85;
}

.sp-tabs__panel .meta {
	margin-bottom: 0.375rem;
	color: var(--sp-muted);
	font-size: 0.75rem;
	font-weight: 600;
}

.sp-tabs__panel .star-rating {
	color: var(--sp-gold);
}

.sp-tabs__panel .comment-form input[type="text"],
.sp-tabs__panel .comment-form input[type="email"],
.sp-tabs__panel .comment-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--sp-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--sp-text);
	font-family: inherit;
	font-size: 0.9375rem;
	outline: none;
	transition: border-color 0.25s ease;
}

.sp-tabs__panel .comment-form input:focus,
.sp-tabs__panel .comment-form textarea:focus {
	border-color: rgba(63, 154, 68, 0.35);
}

.sp-tabs__panel .comment-form input[type="submit"],
.sp-tabs__panel #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8rem;
	padding: 0.75rem 1.375rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sp-green-dark), var(--sp-green));
	color: #ffffff;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.sp-tabs__panel .comment-form input[type="submit"]:hover,
.sp-tabs__panel #respond input#submit:hover {
	transform: translateY(-1px);
}

.sp-tabs__panel .form-submit {
	margin-top: 0.25rem;
}

/* ── Related ── */

.sp-related {
	padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 4.5rem);
	background: #ffffff;
}

.sp-related__inner {
	width: 100%;
	max-width: var(--rbz-container);
	margin: 0 auto;
	padding-inline: var(--rbz-gutter);
}

.sp-related__head {
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
}

.sp-related__eyebrow {
	display: inline-block;
	margin-bottom: 0.625rem;
	padding: 0.3rem 0.75rem;
	border: 1px solid rgba(63, 154, 68, 0.16);
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.06);
	color: var(--sp-green);
	font-size: 0.75rem;
	font-weight: 700;
}

.sp-related__title {
	color: var(--sp-text);
	font-size: clamp(1.375rem, 2.8vw, 1.75rem);
	font-weight: 800;
}

.sp-related__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.875rem, 1.8vw, 1.125rem);
}

.sp-related__card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--sp-line);
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-related__card:hover {
	transform: translateY(-4px);
}

.sp-related__link {
	flex: 1;
	color: inherit;
	text-decoration: none;
}

.sp-related__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: rgba(63, 154, 68, 0.05);
}

.sp-related__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sp-related__card:hover .sp-related__img {
	transform: scale(1.06);
}

.sp-related__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--sp-green);
	font-size: 2rem;
	opacity: 0.28;
}

.sp-related__sale {
	position: absolute;
	top: 0.625rem;
	inset-inline-start: 0.625rem;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #e53935, #ff7043);
	color: #ffffff;
	font-size: 0.6875rem;
	font-weight: 800;
}

.sp-related__body {
	padding: 0.875rem 1rem 1rem;
}

.sp-related__tag {
	display: inline-block;
	margin-bottom: 0.375rem;
	padding: 0.1875rem 0.5rem;
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.08);
	color: var(--sp-green-dark);
	font-size: 0.6875rem;
	font-weight: 700;
}

.sp-related__name {
	margin-bottom: 0.375rem;
	color: var(--sp-text);
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1.55;
}

.sp-related__price {
	margin-bottom: 0.375rem;
	color: var(--sp-green-dark);
	font-size: 0.875rem;
	font-weight: 800;
}

.sp-related__atc {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.6875rem 1rem;
	border-top: 1px solid var(--sp-line);
	background: rgba(63, 154, 68, 0.04);
	color: var(--sp-green-dark);
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease;
}

.sp-related__atc:hover {
	background: var(--sp-green);
	color: #ffffff;
}

.sp-related__atc.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.sp-related__atc.is-added {
	background: var(--sp-green);
	color: #ffffff;
}

/* ── Sticky bar ── */

.sp-sticky {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 110;
	padding: 0.625rem var(--rbz-gutter);
	padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0));
	background: rgba(255, 255, 255, 0.94);
	border-top: 1px solid var(--sp-line);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 -8px 32px -16px rgba(26, 35, 50, 0.18);
	transform: translateY(110%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-sticky.is-visible {
	transform: translateY(0);
}

.sp-sticky[hidden] {
	display: none !important;
	visibility: hidden;
}

.sp-sticky.is-visible[hidden] {
	display: block !important;
	visibility: visible;
}

.sp-sticky__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: var(--rbz-container);
	margin: 0 auto;
}

.sp-sticky__info {
	min-width: 0;
}

.sp-sticky__name {
	display: block;
	color: var(--sp-text);
	font-size: 0.8125rem;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sp-sticky__price {
	color: var(--sp-green-dark);
	font-size: 0.9375rem;
	font-weight: 900;
}

.sp-sticky__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	flex-shrink: 0;
	padding: 0.6875rem 1.125rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sp-green-dark), var(--sp-green));
	color: #ffffff;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 800;
	cursor: pointer;
}

/* ── WC notices on product page ── */

.product-page .woocommerce-notices-wrapper {
	width: 100%;
	max-width: var(--rbz-container);
	margin: 0 auto;
	padding: 5.5rem var(--rbz-gutter) 0;
	gap: 0.75rem;
}

/* ── Scroll reveal ── */

.product-page[data-sp-scroll] [data-sp-reveal]:not(.is-revealed) {
	opacity: 0;
	transform: translateY(18px);
}

.product-page[data-sp-scroll] [data-sp-reveal].is-revealed {
	animation: sp-reveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-page[data-sp-scroll] .is-instant {
	animation: none !important;
	opacity: 1 !important;
	transform: none !important;
}

.product-page[data-sp-scroll] [data-sp-reveal][data-delay="1"].is-revealed {
	animation-delay: 0.1s;
}

@keyframes sp-reveal {
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes sp-tab-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

/* ── Responsive ── */

@media (max-width: 1023px) {
	.sp-hero {
		padding-block: clamp(5rem, 11vw, 6.5rem) clamp(1.5rem, 3vw, 2.25rem);
	}

	.sp-hero__wheat {
		display: none;
	}

	.sp-hero__orb {
		opacity: 0.28;
	}

	.sp-hero__top {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
		margin-bottom: 1rem;
	}

	.sp-hero__back {
		align-self: flex-start;
	}

	.sp-hero__crumb-wrap {
		flex-basis: auto;
	}

	.sp-hero__layout {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.sp-gallery {
		order: 1;
	}

	.sp-summary {
		order: 2;
	}

	.sp-gallery__stage {
		border-radius: 20px 20px 20px 6px;
		touch-action: pan-y;
	}

	.sp-gallery__counter {
		display: inline-flex;
		align-items: center;
		gap: 0.25rem;
		position: absolute;
		bottom: 0.75rem;
		inset-inline-start: 0.75rem;
		z-index: 3;
		padding: 0.3125rem 0.625rem;
		border-radius: 999px;
		background: rgba(26, 35, 50, 0.72);
		color: #ffffff;
		font-size: 0.6875rem;
		font-weight: 800;
		letter-spacing: 0.02em;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		pointer-events: none;
	}

	[dir="ltr"] .sp-gallery__stage {
		border-radius: 20px 20px 6px 20px;
	}

	.sp-gallery__ring {
		inset: 8px;
	}

	.sp-gallery__thumbs {
		flex-wrap: nowrap;
		gap: 0.4375rem;
		margin-inline: calc(-1 * var(--rbz-gutter));
		padding-inline: var(--rbz-gutter);
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--rbz-gutter);
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
		scrollbar-width: none;
	}

	.sp-gallery__thumbs::-webkit-scrollbar {
		display: none;
	}

	.sp-gallery__thumb {
		flex: 0 0 3.75rem;
		width: 3.75rem;
		height: 3.75rem;
		scroll-snap-align: start;
	}

	.sp-summary__title {
		font-size: clamp(1.375rem, 6vw, 1.875rem);
	}

	.sp-summary__excerpt {
		font-size: 0.875rem;
		line-height: 1.85;
	}

	.sp-summary__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.4375rem;
	}

	.sp-summary__stat {
		flex-direction: column;
		align-items: center;
		gap: 0.375rem;
		padding: 0.5rem 0.375rem;
		text-align: center;
	}

	.sp-summary__stat-icon {
		width: 1.875rem;
		height: 1.875rem;
		font-size: 0.8125rem;
	}

	.sp-summary__stat-value {
		font-size: 0.75rem;
	}

	.sp-summary__stat-label {
		font-size: 0.5625rem;
	}

	.sp-summary__trust-item {
		padding: 0.625rem 0.75rem;
	}

	.sp-summary__purchase .variations select {
		width: 100%;
		min-width: 0;
	}

	.sp-features__highlights {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.625rem;
	}

	.sp-features__bento {
		grid-template-columns: 1fr;
	}

	.sp-features__nutrition-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.sp-tabs__inner {
		padding-inline: var(--rbz-gutter);
	}

	.sp-tabs__nav {
		width: 100%;
		max-width: none;
		flex-wrap: nowrap;
		overflow-x: auto;
		border-radius: 16px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.sp-tabs__nav::-webkit-scrollbar {
		display: none;
	}

	.sp-tabs__btn {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.sp-tabs__prose {
		font-size: 0.9375rem;
		line-height: 1.95;
	}

	.sp-product table.shop_attributes {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.sp-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.625rem;
	}

	.sp-related__card {
		border-radius: 16px;
	}

	.sp-related__card:hover {
		transform: none;
	}

	.sp-related__body {
		padding: 0.625rem 0.625rem 0.75rem;
	}

	.sp-related__name {
		font-size: 0.8125rem;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.sp-related__price {
		font-size: 0.8125rem;
	}

	.sp-related__atc {
		padding: 0.5625rem 0.5rem;
		font-size: 0.6875rem;
	}

	.sp-related {
		padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0));
	}

	.sp-sticky__inner {
		gap: 0.625rem;
	}

	.sp-sticky__btn span {
		display: none;
	}

	.sp-sticky__btn {
		min-width: 2.75rem;
		padding: 0.6875rem 1rem;
	}

	.product-page .woocommerce-notices-wrapper {
		padding-top: clamp(4.5rem, 12vw, 5.5rem);
	}

	.product-page[data-sp-scroll] [data-sp-reveal]:not(.is-revealed) {
		opacity: 1;
		transform: none;
	}

	.product-page[data-sp-scroll] [data-sp-reveal].is-revealed {
		animation: none;
	}
}

@media (max-width: 720px) {
	.sp-summary__purchase .cart {
		flex-direction: column;
	}

	.sp-summary__purchase .quantity,
	.sp-summary__purchase .single_add_to_cart_button,
	.sp-summary__purchase .button.alt {
		width: 100%;
	}

	.sp-summary__purchase .quantity {
		justify-content: center;
	}

	.sp-features__highlight {
		padding: 0.75rem;
	}

	.sp-tabs__panel .comment-form input[type="submit"],
	.sp-tabs__panel #respond input#submit {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.sp-hero {
		padding-block: clamp(4.5rem, 14vw, 5.5rem) 1.125rem;
	}

	.sp-hero__inner,
	.sp-features__inner,
	.sp-tabs__inner,
	.sp-related__inner {
		padding-inline: max(1rem, var(--rbz-gutter));
	}

	.sp-hero__back {
		width: 100%;
		justify-content: center;
	}

	.sp-gallery__thumbs {
		margin-inline: calc(-1 * max(1rem, var(--rbz-gutter)));
		padding-inline: max(1rem, var(--rbz-gutter));
		scroll-padding-inline: max(1rem, var(--rbz-gutter));
	}

	.sp-gallery__stage {
		border-radius: 16px;
	}

	.sp-gallery__badge {
		top: 0.625rem;
		font-size: 0.625rem;
	}

	.sp-gallery__zoom {
		width: 2.25rem;
		height: 2.25rem;
		bottom: 0.625rem;
		inset-inline-end: 0.625rem;
	}

	.sp-summary__title {
		font-size: clamp(1.25rem, 7vw, 1.5rem);
	}

	.sp-summary__price {
		font-size: 1.25rem;
	}

	.sp-features__highlights {
		grid-template-columns: 1fr;
	}

	.sp-features__calc-row {
		flex-wrap: wrap;
	}

	.sp-features__calc-input {
		min-width: 0;
		flex: 1 1 100%;
	}

	.sp-related__grid {
		gap: 0.5rem;
	}

	.sp-related__atc span {
		display: none;
	}

	.sp-sticky {
		padding-inline: max(1rem, var(--rbz-gutter));
	}

	.sp-sticky__name {
		font-size: 0.75rem;
	}

	.sp-sticky__price {
		font-size: 0.875rem;
	}
}

@media (min-width: 1024px) {
	.sp-sticky {
		display: none !important;
	}
}

@media (hover: none) {
	.sp-gallery__thumb:hover,
	.sp-gallery__zoom:hover,
	.sp-summary__purchase .single_add_to_cart_button:hover,
	.sp-related__card:hover,
	.sp-related__card:hover .sp-related__img {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-page[data-sp-scroll] [data-sp-reveal],
	.sp-tabs__panel,
	.sp-related__card:hover {
		animation: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}

/* ── Dark mode ── */

html.rbz-dark .product-page,
html.rbz-dark .sp-hero,
html.rbz-dark .sp-tabs,
html.rbz-dark .sp-related {
	background: transparent;
}

html.rbz-dark .sp-summary__title,
html.rbz-dark .sp-related__name,
html.rbz-dark .sp-tabs__prose {
	color: #e2e8f0;
}

html.rbz-dark .sp-summary__excerpt,
html.rbz-dark .sp-summary__rating-count,
html.rbz-dark .sp-hero__back {
	color: #94a3b8;
}

html.rbz-dark .sp-summary__trust-item,
html.rbz-dark .sp-related__card,
html.rbz-dark .sp-tabs__nav,
html.rbz-dark .sp-tabs__panel .comment-form input[type="text"],
html.rbz-dark .sp-tabs__panel .comment-form input[type="email"],
html.rbz-dark .sp-tabs__panel .comment-form textarea,
html.rbz-dark .sp-tabs__panel .comment-form-rating select,
html.rbz-dark .sp-tabs__panel .comment_container,
html.rbz-dark .sp-tabs__panel .woocommerce-noreviews {
	border-color: rgba(63, 154, 68, 0.2);
	background: rgba(15, 23, 42, 0.45);
}

html.rbz-dark .sp-tabs__panel .woocommerce-Reviews-title,
html.rbz-dark .sp-tabs__panel #reply-title,
html.rbz-dark .sp-tabs__panel .comment-form label {
	color: #e2e8f0;
}

html.rbz-dark .sp-tabs__panel .comment-notes,
html.rbz-dark .sp-tabs__panel .comment-form-cookies-consent,
html.rbz-dark .sp-tabs__panel .woocommerce-noreviews,
html.rbz-dark .sp-tabs__panel .comment-text,
html.rbz-dark .sp-tabs__panel .description,
html.rbz-dark .sp-tabs__panel .meta {
	color: #94a3b8;
}

html.rbz-dark .sp-tabs__panel .comment-form input[type="text"],
html.rbz-dark .sp-tabs__panel .comment-form input[type="email"],
html.rbz-dark .sp-tabs__panel .comment-form textarea,
html.rbz-dark .sp-tabs__panel .comment-form-rating select {
	color: #e2e8f0;
}

html.rbz-dark .sp-hero__back,
html.rbz-dark .sp-hero__crumb-wrap {
	background: rgba(20, 28, 22, 0.78);
	border-color: rgba(63, 154, 68, 0.15);
}

html.rbz-dark .sp-sticky {
	background: rgba(14, 20, 16, 0.94);
	border-top-color: rgba(63, 154, 68, 0.15);
}

html.rbz-dark .sp-features__title,
html.rbz-dark .sp-features__card-title,
html.rbz-dark .sp-features__panel-title,
html.rbz-dark .sp-features__highlight-value,
html.rbz-dark .sp-features__nut-label,
html.rbz-dark .sp-features__dl-row dd,
html.rbz-dark .sp-features__tip p,
html.rbz-dark .sp-features__storage-list li,
html.rbz-dark .sp-summary__stat-value {
	color: #e2e8f0;
}

html.rbz-dark .sp-features__desc,
html.rbz-dark .sp-features__highlight-label,
html.rbz-dark .sp-features__nutrition-note,
html.rbz-dark .sp-features__storage-text,
html.rbz-dark .sp-features__dl-row dt,
html.rbz-dark .sp-summary__stat-label {
	color: #94a3b8;
}

html.rbz-dark .sp-features__highlight,
html.rbz-dark .sp-features__nutrition,
html.rbz-dark .sp-features__panel,
html.rbz-dark .sp-summary__stat,
html.rbz-dark .sp-summary__features-link {
	border-color: rgba(63, 154, 68, 0.18);
	background: rgba(15, 23, 42, 0.5);
}

html.rbz-dark .sp-features__calc-input,
html.rbz-dark .sp-features__calc-btn {
	background: rgba(15, 23, 42, 0.6);
	border-color: rgba(63, 154, 68, 0.18);
	color: #e2e8f0;
}

html.rbz-dark .sp-features__calorie-value {
	color: #e2e8f0;
}

html.rbz-dark .sp-features__badge,
html.rbz-dark .sp-features__cert {
	background: rgba(63, 154, 68, 0.12);
	color: #86efac;
}
