/*
 * Solomaxhub brand layer (light).
 * Loaded after every other theme stylesheet so these tokens win.
 * Dark warm palette built around the Solomaxhub terracotta.
 *
 *   --sx-clay      #C24E27  buttons with white text (4.8:1)
 *   --sx-clay-text #E0784F  orange text on dark surfaces (6:1+)
 *   --sx-ember     #E28763  soft decoration only, never behind text
 *   --sx-night     #16120F  page background
 */

:root {
	color-scheme: light;

	--sx-clay: #FD7702;
	--sx-clay-hover: #E86A00;
	--sx-clay-text: #C2410C;
	--sx-ember: #FF9A1F;
	--sx-night: #FAF8F4;
	--sx-surface: #FFFFFF;
	--sx-raised: #F5F0EA;
	--sx-ink: #1C1410;
	--sx-ink-2: #3F352E;
	--sx-muted: #6B5E54;
	--sx-line: rgba(28, 20, 16, 0.10);
	--sx-line-strong: rgba(28, 20, 16, 0.18);
	--sx-footer: #1C1410;

	/* Legacy tokens used across the theme */
	--primary-color: var(--sx-clay);
	--primary-strong: var(--sx-clay-hover);
	--primary-soft: rgba(253, 119, 2, 0.10);
	--primary-glow: rgba(253, 119, 2, 0.18);
	--secondary-color: var(--sx-clay-hover);
	--accent-color: var(--sx-ember);

	--dark-bg: var(--sx-night);
	--surface-bg: var(--sx-surface);
	--surface-solid: var(--sx-surface);
	--surface-elevated: var(--sx-surface);
	--surface-raised: var(--sx-raised);
	--card-bg: var(--sx-surface);

	--text-main: var(--sx-ink);
	--text-strong: var(--sx-ink);
	--text-muted: var(--sx-muted);

	--glass-border: var(--sx-line);
	--line-soft: var(--sx-line);
	--line-medium: var(--sx-line-strong);

	/* Newer --nt-* component system */
	--nt-bg: var(--sx-night);
	--nt-bg-2: var(--sx-raised);
	--nt-elevated: var(--sx-surface);
	--nt-card: var(--sx-surface);
	--nt-interactive: var(--sx-raised);
	--nt-text: var(--sx-ink);
	--nt-text-2: var(--sx-ink-2);
	--nt-muted: var(--sx-muted);
	--nt-muted-2: #7D7066;
	--nt-border: var(--sx-line);
	--nt-border-strong: var(--sx-line-strong);
	--nt-border-subtle: rgba(28, 20, 16, 0.06);
	--nt-orange: var(--sx-clay);
	--nt-purple: var(--sx-clay-hover);
	--nt-surface-soft: #FFFFFF;
	--nt-surface-raised: #FFFFFF;
	--nt-focus: #C2410C;
}

/* One flat warm background: no blue/purple washes */
html body,
html body.nt-v6,
html body.single-product,
html body.single-product .nt-single-product-v6 {
	background: var(--sx-night) !important;
	background-image: none !important;
}

/* Headline accents: vivid terracotta (large text only). Small orange text uses the deeper tone. */
.bm-display__accent,
body .nt-hero-v6 .nt-display-title__accent {
	color: var(--sx-clay) !important;
	-webkit-text-fill-color: var(--sx-clay) !important;
}

.bm-eyebrow,
.site-logo__accent {
	color: var(--sx-clay-text) !important;
	-webkit-text-fill-color: var(--sx-clay-text) !important;
}

/* Primary buttons: bright orange like the logo, bold white text */
.bm-btn--primary,
.nt-btn--primary,
.btn-primary,
.btn-brand-primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.nt-native-purchase-form .single_add_to_cart_button {
	background: var(--sx-clay) !important;
	background-image: none !important;
	border-color: var(--sx-clay) !important;
	color: #FFFFFF !important;
	font-weight: 700 !important;
}

.bm-btn--primary:hover,
.nt-btn--primary:hover,
.btn-primary:hover,
.btn-brand-primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.nt-native-purchase-form .single_add_to_cart_button:hover {
	background: var(--sx-clay-hover) !important;
	border-color: var(--sx-clay-hover) !important;
}

/* Logo uploaded under Customize > Site identity */
.site-custom-logo img,
.site-custom-logo .custom-logo {
	max-height: 34px !important;
	width: auto !important;
}

/* Hero showcase: real product rows with a price instead of a badge */
.bm-showcase-item__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.bm-showcase-item__tag {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	color: var(--sx-ink) !important;
	background: transparent !important;
	border: 0 !important;
	font-weight: 700;
}

.bm-showcase-item__tag del {
	opacity: 0.55;
	font-weight: 500;
	margin-right: 4px;
}

.bm-showcase-item__tag ins {
	text-decoration: none;
}

/* Keyboard focus stays visible on the warm palette */
body :where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--nt-focus) !important;
	outline-offset: 3px;
}

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

/* Footer: light and airy like MyCodedHub, warm texture, orange accents */
html body .nt-footer-v6,
html body .site-footer {
	position: relative;
	background-color: #FFF8F1 !important;
	background-image:
		radial-gradient(60% 80% at 0% 0%, rgba(253, 119, 2, 0.08), transparent 70%),
		radial-gradient(rgba(194, 65, 12, 0.07) 1px, transparent 1.3px) !important;
	background-size: 100% 100%, 24px 24px !important;
	border-top: 1px solid #FFE0C2 !important;
	color: var(--sx-ink);
}

html body .nt-footer-v6::before,
html body .site-footer::before {
	display: none !important;
}

html body .nt-footer-v6 p {
	color: var(--sx-ink-2) !important;
	max-width: 38ch;
	line-height: 1.6;
}

html body .nt-footer-group__toggle,
html body .nt-footer-group__toggle span {
	color: var(--sx-ink) !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em;
}

html body .nt-footer-group__links a {
	color: var(--sx-ink-2) !important;
	font-weight: 500;
	text-decoration: none;
}

html body .nt-footer-group__links a:hover {
	color: var(--sx-clay-text) !important;
}

/* WhatsApp support: compact pill */
.sx-footer-wa {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 16px 0 14px;
	padding: 6px 16px 6px 6px;
	border-radius: 999px;
	background: #FFFFFF;
	border: 1px solid #BBF7D0;
	box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sx-footer-wa:hover {
	border-color: #22C55E;
	box-shadow: 0 6px 16px rgba(22, 163, 74, 0.16);
}

.sx-footer-wa__icon {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #25D366;
	color: #FFFFFF;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.sx-footer-wa__text {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--sx-ink);
	white-space: nowrap;
}

.sx-footer-wa__go {
	color: #16A34A;
	transition: transform 0.2s ease;
}

.sx-footer-wa:hover .sx-footer-wa__go {
	transform: translateX(3px);
}

/* Trust badges under the blurb */
.sx-footer-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.sx-footer-badges span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: 999px;
	background: #FFF1E6;
	border: 1px solid #FFD2A8;
	color: var(--sx-clay-text);
	font-size: 0.78rem;
	font-weight: 800;
}

/* Social icons: small round buttons */
html body .nt-footer-v6__socials a {
	display: inline-grid !important;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #FFFFFF !important;
	border: 1px solid #FFD2A8 !important;
	color: var(--sx-ink-2) !important;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

html body .nt-footer-v6__socials a:hover {
	border-color: var(--sx-clay) !important;
	color: var(--sx-clay) !important;
}

html body .nt-footer-v6__socials a[aria-label="WhatsApp"] {
	background: #25D366 !important;
	border-color: #25D366 !important;
	color: #FFFFFF !important;
}

/* Payment methods row and bottom bar */
html body .nt-footer-payments,
html body .nt-footer-payments * {
	color: var(--sx-ink-2) !important;
	border-color: #FFD2A8 !important;
}

html body .nt-footer-payments em {
	background: #FFFFFF !important;
}

html body .nt-footer-bottom {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 20px;
	border-top: 1px solid #FFE0C2 !important;
	color: var(--sx-muted) !important;
}

html body .nt-footer-bottom a,
html body .nt-footer-bottom span {
	color: var(--sx-muted) !important;
}

.sx-footer-tagline {
	order: 2;
	margin-left: auto;
	font-style: normal;
	color: var(--sx-muted);
}

/* Floating WhatsApp support button (sits above the sign-in button) */
.sx-wa-float {
	position: fixed;
	right: 18px;
	bottom: 84px;
	z-index: 99980;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 16px 7px 7px;
	border-radius: 999px;
	background: #FFFFFF;
	border: 1.5px solid #BBF7D0;
	box-shadow: 0 12px 30px rgba(22, 163, 74, 0.22);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sx-wa-float:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(22, 163, 74, 0.3);
}

.sx-wa-float__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #25D366;
	color: #FFFFFF;
	font-size: 1.4rem;
}

.sx-wa-float__text small {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #15803D;
}

.sx-wa-float__text strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--sx-ink);
}

@media (max-width: 600px) {
	.sx-wa-float { right: 12px; bottom: 72px; padding: 6px; }
	.sx-wa-float__text { display: none; }
	.sx-footer-tagline { margin-left: 0; }
}

/* Header: white bar with a hairline, like the reference stores */
html body .nt-floating-header {
	background: rgba(255, 255, 255, 0.94) !important;
	border-bottom: 1px solid var(--sx-line) !important;
	box-shadow: 0 1px 0 rgba(28, 20, 16, 0.02) !important;
	-webkit-backdrop-filter: saturate(160%) blur(10px);
	backdrop-filter: saturate(160%) blur(10px);
}

/* "Available" / "In stock" green, dark enough to read on white */
.nt-product-card-v6__status.is-available,
.bm-showcase-pill,
[class*="status"].is-available {
	color: #047857 !important;
}

.bm-showcase-pill {
	background: #ECFDF5 !important;
	border-color: #A7F3D0 !important;
}

/* Product page: "Add to cart" is the secondary action next to "Buy now" */
body.single-product form.cart button.single_add_to_cart_button:not(.nt-buy-now),
body.single-product .nt-native-purchase-form button.single_add_to_cart_button:not(.nt-buy-now) {
	background: #FFFFFF !important;
	color: var(--sx-ink) !important;
	border: 1px solid var(--sx-line-strong) !important;
}

body.single-product form.cart button.single_add_to_cart_button:not(.nt-buy-now):hover {
	border-color: var(--sx-clay) !important;
	color: var(--sx-clay) !important;
}


.acp-world-menu {
	box-shadow: 0 8px 24px rgba(28, 20, 16, 0.12) !important;
}

/* Scrollbar on the light page */
html {
	scrollbar-color: #CFC3B8 var(--sx-night);
}

/* ------------------------------------------------------------------
 * Tool cards: one card per tool (home + shop)
 * ------------------------------------------------------------------ */
.sx-tools--shop {
	margin: 0 0 48px;
}

.sx-tools__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.sx-tools__title {
	margin: 0 0 6px;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--sx-ink);
}

.sx-tools--shop .sx-tools__title {
	font-size: 1.35rem;
}

.sx-tools__sub {
	margin: 0;
	max-width: 56ch;
	color: var(--sx-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.sx-tools__all {
	flex-shrink: 0;
	color: var(--sx-clay-text);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	white-space: nowrap;
}

.sx-tools__all:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.sx-tools__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 14px;
}

.sx-tools__grid > li {
	margin: 0;
	min-width: 0;
}

.sx-tool {
	position: relative;
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	height: 100%;
	padding: 16px 44px 16px 16px;
	border: 1px solid var(--sx-line);
	border-radius: 14px;
	background: var(--sx-surface);
	color: var(--sx-ink);
	text-decoration: none;
	transition: border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.sx-tool:hover {
	border-color: color-mix(in srgb, var(--tool-a) 55%, transparent);
	background: var(--sx-raised);
	transform: translateY(-2px);
}

.sx-tool__art {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background:
		radial-gradient(120% 120% at 20% 10%, color-mix(in srgb, var(--tool-a) 70%, transparent), transparent 60%),
		var(--tool-b);
	border: 1px solid color-mix(in srgb, var(--tool-a) 35%, transparent);
}

.sx-tool__mark {
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.sx-tool__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.sx-tool__name {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sx-tool__meta {
	color: var(--sx-muted);
	font-size: 0.82rem;
}

.sx-tool__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.sx-tool__price small {
	color: var(--sx-muted);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sx-tool__price strong {
	font-size: 1rem;
	color: var(--sx-ink);
	white-space: nowrap;
}

.sx-tool__go {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--sx-muted);
	transition: transform 0.18s ease, color 0.18s ease;
}

.sx-tool:hover .sx-tool__go {
	color: var(--sx-clay-text);
	transform: translate(3px, -50%);
}

.sx-plans-title {
	margin: 0 0 16px;
	font-size: 1.35rem;
	letter-spacing: -0.02em;
	color: var(--sx-ink);
}

@media (max-width: 640px) {
	.sx-tools__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.sx-tools__grid {
		grid-template-columns: 1fr;
	}
}

/* Hero showcase: brand plate fills the icon square */
.bm-showcase-item__icon .nt-card-art--badge {
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	border-radius: inherit !important;
}

.bm-showcase-item__icon .nt-card-art__mark {
	font-size: 0.72rem !important;
}

/* Plugin floating pills (Sign in, language): white on the light page */
a.acp-sf-fab,
.acp-world > summary,
.acp-world [role="button"] {
	background: #FFFFFF !important;
	color: var(--sx-ink) !important;
	border: 1px solid var(--sx-line-strong) !important;
	box-shadow: 0 6px 18px rgba(28, 20, 16, 0.10) !important;
}

/* Hero showcase: brand plate fills the icon square and never escapes it */
.bm-showcase-item__icon {
	position: relative !important;
	overflow: hidden !important;
	flex-shrink: 0;
}

.bm-showcase-item__icon .nt-card-art--badge {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	aspect-ratio: auto !important;
	border-radius: inherit;
}


/* ------------------------------------------------------------------
 * Wholesale hero + retailer band
 * ------------------------------------------------------------------ */
.sx-hero-eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.sx-hero-title {
	font-size: clamp(2.3rem, 1.2rem + 2.9vw, 3.45rem) !important;
	line-height: 1.04 !important;
	font-weight: 800 !important;
	letter-spacing: -0.035em !important;
}

.sx-hero-title > span {
	display: block;
}

.sx-retail-band {
	background: #FFF4EA !important;
	border-top: 1px solid #FFE0C2;
	border-bottom: 1px solid #FFE0C2;
}

.sx-retail-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 48px;
	align-items: center;
}

.sx-retail-band__lead {
	max-width: 52ch;
	margin: 14px 0 22px;
	color: var(--sx-ink-2);
	font-size: 1.02rem;
	line-height: 1.6;
}

.sx-retail-band__card {
	padding: 28px;
	border-radius: 18px;
	background: #FFFFFF;
	border: 1px solid #FFD2A8;
	box-shadow: 0 18px 40px rgba(253, 119, 2, 0.12);
}

.sx-retail-band__price {
	margin: 0 0 6px;
	font-size: 1rem;
	color: var(--sx-muted);
}

.sx-retail-band__price strong {
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--sx-ink);
}

.sx-retail-band__card-title {
	margin: 0 0 14px;
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--sx-ink);
}

.sx-retail-band__card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.sx-retail-band__card li {
	display: flex;
	gap: 10px;
	align-items: baseline;
	color: var(--sx-ink-2);
	font-weight: 600;
}

.sx-retail-band__card li i {
	color: var(--sx-clay);
}

@media (max-width: 860px) {
	.sx-retail-band__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

/* Product page: quiet buttons use the brand orange, not blue */
body.single-product .nt-btn--quiet {
	border-color: var(--sx-line-strong) !important;
	color: var(--sx-ink) !important;
	box-shadow: none !important;
}

body.single-product .nt-btn--quiet:hover {
	border-color: var(--sx-clay) !important;
	color: var(--sx-clay-text) !important;
}

body.single-product .comment-form input[type="submit"],
body.single-product #review_form #submit {
	background: var(--sx-clay) !important;
	border-color: var(--sx-clay) !important;
	color: #FFFFFF !important;
	font-weight: 700 !important;
}

/* Footer logo file already has light lettering */
.sx-footer-logo img {
	display: block;
	height: 36px;
	width: auto;
}

/* Product page price: one colour, same orange as the product cards */
body.single-product .nt-product-price-v6 {
	background: #FFFFFF !important;
	border: 1px solid #FFD2A8 !important;
	box-shadow: none !important;
}

body.single-product .nt-product-price-v6 .nt-micro-label {
	color: var(--sx-muted) !important;
}

body.single-product .nt-product-price-v6__line strong,
body.single-product .nt-product-price-v6__line strong .woocommerce-Price-amount,
body.single-product .nt-product-price-v6__line strong .woocommerce-Price-currencySymbol,
body.single-product .nt-product-price-v6__line ins,
body.single-product .nt-product-price-v6__line ins .woocommerce-Price-currencySymbol {
	color: var(--sx-clay) !important;
	-webkit-text-fill-color: var(--sx-clay) !important;
}

/* "My orders": drop the blue/orange gradient ring */
body.single-product .nt-btn--quiet::before,
body.single-product .nt-btn--quiet::after {
	display: none !important;
}

body.single-product .nt-btn--quiet {
	background: #FFFFFF !important;
	border: 1px solid var(--sx-line-strong) !important;
	outline: 0 !important;
}

/* ------------------------------------------------------------------
 * Motion layer: live dots, glow, float, marquee, button shine.
 * All of it switches off under prefers-reduced-motion (rule above).
 * ------------------------------------------------------------------ */
@keyframes sx-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
	70%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
	100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes sx-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-10px); }
}

@keyframes sx-glow {
	0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
	50%      { opacity: 0.85; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes sx-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@keyframes sx-shine {
	0%, 72% { background-position: 160% 0; }
	100%    { background-position: -60% 0; }
}

/* Live dots */
.sx-live-dot,
.nt-product-card-v6__status.is-available > i {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #10B981 !important;
	animation: sx-pulse 2s ease-out infinite;
	vertical-align: middle;
}

.sx-live-dot {
	margin-right: 4px;
}

/* Soft orange glow behind the hero */
.bm-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.bm-hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 45%;
	left: 72%;
	width: 720px;
	height: 720px;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(253, 119, 2, 0.30), rgba(255, 154, 31, 0.14) 55%, transparent 72%);
	transform: translate(-50%, -50%);
	animation: sx-glow 9s ease-in-out infinite;
	pointer-events: none;
}

/* Hero product panel floats gently */
.bm-hero__showcase {
	animation: sx-float 7s ease-in-out infinite;
	will-change: transform;
}

/* Category marquee */
.sx-marquee {
	overflow: hidden;
	padding: 14px 0;
	border-top: 1px solid var(--sx-line);
	border-bottom: 1px solid var(--sx-line);
	background: #FFFFFF;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.sx-marquee__track {
	display: flex;
	width: max-content;
	animation: sx-marquee 40s linear infinite;
}

.sx-marquee:hover .sx-marquee__track,
.sx-marquee:focus-within .sx-marquee__track {
	animation-play-state: paused;
}

.sx-marquee__group {
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0 5px;
	list-style: none;
}

.sx-marquee__group a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid var(--sx-line-strong);
	border-radius: 999px;
	background: #FFFFFF;
	color: var(--sx-ink);
	font-size: 0.88rem;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.sx-marquee__group a i {
	color: var(--sx-clay);
	font-size: 0.85em;
}

.sx-marquee__group a:hover {
	border-color: var(--sx-clay);
	color: var(--sx-clay-text);
}

/* Shine sweep on the main call-to-action buttons */
.bm-hero__actions .bm-btn--primary,
.sx-retail-band .bm-btn--primary {
	background-color: var(--sx-clay) !important;
	background-image: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.45) 50%, transparent 62%) !important;
	background-size: 250% 100% !important;
	background-repeat: no-repeat !important;
	animation: sx-shine 4.5s ease-in-out infinite;
}

/* Product cards lift a touch more on hover */
.nt-product-card-v6 {
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nt-product-card-v6:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(28, 20, 16, 0.10);
	border-color: #FFD2A8;
}

@media (prefers-reduced-motion: reduce) {
	.sx-marquee__track { animation: none !important; flex-wrap: wrap; width: auto; }
	.sx-marquee__group[aria-hidden="true"] { display: none; }
}


/* ------------------------------------------------------------------
 * Round 10: logo, bigger type, clickable cards, radar, fixes
 * ------------------------------------------------------------------ */

/* Bigger, confident logo */
.sx-header-logo img,
.site-custom-logo img,
.site-custom-logo .custom-logo {
	height: 42px !important;
	max-height: 42px !important;
	width: auto !important;
}

.sx-footer-logo img {
	height: 44px !important;
	width: auto !important;
}

@media (max-width: 640px) {
	.sx-header-logo img,
	.site-custom-logo img { height: 32px !important; max-height: 32px !important; }
}

/* Header "Marketplace" button */
.nt-header-shop-cta {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-weight: 800 !important;
}

/* Hero: bigger, bolder reading */
.bm-hero__lead {
	font-size: 1.14rem !important;
	line-height: 1.6 !important;
	color: var(--sx-ink-2) !important;
}

.bm-hero__proof li {
	font-size: 0.98rem !important;
	font-weight: 700 !important;
	color: var(--sx-ink) !important;
}

/* Hero product card: prices big and proud */
.bm-showcase-item__info strong {
	font-size: 1.02rem !important;
	font-weight: 800 !important;
	color: var(--sx-ink) !important;
}

.bm-showcase-item__tag,
.bm-showcase-item__tag .woocommerce-Price-amount,
.bm-showcase-item__tag .woocommerce-Price-currencySymbol {
	font-size: 1.22rem !important;
	font-weight: 800 !important;
	color: var(--sx-clay) !important;
	letter-spacing: -0.01em;
}

.bm-showcase-stat {
	font-size: 0.95rem !important;
	font-weight: 800 !important;
	color: var(--sx-ink) !important;
}

.bm-showcase-pill {
	font-size: 0.8rem !important;
	font-weight: 800 !important;
}

/* Category cards: warm orange tint so they read as clickable */
.bm-cat {
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF6EE 100%) !important;
	border: 1.5px solid #FFD2A8 !important;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bm-cat:hover {
	border-color: var(--sx-clay) !important;
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(253, 119, 2, 0.16) !important;
}

.bm-cat__icon {
	width: 46px !important;
	height: 46px !important;
	display: grid !important;
	place-items: center !important;
	border-radius: 12px !important;
	background: var(--sx-clay) !important;
	color: #FFFFFF !important;
	font-size: 1.15rem !important;
}

.bm-cat__icon i {
	color: #FFFFFF !important;
}

.bm-cat h3 {
	font-size: 1.15rem !important;
	font-weight: 800 !important;
}

.bm-cat p,
.bm-cat__meta {
	font-size: 0.92rem !important;
}

.bm-cat__go {
	font-weight: 800 !important;
	color: var(--sx-clay-text) !important;
}

/* Product cards: warm edge */
.nt-product-card-v6 {
	border: 1.5px solid #FFE0C2 !important;
}

/* Buy now: icon sits next to the words, centred */
.bm-btn-buy-now,
body.single-product .nt-btn--primary {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
}

.bm-btn-buy-now .nt-icon-svg {
	position: static !important;
	margin: 0 !important;
	flex-shrink: 0;
}

/* Product page stock dot blinks like the cards */
.nt-stock-state.is-in-stock > i {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10B981 !important;
	animation: sx-pulse 2s ease-out infinite;
}

/* Bottom corners: language switcher left, sign-in button right, no overlap.
   The plugin anchors with logical properties, so override those too. */
.acp-world {
	inset-inline-end: auto !important;
	inset-inline-start: 16px !important;
	right: auto !important;
	left: 16px !important;
	color: var(--sx-ink) !important;
}

.acp-world summary {
	background: #FFFFFF !important;
	color: var(--sx-ink) !important;
	border: 1.5px solid #FFD2A8 !important;
	box-shadow: 0 6px 20px rgba(28, 20, 16, 0.12) !important;
	font-weight: 700;
}

.acp-world-menu {
	inset-inline-end: auto !important;
	inset-inline-start: 0 !important;
	right: auto !important;
	left: 0 !important;
	width: min(330px, calc(100vw - 32px)) !important;
	background: #FFFFFF !important;
	color: var(--sx-ink) !important;
	border: 1.5px solid #FFD2A8 !important;
}

.acp-world input {
	background: #FFFFFF !important;
	color: var(--sx-ink) !important;
	border: 1.5px solid var(--sx-line-strong) !important;
}

.acp-world-options a,
.acp-world-options button,
.acp-world-options span {
	color: var(--sx-ink) !important;
}

.acp-world-options a:hover,
.acp-world-options button:hover,
.acp-world-options button[aria-pressed="true"] {
	background: #FFF1E6 !important;
	color: var(--sx-clay-text) !important;
}

.acp-world small,
.acp-world-menu > a {
	color: var(--sx-muted) !important;
}

/* ---------- Live orders radar (compact) ---------- */
@keyframes sx-sweep { to { transform: rotate(360deg); } }
@keyframes sx-blip {
	0%, 100% { opacity: 0; transform: scale(0.4); }
	20%, 60% { opacity: 1; transform: scale(1); }
}

.sx-radar {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	margin-top: 14px;
	padding: 12px 16px;
	border-radius: 16px;
	background: #FFFFFF;
	border: 1.5px solid #FFD2A8;
	box-shadow: 0 10px 26px rgba(253, 119, 2, 0.10);
	max-width: 100%;
	overflow: hidden;
}

.sx-radar__scope {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	background: radial-gradient(circle, #FFF6EE 0%, #FFE8D4 100%);
	border: 1.5px solid #FFC08A;
}

.sx-radar__ring {
	position: absolute;
	inset: 22%;
	border: 1px solid rgba(253, 119, 2, 0.35);
	border-radius: 50%;
}

.sx-radar__ring + .sx-radar__ring { inset: 40%; }

.sx-radar__sweep {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: conic-gradient(from 0deg, rgba(253, 119, 2, 0.55), rgba(253, 119, 2, 0) 70deg, transparent 360deg);
	animation: sx-sweep 3s linear infinite;
}

.sx-radar__blip {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sx-clay);
	box-shadow: 0 0 0 2px rgba(253, 119, 2, 0.25);
	animation: sx-blip 3s ease-in-out infinite;
}

.sx-radar__blip--a { top: 22%; left: 58%; }
.sx-radar__blip--b { top: 60%; left: 24%; animation-delay: 1s; }
.sx-radar__blip--c { top: 55%; left: 68%; animation-delay: 2s; }

.sx-radar__body { min-width: 0; }

.sx-radar__label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 2px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #047857;
	line-height: 1.2;
}

/* All rows share one grid cell, so the box is exactly one row tall at any width */
.sx-radar__list {
	display: grid;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sx-radar__list > li {
	grid-area: 1 / 1;
	min-width: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.sx-radar__list > li.is-active {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.sx-radar__list strong,
.sx-radar__what,
.sx-radar__list small {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.sx-radar__list strong {
	font-size: 1rem;
	font-weight: 800;
	color: var(--sx-ink);
}

.sx-radar__list strong span {
	font-weight: 700;
	color: var(--sx-ink-2);
}

.sx-radar__what {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--sx-clay-text);
}

.sx-radar__list small {
	font-size: 0.78rem;
	color: var(--sx-muted);
}

@media (max-width: 600px) {
	.sx-radar { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 10px 12px; }
	.sx-radar__scope { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
	.sx-radar__list > li { transition: none; }
}

.sx-radar__link {
	color: inherit;
	text-decoration: none;
}

.sx-radar__link:hover strong {
	color: var(--sx-clay-text);
}

/* Small phones: keep the hero grid inside the screen */
.bm-hero__grid > * {
	min-width: 0;
}

@media (max-width: 900px) {
	.bm-hero__grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

/* Phones: hero product rows stack the price under the name */
@media (max-width: 600px) {
	.bm-showcase-item {
		display: grid !important;
		grid-template-columns: 40px minmax(0, 1fr) !important;
		grid-template-areas: "icon info" "icon tag" !important;
		column-gap: 12px !important;
		row-gap: 4px !important;
		align-items: start !important;
	}

	.bm-showcase-item__icon { grid-area: icon; width: 40px !important; height: 40px !important; }
	.bm-showcase-item__info { grid-area: info; }
	.bm-showcase-item__tag { grid-area: tag; justify-self: start; }

	.sx-hero-title {
		font-size: clamp(2rem, 8.4vw, 2.6rem) !important;
	}
}

/* The hidden "Skip to content" link cast a grey shadow into the top-left corner */
.skip-link:not(:focus) {
	box-shadow: none !important;
}

@media (max-width: 600px) {
	.bm-showcase-item__tag {
		padding-left: 0 !important;
		padding-inline: 0 !important;
	}

	/* Corner buttons: smaller on phones so they cover less of the page */
	.acp-world {
		bottom: 10px !important;
		left: 10px !important;
		inset-inline-start: 10px !important;
	}

	.acp-world summary {
		padding: 7px 11px !important;
		font-size: 13px !important;
	}

	.acp-sf-fab {
		transform: scale(0.88);
		transform-origin: bottom right;
	}
}

/* ------------------------------------------------------------------
 * Customer reviews
 * ------------------------------------------------------------------ */
.sx-reviews {
	background: #FFFFFF;
}

.sx-reviews__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
}

.sx-reviews__head .bm-display > span {
	display: block;
}

.sx-reviews__score {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 14px 0 0;
	padding: 8px 16px;
	border-radius: 999px;
	background: #FFF4EA;
	border: 1px solid #FFD2A8;
	color: var(--sx-ink-2);
	font-weight: 600;
}

.sx-reviews__score strong {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--sx-ink);
}

.sx-stars {
	display: inline-flex;
	gap: 2px;
}

.sx-stars svg {
	fill: #E5DDD5;
}

.sx-stars svg.is-on {
	fill: #F59E0B;
}

.sx-reviews__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sx-review {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px;
	border-radius: 18px;
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F2 100%);
	border: 1.5px solid #FFE0C2;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sx-review:hover {
	transform: translateY(-3px);
	border-color: #FFC08A;
	box-shadow: 0 14px 30px rgba(253, 119, 2, 0.12);
}

.sx-review__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sx-review__quote {
	font-size: 2.6rem;
	line-height: 0.6;
	font-weight: 800;
	color: #FFC08A;
	font-family: Georgia, serif;
}

.sx-review__text {
	flex: 1;
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--sx-ink);
}

.sx-review__foot {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding-top: 14px;
	border-top: 1px solid var(--sx-line);
}

.sx-review__avatar {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--sx-clay);
	color: #FFFFFF;
	font-weight: 800;
}

.sx-review__who {
	min-width: 0;
}

.sx-review__who strong {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-weight: 800;
	color: var(--sx-ink);
}

.sx-review__who small {
	display: block;
	font-size: 0.8rem;
	color: var(--sx-muted);
}

.sx-review__verified {
	font-style: normal;
	font-size: 0.7rem;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 999px;
	background: #ECFDF5;
	color: #047857;
	border: 1px solid #A7F3D0;
}

.sx-review__product {
	max-width: 140px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 4px 10px;
	border-radius: 999px;
	background: #FFF1E6;
	color: var(--sx-clay-text);
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
}

.sx-reviews__empty {
	max-width: 560px;
	margin: 0 auto;
	padding: 32px 28px;
	text-align: center;
	border-radius: 20px;
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF6EE 100%);
	border: 1.5px dashed #FFC08A;
}

.sx-stars--big svg {
	width: 28px;
	height: 28px;
}

.sx-reviews__empty-title {
	margin: 12px 0 6px;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--sx-ink);
}

.sx-reviews__empty p {
	color: var(--sx-ink-2);
}

.sx-reviews__empty .bm-btn {
	margin-top: 10px;
}

@media (max-width: 1024px) {
	.sx-reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.sx-reviews__grid { grid-template-columns: minmax(0, 1fr); }
	.sx-review__foot { grid-template-columns: 40px minmax(0, 1fr); }
	.sx-review__product { grid-column: 1 / -1; justify-self: start; max-width: 100%; }
}

/* Language button chevron: points up (menu opens upwards), flips when open */
.acp-world summary {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
}

.sx-chev {
	width: 8px;
	height: 8px;
	border-left: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: translateY(2px) rotate(45deg);
	transition: transform 0.2s ease;
}

.acp-world-picker[open] .sx-chev {
	transform: translateY(-2px) rotate(225deg);
}

/* Radar text must never wrap, whatever else the page does */
.sx-radar__link {
	display: block !important;
	min-width: 0;
}

.sx-radar__list strong,
.sx-radar__what,
.sx-radar__list small {
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	max-width: 100% !important;
}

/* Allow very narrow screens (e.g. folding phones at 280px) instead of forcing 320px */
html body.nt-v6 {
	min-width: 0 !important;
}

@media (max-width: 340px) {
	.nt-container { padding-inline: 10px !important; }
	.sx-hero-title { font-size: 1.85rem !important; }
	.bm-hero-search { flex-wrap: wrap; }
}

/* Hero trust points: outline icons instead of dots */
.bm-hero__proof {
	display: flex !important;
	flex-wrap: wrap;
	gap: 10px 22px !important;
	padding: 0 !important;
	list-style: none !important;
}

.bm-hero__proof li {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 0 !important;
}

.bm-hero__proof li::before,
.bm-hero__proof li::marker {
	display: none !important;
	content: none !important;
}

.sx-proof-icon {
	flex-shrink: 0;
	color: var(--sx-clay);
}

@media (max-width: 600px) {
	.bm-hero__proof {
		gap: 10px 16px !important;
	}

	.bm-hero__proof li {
		font-size: 0.92rem !important;
		white-space: nowrap;
	}
}

.sx-admin-note {
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 10px;
	background: #FEF3C7;
	border: 1px solid #FCD34D;
	color: #92400E;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.45;
}

/* "Trending now" pill and heading icon */
.sx-trend-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	padding: 5px 12px;
	border-radius: 999px;
	background: #FFF1E6;
	border: 1px solid #FFD2A8;
	color: var(--sx-clay-text);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sx-trend-line {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
}

.sx-trend-icon--big {
	flex-shrink: 0;
	color: var(--sx-clay);
	animation: sx-trend-bob 2.4s ease-in-out infinite;
}

@keyframes sx-trend-bob {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(3px, -3px); }
}

@media (max-width: 600px) {
	.sx-trend-icon--big { width: 26px; height: 26px; }
}

/* ------------------------------------------------------------------
 * "What changes the price of a plan" as icon cards
 * ------------------------------------------------------------------ */
.sx-price-factors {
	background:
		radial-gradient(60% 80% at 100% 0%, rgba(253, 119, 2, 0.10), transparent 70%),
		linear-gradient(180deg, #FFF8F1 0%, #FFFFFF 100%) !important;
}

.sx-price-factors__head {
	max-width: 680px;
	margin-inline: auto;
	text-align: center;
}

.sx-price-factors__head .bm-display > span {
	display: block;
}

.sx-price-factors__grid {
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}

.sx-factor {
	flex: 1 1 320px;
	max-width: 370px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px;
	border-radius: 18px;
	background: #FFFFFF;
	border: 1.5px solid #FFE0C2;
	box-shadow: 0 10px 26px rgba(253, 119, 2, 0.07);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sx-factor:hover {
	transform: translateY(-4px);
	border-color: var(--sx-clay);
	box-shadow: 0 16px 34px rgba(253, 119, 2, 0.16);
}

.sx-factor__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, #FF9A1F 0%, #FD7702 55%, #EA580C 100%);
	color: #FFFFFF;
	box-shadow: 0 8px 18px rgba(253, 119, 2, 0.28);
}

.sx-factor__title {
	margin: 6px 0 0;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--sx-ink);
}

.sx-factor__chip {
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: 999px;
	background: #FFF1E6;
	border: 1px solid #FFD2A8;
	color: var(--sx-clay-text);
	font-size: 0.78rem;
	font-weight: 800;
}

.sx-factor__text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--sx-ink-2);
}

@media (max-width: 640px) {
	.sx-factor { max-width: none; padding: 20px; }
}

/* Category visuals: real product artwork first, clear drawings otherwise */
.bm-cat__icon {
	width: 56px !important;
	height: 56px !important;
	padding: 0 !important;
	overflow: hidden;
	border-radius: 14px !important;
}

.sx-cat-visual {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.sx-cat-visual.is-icon {
	background: linear-gradient(135deg, #FF9A1F 0%, #FD7702 55%, #EA580C 100%);
	color: #FFFFFF;
}

.sx-cat-visual.is-image {
	background: #FFFFFF;
	box-shadow: inset 0 0 0 1px rgba(28, 20, 16, 0.08);
}

.sx-cat-visual.is-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	display: block;
}

/* Product cards pop on hover, same as the pricing cards (beats the theme's reveal rules) */
html body .nt-product-card-v6,
html body .nt-product-card-v6.is-visible {
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

html body .nt-product-card-v6:hover,
html body .nt-product-card-v6.is-visible:hover,
html body .nt-product-card-v6:focus-within {
	transform: translateY(-6px) !important;
	border-color: var(--sx-clay) !important;
	box-shadow: 0 18px 38px rgba(253, 119, 2, 0.18) !important;
	z-index: 2;
}

@media (hover: none) {
	html body .nt-product-card-v6:hover { transform: none !important; }
}

/* Hovered cards were cut off by the grid's hidden overflow */
html body .products-grid {
	overflow: visible !important;
	padding-top: 8px;
}

/* ------------------------------------------------------------------
 * Texture: no flat white sections. Warm off-white base with a faint
 * orange dot grid, and alternating warm tints between sections.
 * ------------------------------------------------------------------ */
html body.nt-v6,
html body {
	background-color: #FAF7F2 !important;
	background-image: radial-gradient(rgba(194, 65, 12, 0.07) 1px, transparent 1.3px) !important;
	background-size: 24px 24px !important;
	background-attachment: fixed;
}

.bm-home > .bm-section--plain,
.bm-home > .bm-hero,
.bm-home > .bm-cta {
	background-color: transparent !important;
}

.bm-home > .bm-section--band {
	background-color: #FFF7EF !important;
	background-image:
		radial-gradient(70% 60% at 0% 0%, rgba(253, 119, 2, 0.08), transparent 70%),
		radial-gradient(60% 60% at 100% 100%, rgba(255, 154, 31, 0.08), transparent 70%),
		radial-gradient(rgba(194, 65, 12, 0.08) 1px, transparent 1.3px) !important;
	background-size: 100% 100%, 100% 100%, 24px 24px !important;
	border-top: 1px solid #FFE6CF;
	border-bottom: 1px solid #FFE6CF;
}

.sx-reviews {
	background-color: #FFF4EA !important;
	background-image:
		radial-gradient(55% 70% at 50% 0%, rgba(253, 119, 2, 0.12), transparent 70%),
		radial-gradient(rgba(194, 65, 12, 0.08) 1px, transparent 1.3px) !important;
	background-size: 100% 100%, 24px 24px !important;
	border-top: 1px solid #FFE0C2;
	border-bottom: 1px solid #FFE0C2;
}

.sx-price-factors {
	background-color: #FFFAF5 !important;
}

/* Cards stay white so they stand out from the textured background */
.sx-review,
.sx-factor,
.bm-cat,
.nt-product-card-v6 {
	background-color: #FFFFFF;
}

@media (max-width: 768px) {
	html body { background-attachment: scroll; }
}

/* Hero "In stock now" panel and radar: warm, textured instead of flat white */
html body .bm-showcase-card {
	background-color: #FFF8F1 !important;
	background-image:
		radial-gradient(80% 60% at 100% 0%, rgba(253, 119, 2, 0.14), transparent 70%),
		radial-gradient(60% 50% at 0% 100%, rgba(255, 154, 31, 0.10), transparent 70%),
		radial-gradient(rgba(194, 65, 12, 0.09) 1px, transparent 1.3px) !important;
	background-size: 100% 100%, 100% 100%, 18px 18px !important;
	border: 1.5px solid #FFD2A8 !important;
	box-shadow: 0 22px 50px rgba(253, 119, 2, 0.14), 0 2px 0 rgba(255, 255, 255, 0.8) inset !important;
}

html body .bm-showcase-item {
	background: #FFFFFF !important;
	border: 1px solid #FFE0C2 !important;
	box-shadow: 0 2px 8px rgba(194, 65, 12, 0.05);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

html body .bm-showcase-item:hover {
	border-color: var(--sx-clay) !important;
	transform: translateX(3px);
	box-shadow: 0 8px 18px rgba(253, 119, 2, 0.14);
}

html body .bm-showcase-card__head,
html body .bm-showcase-card__foot {
	border-color: #FFD9B5 !important;
}

html body .sx-radar {
	background-color: #FFF8F1 !important;
	background-image:
		radial-gradient(70% 90% at 0% 50%, rgba(253, 119, 2, 0.12), transparent 70%),
		radial-gradient(rgba(194, 65, 12, 0.08) 1px, transparent 1.3px) !important;
	background-size: 100% 100%, 18px 18px !important;
}

/* Category section header: badge, two-line heading, helper line */
.sx-cat-head {
	display: flex !important;
	align-items: flex-end !important;
	justify-content: space-between !important;
	gap: 24px !important;
	margin-bottom: 30px !important;
}

.sx-cat-head .bm-display > span {
	display: block;
}

.sx-cat-head__lead {
	margin: 12px 0 0;
	max-width: 52ch;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--sx-ink-2);
}

.sx-cat-head__all {
	flex-shrink: 0;
	border: 1.5px solid #FFD2A8 !important;
	background: #FFFFFF !important;
	color: var(--sx-clay-text) !important;
	font-weight: 800 !important;
}

.sx-cat-head__all:hover {
	border-color: var(--sx-clay) !important;
}

@media (max-width: 700px) {
	.sx-cat-head {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 16px !important;
	}
}

/* ------------------------------------------------------------------
 * Hero search: clean pill, Google-style
 * ------------------------------------------------------------------ */
html body .bm-hero-search {
	position: relative;
	display: flex !important;
	align-items: center !important;
	gap: 0 !important;
	height: 58px !important;
	max-width: 560px;
	padding: 0 6px 0 20px !important;
	border-radius: 999px !important;
	background: #FFFFFF !important;
	border: 1.5px solid #EDE3DA !important;
	box-shadow: 0 6px 20px rgba(28, 20, 16, 0.07) !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

html body .bm-hero-search:hover {
	box-shadow: 0 10px 28px rgba(28, 20, 16, 0.10) !important;
}

html body .bm-hero-search:focus-within {
	border-color: var(--sx-clay) !important;
	box-shadow: 0 0 0 4px rgba(253, 119, 2, 0.14), 0 10px 28px rgba(253, 119, 2, 0.12) !important;
}

html body .bm-hero-search__icon {
	position: static !important;
	display: grid !important;
	place-items: center;
	flex-shrink: 0;
	width: 22px;
	margin-right: 12px;
	color: #9A8E84 !important;
	transform: none !important;
}

html body .bm-hero-search:focus-within .bm-hero-search__icon {
	color: var(--sx-clay) !important;
}

html body .bm-hero-search input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	font-size: 1.02rem !important;
	font-weight: 500;
	color: var(--sx-ink) !important;
}

html body .bm-hero-search input[type="search"]::placeholder {
	color: #9A8E84;
	opacity: 1;
}

html body .bm-hero-search input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

html body .bm-hero-search__submit {
	position: static !important;
	flex-shrink: 0;
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	height: 46px !important;
	padding: 0 22px !important;
	border-radius: 999px !important;
	font-size: 0.98rem !important;
	font-weight: 800 !important;
	box-shadow: 0 6px 16px rgba(253, 119, 2, 0.28) !important;
	transform: none !important;
}

html body .bm-hero-search__submit:hover {
	box-shadow: 0 8px 20px rgba(253, 119, 2, 0.36) !important;
}

/* Category chips under the search: small rounded pills */
html body .bm-hero-search__categories {
	margin-top: 12px !important;
	gap: 8px !important;
}

html body .bm-hero-search__categories a {
	padding: 5px 12px !important;
	border-radius: 999px !important;
	background: #FFFFFF !important;
	border: 1px solid #FFD2A8 !important;
	color: var(--sx-ink-2) !important;
	font-weight: 700;
	font-size: 0.82rem !important;
	text-decoration: none;
}

html body .bm-hero-search__categories a:hover {
	border-color: var(--sx-clay) !important;
	color: var(--sx-clay-text) !important;
}

@media (max-width: 480px) {
	html body .bm-hero-search {
		height: 54px !important;
		padding-left: 16px !important;
	}

	html body .bm-hero-search__submit {
		height: 42px !important;
		width: 42px !important;
		padding: 0 !important;
		justify-content: center !important;
	}

	html body .bm-hero-search__submit span {
		position: absolute !important;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}
}


/* Arrow on "Get started" buttons */
.bm-btn .sx-btn-arrow {
	margin-left: 6px;
	vertical-align: -3px;
	transition: transform 0.2s ease;
}

.bm-btn:hover .sx-btn-arrow,
.bm-btn:focus-visible .sx-btn-arrow {
	transform: translateX(4px);
}

.bm-hero__actions .bm-btn--primary,
.bm-cta .bm-btn--primary {
	display: inline-flex !important;
	align-items: center !important;
	gap: 2px;
}

/* Right-hand floating pair: WhatsApp support stacked above Sign in / Balance,
   same size, same shape, same right edge. */
html body .acp-sf-fab {
	right: 18px !important;
	bottom: 18px !important;
	inset-inline-end: 18px !important;
	height: 52px !important;
	min-width: 176px;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 10px !important;
	padding: 5px 18px 5px 5px !important;
	border-radius: 999px !important;
	background: #FFFFFF !important;
	border: 1.5px solid #FFD2A8 !important;
	color: var(--sx-ink) !important;
	box-shadow: 0 12px 30px rgba(253, 119, 2, 0.18) !important;
	transform: none !important;
}

html body .acp-sf-fab svg,
html body .acp-sf-fab i {
	width: 40px !important;
	height: 40px !important;
	padding: 10px;
	border-radius: 50%;
	background: var(--sx-clay);
	color: #FFFFFF !important;
	stroke: #FFFFFF;
	flex-shrink: 0;
	box-sizing: border-box;
}

.sx-wa-float {
	right: 18px !important;
	bottom: 82px !important;
	height: 52px;
	min-width: 176px;
	padding: 5px 18px 5px 5px !important;
	box-shadow: 0 12px 30px rgba(22, 163, 74, 0.2);
}

.sx-wa-float__icon {
	width: 40px !important;
	height: 40px !important;
}

@media (max-width: 600px) {
	html body .acp-sf-fab {
		right: 12px !important;
		bottom: 12px !important;
		min-width: 0;
		height: 48px !important;
		padding: 4px 14px 4px 4px !important;
	}

	html body .acp-sf-fab svg,
	html body .acp-sf-fab i {
		width: 38px !important;
		height: 38px !important;
	}

	.sx-wa-float {
		right: 12px !important;
		bottom: 70px !important;
		min-width: 0;
		height: 48px;
		width: 48px;
		padding: 4px !important;
		justify-content: center;
	}
}

@media (min-width: 601px) {
	html body .acp-sf-fab,
	.sx-wa-float {
		width: 232px !important;
		box-sizing: border-box;
	}
}

/* ------------------------------------------------------------------
 * Currency switcher
 * ------------------------------------------------------------------ */
.sx-cur {
	position: relative;
}

.sx-cur summary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	background: #FFFFFF;
	border: 1.5px solid #FFD2A8;
	color: var(--sx-ink);
	font-weight: 800;
	font-size: 0.88rem;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.sx-cur summary::-webkit-details-marker { display: none; }

.sx-cur summary svg { color: var(--sx-clay); }

.sx-cur summary:hover { border-color: var(--sx-clay); }

.sx-cur .sx-chev {
	transform: translateY(-2px) rotate(225deg);
}

.sx-cur[open] .sx-chev {
	transform: translateY(2px) rotate(45deg);
}

.sx-cur__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 100000;
	width: 270px;
	padding: 12px;
	border-radius: 16px;
	background: #FFFFFF;
	border: 1.5px solid #FFD2A8;
	box-shadow: 0 18px 44px rgba(28, 20, 16, 0.16);
}

.sx-cur__title {
	margin: 2px 6px 8px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sx-muted);
}

.sx-cur__menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: min(300px, 50vh);
	overflow: auto;
}

.sx-cur__menu button {
	display: flex;
	align-items: baseline;
	gap: 10px;
	width: 100%;
	padding: 8px 10px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: var(--sx-ink);
	font: inherit;
}

.sx-cur__menu button strong { min-width: 36px; font-weight: 800; }

.sx-cur__menu button span { font-size: 0.88rem; color: var(--sx-ink-2); }

.sx-cur__menu button:hover,
.sx-cur__menu button[aria-pressed="true"] {
	background: #FFF1E6;
	color: var(--sx-clay-text);
}

.sx-cur__menu button[aria-pressed="true"] strong::after {
	content: " ✓";
	color: var(--sx-clay);
}

.sx-cur__note {
	margin: 10px 6px 2px;
	font-size: 0.76rem;
	line-height: 1.45;
	color: var(--sx-muted);
}

.sx-fx-note {
	margin: 6px 0 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--sx-muted);
}

/* Header copy shows on wide screens; the floating copy covers phones and tablets */
.sx-cur--float {
	position: fixed;
	left: 150px;
	bottom: 18px;
	z-index: 99985;
	display: none;
}

.sx-cur--float .sx-cur__menu {
	top: auto;
	bottom: calc(100% + 8px);
	left: 0;
	right: auto;
}

.sx-cur--float .sx-chev { transform: translateY(2px) rotate(45deg); }
.sx-cur--float[open] .sx-chev { transform: translateY(-2px) rotate(225deg); }

.sx-cur--float summary {
	height: 44px;
	box-shadow: 0 6px 20px rgba(28, 20, 16, 0.12);
}

@media (max-width: 1100px) {
	.sx-cur--header { display: none; }
	.sx-cur--float { display: block; }
}

@media (max-width: 600px) {
	.sx-cur--float { left: 118px; bottom: 10px; }
	.sx-cur--float summary { height: 38px; padding: 0 10px; font-size: 0.8rem; }
	.sx-cur__menu { width: min(270px, calc(100vw - 24px)); }
}

/* ------------------------------------------------------------------
 * Mobile header: always visible (no hide-on-scroll jumping)
 * ------------------------------------------------------------------ */
html body .nt-floating-header.is-auto-hidden,
html body .nt-floating-header.is-auto-hidden * {
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}

html body .nt-floating-header.is-auto-hidden {
	pointer-events: auto !important;
}

/* Currency: header copy on wide screens, drawer copy on smaller ones */
@media (max-width: 1100px) {
	.sx-cur--header { display: none !important; }
}

.sx-cur--drawer summary {
	width: 100%;
	height: 48px;
	justify-content: flex-start;
	border-radius: 14px;
}

.sx-cur--drawer summary .sx-chev { margin-left: auto; }

.sx-cur--drawer .sx-cur__menu {
	position: static;
	width: auto;
	margin-top: 8px;
	box-shadow: none;
}

/* ------------------------------------------------------------------
 * Mobile drawer, app-style
 * ------------------------------------------------------------------ */
html body .bm-drawer__panel.sx-drawer {
	display: flex !important;
	flex-direction: column !important;
	width: min(360px, 90vw) !important;
	height: 100% !important;
	padding: 0 !important;
	background: #FFFBF7 !important;
	background-image: radial-gradient(rgba(194, 65, 12, 0.06) 1px, transparent 1.3px) !important;
	background-size: 22px 22px !important;
	box-shadow: -18px 0 50px rgba(28, 20, 16, 0.18) !important;
}

.sx-drawer__head {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 16px 18px !important;
	border-bottom: 1px solid #FFE0C2 !important;
	background: #FFFFFF !important;
}

.sx-drawer__logo img {
	display: block;
	height: 30px;
	width: auto;
}

.sx-drawer__close {
	display: grid !important;
	place-items: center !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	border: 1px solid #FFD2A8 !important;
	background: #FFF7EF !important;
	color: var(--sx-ink) !important;
}

.sx-drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 18px 8px;
}

.sx-drawer__search {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
	height: 48px !important;
	padding: 0 16px !important;
	border-radius: 999px !important;
	background: #FFFFFF !important;
	border: 1.5px solid #EDE3DA !important;
	color: #9A8E84 !important;
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	text-align: left !important;
}

.sx-drawer__search svg { color: var(--sx-clay); flex-shrink: 0; }

.sx-drawer__label {
	margin: 20px 4px 8px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sx-muted);
}

html body .sx-drawer__nav {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	padding: 4px !important;
	border-radius: 16px !important;
	background: #FFFFFF !important;
	border: 1px solid #FFE0C2 !important;
}

html body .sx-drawer__nav a {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 11px 10px !important;
	border: 0 !important;
	border-radius: 12px !important;
	color: var(--sx-ink) !important;
	font-weight: 700 !important;
	font-size: 0.98rem !important;
	text-decoration: none !important;
}

html body .sx-drawer__nav a + a {
	border-top: 1px solid #FFF0E3 !important;
}

html body .sx-drawer__nav a:hover,
html body .sx-drawer__nav a:focus-visible {
	background: #FFF4EA !important;
}

.sx-drawer__ico {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #FFF1E6;
	color: var(--sx-clay);
	flex-shrink: 0;
}

.bm-drawer__chev {
	margin-left: auto;
	color: #C9BDB1;
}

.sx-drawer__cats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.sx-drawer__cats a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 14px;
	background: #FFFFFF;
	border: 1px solid #FFE0C2;
	color: var(--sx-ink);
	font-weight: 700;
	font-size: 0.86rem;
	text-decoration: none;
	min-width: 0;
}

.sx-drawer__cats a span:last-child {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.sx-drawer__cat-ico {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	overflow: hidden;
}

.sx-drawer__cat-ico .sx-cat-visual svg { width: 18px; height: 18px; }

html body .sx-drawer__foot {
	padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px)) !important;
	border-top: 1px solid #FFE0C2 !important;
	background: #FFFFFF !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}

.sx-drawer__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.sx-drawer__actions .bm-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	height: 46px !important;
	border-radius: 999px !important;
	font-weight: 800 !important;
}

.sx-drawer__signin {
	background: #FFFFFF !important;
	border: 1.5px solid #FFD2A8 !important;
	color: var(--sx-ink) !important;
}

.sx-drawer__wa {
	margin: 0 !important;
	justify-content: center;
}

html body .bm-drawer__signout {
	text-align: center;
	color: var(--sx-muted) !important;
	font-weight: 700;
}

/* ------------------------------------------------------------------
 * Mobile product page: clean bottom purchase bar, no clutter over it
 * ------------------------------------------------------------------ */
html body .nt-mobile-purchase-bar {
	background: rgba(255, 255, 255, 0.97) !important;
	border-top: 1px solid #FFE0C2 !important;
	box-shadow: 0 -10px 30px rgba(28, 20, 16, 0.10) !important;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
}

html body .nt-mobile-purchase-bar small {
	color: var(--sx-muted) !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.68rem !important;
}

html body .nt-mobile-purchase-bar strong,
html body .nt-mobile-purchase-bar strong .woocommerce-Price-amount,
html body .nt-mobile-purchase-bar strong .woocommerce-Price-currencySymbol {
	color: var(--sx-clay) !important;
	font-weight: 800 !important;
	font-size: 1.15rem !important;
}

html body .nt-mobile-purchase-bar .nt-btn--primary {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	border-radius: 999px !important;
	font-weight: 800 !important;
}

@media (max-width: 1024px) {
	body.single-product .acp-world,
	body.single-product .acp-sf-fab,
	body.single-product .sx-wa-float {
		display: none !important;
	}
}

.sx-reviews__preview-note {
	max-width: 720px;
	margin: -14px auto 22px;
	padding: 10px 14px;
	border-radius: 12px;
	background: #FEF3C7;
	border: 1px solid #FCD34D;
	color: #92400E;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
}

/* Floating buttons on phones: English above, nothing overlapping */
@media (max-width: 600px) {
	.acp-world { bottom: 12px !important; }
}

/* Plugin's mobile buy bar: light, readable, on-brand */
html body .acp-sf-buybar {
	background: rgba(255, 255, 255, 0.97) !important;
	border-top: 1px solid #FFE0C2 !important;
	border-radius: 18px 18px 0 0 !important;
	box-shadow: 0 -10px 30px rgba(28, 20, 16, 0.12) !important;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: var(--sx-ink) !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)) !important;
}

html body .acp-sf-buybar__info strong,
html body .acp-sf-buybar__info strong .woocommerce-Price-amount,
html body .acp-sf-buybar__info strong .woocommerce-Price-currencySymbol {
	color: var(--sx-clay) !important;
	font-size: 1.2rem !important;
}

html body .acp-sf-buybar__info small {
	color: var(--sx-muted) !important;
	font-size: 0.72rem !important;
	font-weight: 600;
}

html body .acp-sf-buybar a,
html body .acp-sf-buybar button {
	border-radius: 999px !important;
	font-weight: 800 !important;
}

/* Menu button: consistent round button on every page */
html body .nt-mobile-menu-button {
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background: #FFFFFF !important;
	border: 1.5px solid #FFD2A8 !important;
	box-shadow: none !important;
	color: var(--sx-ink) !important;
}

html body .nt-mobile-menu-button .nt-menu-label {
	position: absolute !important;
	width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}

html body .nt-mobile-menu-button .nt-menu-icon {
	display: flex !important;
	flex-direction: column !important;
	gap: 5px !important;
	width: 18px !important;
	transform: none !important;
}

html body .nt-mobile-menu-button .nt-menu-icon span {
	display: block !important;
	width: 18px !important;
	height: 2px !important;
	border-radius: 2px;
	background: currentColor !important;
	transform: none !important;
	opacity: 1 !important;
	position: static !important;
}

/* Hide the language pill while the menu is open, so nothing overlaps it */
body:has(#mobileMenuDrawer[aria-hidden="false"]) > .acp-world,
body:has(#mobileMenuDrawer[aria-hidden="false"]) .acp-sf-fab,
body:has(#mobileMenuDrawer[aria-hidden="false"]) .sx-wa-float {
	display: none !important;
}

.sx-drawer__search span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* The plugin's "Instant delivery in your panel" line isn't true for every product */
html body .acp-sf-buybar__info small { display: none !important; }

/* ------------------------------------------------------------------
 * "Pay your way: naira or crypto"
 * ------------------------------------------------------------------ */
.sx-pay {
	background-color: #FFFAF5 !important;
	background-image:
		radial-gradient(50% 70% at 100% 50%, rgba(253, 119, 2, 0.10), transparent 70%),
		radial-gradient(rgba(194, 65, 12, 0.07) 1px, transparent 1.3px) !important;
	background-size: 100% 100%, 24px 24px !important;
}

.sx-pay__head {
	max-width: 700px;
	margin: 0 auto 34px;
	text-align: center;
}

.sx-pay__head .bm-display > span { display: block; }

.sx-pay__lead {
	margin: 12px auto 0;
	max-width: 56ch;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--sx-ink-2);
}

.sx-pay__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.sx-pay__card {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border-radius: 22px;
}

.sx-pay__card h3 {
	margin: 16px 0 8px;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.sx-pay__card p {
	margin: 0 0 16px;
	line-height: 1.6;
}

.sx-pay__card--naira {
	background: #FFFFFF;
	border: 1.5px solid #FFE0C2;
	color: var(--sx-ink);
}

.sx-pay__card--naira p { color: var(--sx-ink-2); }

.sx-pay__badge--ngn {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #16A34A, #008751);
	color: #FFFFFF;
	font-size: 1.7rem;
	font-weight: 800;
	box-shadow: 0 10px 22px rgba(0, 135, 81, 0.25);
}

/* The crypto card is the showpiece: deep night with orange glow */
.sx-pay__card--crypto {
	background:
		radial-gradient(90% 80% at 100% 0%, rgba(253, 119, 2, 0.45), transparent 60%),
		radial-gradient(70% 70% at 0% 100%, rgba(38, 161, 123, 0.28), transparent 65%),
		linear-gradient(145deg, #1C1410 0%, #2A1A10 100%);
	color: #FFFFFF;
	box-shadow: 0 24px 50px rgba(28, 20, 16, 0.28);
}

.sx-pay__card--crypto p { color: #F3E6DA; }

.sx-pay__card--crypto::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1.3px);
	background-size: 18px 18px;
	pointer-events: none;
}

.sx-pay__card--crypto > * { position: relative; z-index: 1; }

.sx-pay__global {
	position: absolute !important;
	top: 20px;
	right: 20px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sx-pay__coins {
	display: flex;
	gap: 10px;
}

@keyframes sx-coin-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}

.sx-pay__coin {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--coin) 70%, #FFFFFF), var(--coin));
	border: 3px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), 0 0 24px color-mix(in srgb, var(--coin) 55%, transparent);
	color: #FFFFFF;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	animation: sx-coin-float 3.2s ease-in-out infinite;
	animation-delay: calc(var(--d) * 0.35s);
}

.sx-pay__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.sx-pay__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.sx-pay__card--naira .sx-pay__list svg { color: #008751; }
.sx-pay__card--crypto .sx-pay__list svg { color: #FDBA74; }

/* Hero proof: crypto point in brand green-gold */
.sx-proof-crypto .sx-proof-icon { color: #26A17B !important; }

@media (max-width: 800px) {
	.sx-pay__grid { grid-template-columns: minmax(0, 1fr); }
	.sx-pay__card { padding: 22px; }
}

html body .sx-pay__card--crypto h3 { color: #FFFFFF !important; }
html body .sx-pay__card--naira h3 { color: var(--sx-ink) !important; }

/* Prices: bold whole naira, small plan length after it */
.nt-product-card-v6__price strong {
	display: flex !important;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	font-weight: 800 !important;
	letter-spacing: -0.02em;
}

.sx-price-term {
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	letter-spacing: 0;
	color: var(--sx-muted) !important;
	-webkit-text-fill-color: var(--sx-muted) !important;
}

.nt-product-card-v6__price del,
.nt-product-card-v6__price del * {
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	color: var(--sx-muted) !important;
}

/* "All products" picker: clear icon and wording */
html body .nt-service-picker__summary-icon {
	display: grid !important;
	place-items: center !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 12px !important;
	background: linear-gradient(135deg, #FF9A1F 0%, #FD7702 55%, #EA580C 100%) !important;
	color: #FFFFFF !important;
}

html body .nt-service-picker__summary-hint {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 6px 12px !important;
	border-radius: 999px !important;
	background: #FFF1E6 !important;
	border: 1px solid #FFD2A8 !important;
	color: var(--sx-clay-text) !important;
	font-weight: 800 !important;
	font-size: 0.8rem !important;
}

html body .nt-service-picker__summary-hint .nt-service-picker__chevron {
	color: currentColor !important;
}

html body .nt-service-picker__search-wrap .sx-ico-search {
	color: var(--sx-clay);
	flex-shrink: 0;
}

/* Cart / checkout / account page heading: readable on the light background */
html body .nt-commerce-page-head h1 {
	color: var(--sx-ink) !important;
	-webkit-text-fill-color: var(--sx-ink) !important;
	font-weight: 800 !important;
}

html body .nt-commerce-page-head p { color: var(--sx-ink-2) !important; }

html body .nt-commerce-page-head__eyebrow { color: var(--sx-clay-text) !important; }

html body .nt-commerce-page-head__trust span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #FFFFFF !important;
	border: 1px solid #FFD2A8 !important;
	color: var(--sx-ink) !important;
	font-weight: 700;
}

html body .nt-commerce-page-head__trust svg { color: var(--sx-clay); }

/* Light/dark toggle button in the header */
.sx-theme-toggle {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 1.5px solid #FFD2A8;
	color: var(--sx-ink);
	cursor: pointer;
}

.sx-theme-toggle:hover { border-color: var(--sx-clay); color: var(--sx-clay); }

@media (max-width: 1100px) {
	.sx-theme-toggle { display: none; }
}

/* Dark mode switch row in the phone menu */
.sx-drawer__theme {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 8px 10px;
	border-radius: 14px;
	background: #FFFFFF;
	border: 1px solid #FFE0C2;
	color: var(--sx-ink);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-align: left;
}

.sx-switch {
	margin-left: auto;
	position: relative;
	width: 42px;
	height: 24px;
	border-radius: 999px;
	background: #E7DDD4;
	transition: background 0.2s ease;
}

.sx-switch span {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #FFFFFF;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
}

[aria-pressed="true"] > .sx-switch { background: var(--sx-clay); }
[aria-pressed="true"] > .sx-switch span { transform: translateX(18px); }

/* Solomaxhub line icons (replace the old icon font everywhere) */
.sx-ico {
	display: inline-block;
	width: 1em;
	height: 1em;
	flex-shrink: 0;
	vertical-align: -0.14em;
	stroke-width: 2;
}

/* Icons inside tiles get a comfortable fixed size */
.rp-point-icon .sx-ico,
.bm-cat__icon .sx-ico,
.rp-card__icon .sx-ico,
.nt-feature-icon .sx-ico,
.bm-feature__icon .sx-ico {
	width: 22px;
	height: 22px;
}

.rp-point-icon {
	display: inline-grid !important;
	place-items: center !important;
	width: 46px !important;
	height: 46px !important;
	border-radius: 13px !important;
	background: linear-gradient(135deg, #FF9A1F 0%, #FD7702 55%, #EA580C 100%) !important;
	color: #FFFFFF !important;
	box-shadow: 0 8px 18px rgba(253, 119, 2, 0.22);
}

.rp-point-icon .sx-ico { color: #FFFFFF; width: 24px !important; height: 24px !important; }

/* ==================================================================
 * Pay-for-order page: two columns, payment cards left, summary right
 * ================================================================== */
body.woocommerce-order-pay .nt-commerce-page-head,
body.woocommerce-order-received .nt-commerce-page-head {
	padding-bottom: 8px !important;
	margin-bottom: 0 !important;
	min-height: 0 !important;
}

body.woocommerce-order-pay form#order_review {
	display: grid !important;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
	grid-template-areas: "pay summary" "pay table";
	align-items: start;
	gap: 20px 28px;
	max-width: 1100px;
	margin: 12px auto 40px !important;
}

body.woocommerce-order-pay form#order_review > table.shop_table {
	grid-area: table;
	margin: 0 !important;
	border-radius: 16px !important;
	overflow: hidden;
	background: #FFFFFF !important;
	border: 1.5px solid #FFE0C2 !important;
	font-size: 0.92rem;
}

body.woocommerce-order-pay form#order_review > table.shop_table thead { display: none; }

body.woocommerce-order-pay form#order_review > .acp-topup-pay-summary {
	grid-area: summary;
	margin: 0 !important;
	border-radius: 18px !important;
	background: linear-gradient(160deg, #FFFFFF 0%, #FFF4EA 100%) !important;
	border: 1.5px solid #FFD2A8 !important;
	box-shadow: 0 16px 36px rgba(253, 119, 2, 0.12) !important;
	position: sticky;
	top: 90px;
}

body.woocommerce-order-pay form#order_review > #payment {
	grid-area: pay;
	margin: 0 !important;
	padding: 22px !important;
	border-radius: 20px !important;
	background: #FFFFFF !important;
	border: 1.5px solid #FFE0C2 !important;
	box-shadow: 0 10px 28px rgba(28, 20, 16, 0.06) !important;
}

/* Payment method cards (checkout and pay page) */
html body #payment ul.payment_methods {
	display: grid !important;
	gap: 10px !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	list-style: none !important;
}

html body #payment ul.payment_methods > li.wc_payment_method {
	position: relative;
	margin: 0 !important;
	padding: 14px 16px !important;
	border-radius: 14px !important;
	background: #FFFFFF !important;
	border: 1.5px solid #EDE3DA !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

html body #payment ul.payment_methods > li.wc_payment_method:has(input:checked) {
	border-color: var(--sx-clay) !important;
	background: #FFF8F1 !important;
	box-shadow: 0 0 0 3px rgba(253, 119, 2, 0.12) !important;
}

html body #payment ul.payment_methods > li > input[type="radio"] {
	accent-color: #FD7702;
	width: 18px;
	height: 18px;
	margin: 0 10px 0 0 !important;
	vertical-align: middle;
}

html body #payment ul.payment_methods > li > label {
	display: inline-flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	width: calc(100% - 34px);
	font-weight: 800 !important;
	font-size: 1rem !important;
	color: var(--sx-ink) !important;
	cursor: pointer;
}

/* Card brand logos: clearly visible, on a white chip, pushed to the right */
html body #payment ul.payment_methods > li > label img {
	float: none !important;
	margin: 0 0 0 auto !important;
	max-height: 30px !important;
	height: 30px !important;
	width: auto !important;
	max-width: 190px !important;
	padding: 4px 8px;
	border-radius: 8px;
	background: #FFFFFF;
	border: 1px solid #EDE3DA;
	opacity: 1 !important;
	filter: none !important;
	object-fit: contain;
}

html body #payment div.payment_box {
	margin: 12px 0 0 !important;
	padding: 12px 14px !important;
	border-radius: 12px !important;
	background: #FFF7EF !important;
	color: var(--sx-ink-2) !important;
	font-size: 0.9rem !important;
	line-height: 1.55;
}

html body #payment div.payment_box::before { display: none !important; }

html body #payment #place_order {
	width: 100% !important;
	height: 56px !important;
	border-radius: 999px !important;
	font-size: 1.08rem !important;
	font-weight: 800 !important;
	background: var(--sx-clay) !important;
	border: 0 !important;
	color: #FFFFFF !important;
	box-shadow: 0 12px 26px rgba(253, 119, 2, 0.3) !important;
}

html body #payment #place_order:hover { background: #E86A00 !important; }

.sx-pay-trust {
	display: grid;
	gap: 8px;
	margin-top: 14px;
	font-size: 0.84rem;
	color: var(--sx-muted);
}

.sx-pay-trust span { display: flex; align-items: center; gap: 8px; }
.sx-pay-trust svg { color: #16A34A; flex-shrink: 0; }

@media (max-width: 860px) {
	body.woocommerce-order-pay form#order_review {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas: "summary" "pay" "table";
	}
	body.woocommerce-order-pay form#order_review > .acp-topup-pay-summary { position: static; }
}

/* ==================================================================
 * Thank-you page
 * ================================================================== */
.sx-thanks {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 22px;
	max-width: 900px;
	margin: 16px auto 28px;
	padding: 28px;
	border-radius: 22px;
	background: linear-gradient(160deg, #FFFFFF 0%, #F0FDF4 100%);
	border: 1.5px solid #BBF7D0;
	box-shadow: 0 18px 40px rgba(22, 163, 74, 0.12);
}

.sx-thanks.is-failed {
	background: linear-gradient(160deg, #FFFFFF 0%, #FEF2F2 100%);
	border-color: #FECACA;
	box-shadow: 0 18px 40px rgba(220, 38, 38, 0.10);
}

.sx-thanks__badge {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #16A34A;
	color: #FFFFFF;
	box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.14);
	animation: sx-pop 0.5s ease-out both;
}

.sx-thanks.is-failed .sx-thanks__badge { background: #DC2626; box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.12); }

@keyframes sx-pop {
	0% { transform: scale(0.6); opacity: 0; }
	70% { transform: scale(1.08); opacity: 1; }
	100% { transform: scale(1); }
}

.sx-thanks__copy h2 {
	margin: 0 0 6px;
	font-size: clamp(1.35rem, 1rem + 1.2vw, 1.8rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--sx-ink);
}

.sx-thanks__copy > p { margin: 0 0 18px; color: var(--sx-ink-2); line-height: 1.6; }

.sx-thanks__facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 20px;
}

.sx-thanks__facts div {
	padding: 10px 12px;
	border-radius: 12px;
	background: #FFFFFF;
	border: 1px solid #E7F5EC;
}

.sx-thanks__facts dt {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sx-muted);
}

.sx-thanks__facts dd {
	margin: 2px 0 0;
	font-weight: 800;
	color: var(--sx-ink);
	overflow-wrap: anywhere;
}

.sx-thanks__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.sx-thanks__actions .sx-footer-wa { margin: 0; }

/* The default WooCommerce blocks become tidy cards under the hero */
body.woocommerce-order-received .woocommerce-thankyou-order-received,
body.woocommerce-order-received ul.woocommerce-order-overview {
	display: none !important;
}

body.woocommerce-order-received .woocommerce-order > section:not(.sx-thanks) {
	max-width: 900px;
	margin: 0 auto 18px !important;
	padding: 20px 22px !important;
	border-radius: 18px !important;
	background: #FFFFFF !important;
	border: 1.5px solid #FFE0C2 !important;
}

body.woocommerce-order-received .woocommerce-order h2 {
	font-size: 1.2rem !important;
	font-weight: 800 !important;
	margin: 0 0 12px !important;
	letter-spacing: -0.01em;
}

body.woocommerce-order-received .woocommerce-order table.shop_table {
	border: 0 !important;
	margin: 0 !important;
	font-size: 0.95rem;
}

@media (max-width: 700px) {
	.sx-thanks { grid-template-columns: minmax(0, 1fr); padding: 22px; text-align: left; }
	.sx-thanks__badge { width: 60px; height: 60px; }
	.sx-thanks__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Pay page fixes: logos larger, trust note full width, summary stacked */
html body.woocommerce-order-pay #payment ul.payment_methods li.wc_payment_method > label img,
html body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label img {
	height: 34px !important;
	max-height: 34px !important;
}

html body #payment #place_order { float: none !important; }

.sx-pay-trust {
	clear: both;
	width: 100%;
}

body.woocommerce-order-pay .acp-topup-pay-summary {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 14px !important;
	padding: 20px !important;
}

body.woocommerce-order-pay .acp-topup-pay-summary__copy strong {
	display: block;
	font-size: 1.35rem !important;
	line-height: 1.25;
	color: var(--sx-ink) !important;
}

body.woocommerce-order-pay .acp-topup-pay-summary__numbers {
	width: 100% !important;
	border-radius: 12px;
	overflow: hidden;
}

body.woocommerce-order-pay .acp-topup-pay-summary__numbers .is-total strong {
	color: var(--sx-clay) !important;
	font-size: 1.15rem !important;
}

/* Top-up payments: the summary card already shows the totals */
body.woocommerce-order-pay form#order_review:has(.acp-topup-pay-summary) > table.shop_table { display: none !important; }

/* Language picker inside the phone menu */
.sx-drawer__lang .acp-world {
	position: static !important;
	display: block !important;
	inset: auto !important;
}

.sx-drawer__lang .acp-world summary {
	width: 100%;
	height: 48px;
	justify-content: space-between;
	border-radius: 14px !important;
	box-shadow: none !important;
}

.sx-drawer__lang .acp-world-menu {
	position: static !important;
	width: auto !important;
	margin-top: 8px;
	box-shadow: none !important;
}

.sx-drawer__lang .sx-chev { transform: translateY(-2px) rotate(225deg); }
.sx-drawer__lang .acp-world-picker[open] .sx-chev { transform: translateY(2px) rotate(45deg); }

@media (max-width: 900px) {
	body > .acp-world { display: none !important; }
}

html body .sx-drawer__lang .acp-world {
	position: static !important;
	inset: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	top: auto !important;
	transform: none !important;
	z-index: auto !important;
	width: 100% !important;
}

html body .sx-drawer__lang .acp-world-picker { width: 100%; }

/* Phones: the floating sign-in pill overlapped page content; sign in lives in the menu */
@media (max-width: 900px) {
	html body .acp-sf-fab { display: none !important; }
	.sx-wa-float { bottom: 16px !important; }
}

html body .sx-drawer__lang .acp-world summary { display: flex !important; width: 100% !important; height: 48px; padding: 0 14px !important; }
