/*
 * SBS Addons frontend styles.
 * Keep widget CSS scoped to avoid theme conflicts.
 */

:root {
	--sbs-primary: #111827;
	--sbs-secondary: #6b7280;
	--sbs-accent: #CDA65A;
	--sbs-accent-hover: #CDA65A;
	--sbs-border: #e5e7eb;
	--sbs-bg: #ffffff;
	--sbs-soft-bg: #f9fafb;
	--sbs-radius: 14px;
	--sbs-button-radius: 10px;
	--sbs-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
p{
	margin-top: 0;
	margin-bottom: 20px;
}
.sbs-remote-products-widget {
	width: 100%;
}

.sbs-remote-products-heading {
	margin: 0 0 28px;
	font-size: 32px;
	line-height: 1.15;
	font-weight: 700;
}

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

.sbs-remote-product-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sbs-remote-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.sbs-remote-product-image {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f7f7f7;
}

.sbs-remote-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.sbs-remote-product-card:hover .sbs-remote-product-image img {
	transform: scale(1.04);
}

.sbs-remote-product-body {
	padding: 20px;
}

.sbs-remote-product-title {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
}

.sbs-remote-product-title a {
	color: #111;
	text-decoration: none;
}

.sbs-remote-product-title a:hover {
	text-decoration: underline;
}

.sbs-remote-product-price {
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 16px;
	color: #111;
}

.sbs-remote-product-excerpt {
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.sbs-remote-product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	background: var(--sbs-primary, #111827);
	color: #ffffff;
	border: 0;
	border-radius: var(--sbs-button-radius, 10px);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sbs-remote-product-button:hover,
.sbs-remote-product-button:focus {
	background: var(--sbs-accent, #2563eb);
	color: #ffffff;
	transform: translateY(-1px);
}

.sbs-remote-products-empty {
	padding: 20px;
	border: 1px dashed rgba(0, 0, 0, 0.18);
	border-radius: 14px;
	background: #fafafa;
	color: #555;
}

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

@media (max-width: 767px) {
	.sbs-remote-products-heading {
		font-size: 26px;
	}

	.sbs-remote-products-grid {
		grid-template-columns: 1fr;
	}
}

/* SBS Affiliate Button Widget */
.sbs-affiliate-button-wrap {
	width: 100%;
}

.sbs-affiliate-button,
.sbs-affiliate-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 13px 22px;
	border: 0;
	border-radius: var(--sbs-button-radius, 10px);
	background: var(--sbs-primary, #111827);
	color: #ffffff;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.sbs-affiliate-button:hover,
.sbs-affiliate-link:hover {
	background: var(--sbs-accent, #2563eb);
	color: #ffffff;
	transform: translateY(-1px);
}


/* =========================
   SBS Button Widgets
========================= */
.sbs-dbtn-wrap {
	display: flex;
	width: 100%;
}

.sbs-dbtn-align-left .sbs-dbtn-wrap {
	justify-content: flex-start;
}

.sbs-dbtn-align-center .sbs-dbtn-wrap {
	justify-content: center;
}

.sbs-dbtn-align-right .sbs-dbtn-wrap {
	justify-content: flex-end;
}

.sbs-dbtn-align-justify .sbs-dbtn-wrap .sbs-dbtn {
	width: 100% !important;
}

.sbs-dbtn {
	--sbs-dbtn-hover-y: -3px;
	--sbs-dbtn-hover-scale: 1.01;
	--sbs-dbtn-icon-hover-x: 5px;

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 305px;
	min-height: 60px;
	padding: 0 8px 0 28px;
	border: 1px solid transparent;
	border-style: solid;
	border-radius: 0;
	text-decoration: none !important;
	box-sizing: border-box;
	overflow: hidden;
	isolation: isolate;
	cursor: pointer;
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		border-color 0.28s ease,
		transform 0.28s ease,
		box-shadow 0.28s ease;
}

.sbs-dbtn:hover,
.sbs-dbtn:focus {
	text-decoration: none !important;
	outline: none;
}

.sbs-dbtn--filled {
	background-color: #54be45;
	border-color: #54be45;
	color: #ffffff;
}

.sbs-dbtn--outline {
	background-color: rgba(0, 0, 0, 0.16);
	border-color: rgba(255, 255, 255, 0.85);
	color: #ffffff;
}

.sbs-dbtn--custom {
	background-color: transparent;
	border-color: currentColor;
	color: inherit;
}

.sbs-dbtn__text {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: inherit;
}

.sbs-dbtn__iconbox {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex: 0 0 auto;
	color: currentColor;
	border: 0 solid transparent;
	box-sizing: border-box;
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		transform 0.28s ease,
		border-color 0.28s ease;
}

.sbs-dbtn--filled .sbs-dbtn__iconbox {
	background-color: #ffffff;
	color: #111111;
}

.sbs-dbtn--outline .sbs-dbtn__iconbox {
	background-color: transparent;
	color: #ffffff;
}

.sbs-dbtn__iconbox i,
.sbs-dbtn__iconbox svg,
.sbs-dbtn__iconbox img {
	display: block;
	transition: transform 0.28s ease, color 0.28s ease, fill 0.28s ease, stroke 0.28s ease;
}

.sbs-dbtn__iconbox svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.sbs-dbtn__iconbox svg path {
	fill: currentColor;
}

.sbs-dbtn__iconbox i {
	font-size: 26px;
	color: currentColor;
}

.sbs-dbtn__iconbox img {
	max-width: 26px;
	max-height: 26px;
	object-fit: contain;
}

.sbs-dbtn--anim-lift:hover {
	transform: translateY(var(--sbs-dbtn-hover-y)) scale(var(--sbs-dbtn-hover-scale));
}

.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox svg,
.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox i,
.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox img {
	transform: translateX(var(--sbs-dbtn-icon-hover-x));
}

.sbs-dbtn--anim-shine::before {
	content: "";
	position: absolute;
	inset: -40% auto -40% -70%;
	width: 45%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.32),
		transparent
	);
	transform: skewX(-18deg);
	z-index: 1;
	transition: left 0.7s ease;
}

.sbs-dbtn--anim-shine:hover::before {
	left: 125%;
}

.sbs-dbtn--anim-pulse:hover {
	animation: sbsDbtnPulse 0.65s ease;
}

@keyframes sbsDbtnPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.035);
	}

	100% {
		transform: scale(1);
	}
}

@media (max-width: 767px) {
	.sbs-dbtn {
		width: 100%;
	}

	.sbs-dbtn__text {
		white-space: normal !important;
	}
}
/* =========================
   SBS Dual Heading Widget
========================= */
.sbs-dual-heading-wrap {
	width: 100%;
}

.sbs-dual-heading {
	--sbs-dual-normal-gradient-1: #111827;
	--sbs-dual-normal-gradient-2: #2563eb;
	--sbs-dual-normal-gradient-angle: 90deg;
	--sbs-dual-highlight-gradient-1: #ffffff;
	--sbs-dual-highlight-gradient-2: #facc15;
	--sbs-dual-highlight-gradient-angle: 90deg;
	--sbs-dual-highlight-bg-gradient-1: #111827;
	--sbs-dual-highlight-bg-gradient-2: #2563eb;
	--sbs-dual-highlight-bg-gradient-angle: 90deg;
	--sbs-dual-anim-duration: 800ms;
	--sbs-dual-anim-delay: 0ms;
	--sbs-dual-marker-extend: 0.08em;
	--sbs-dual-marker-skew: -2deg;
	margin: 0;
	padding: 0;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.04em;
	color: var(--sbs-primary, #111827);
}

.sbs-dual-heading-link {
	display: inline-flex;
	color: inherit;
	text-decoration: none !important;
}

.sbs-dual-heading-link:hover,
.sbs-dual-heading-link:focus {
	color: inherit;
	text-decoration: none !important;
}

.sbs-dual-heading__inner {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.sbs-dual-heading--block .sbs-dual-heading__inner {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
}

.sbs-dual-heading-align-left .sbs-dual-heading-wrap {
	text-align: left;
}

.sbs-dual-heading-align-center .sbs-dual-heading-wrap {
	text-align: center;
}

.sbs-dual-heading-align-right .sbs-dual-heading-wrap {
	text-align: right;
}

.sbs-dual-heading__part {
	display: inline-flex;
	align-items: center;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		background-position 0.45s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.sbs-dual-heading__normal {
	color: var(--sbs-primary, #111827);
}

.sbs-dual-heading--normal-gradient .sbs-dual-heading__normal,
.sbs-dual-heading--highlight-gradient .sbs-dual-heading__highlight-text {
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.sbs-dual-heading--normal-gradient .sbs-dual-heading__normal {
	background-image: linear-gradient(
		var(--sbs-dual-normal-gradient-angle),
		var(--sbs-dual-normal-gradient-1),
		var(--sbs-dual-normal-gradient-2)
	);
}

.sbs-dual-heading--highlight-gradient .sbs-dual-heading__highlight-text {
	background-image: linear-gradient(
		var(--sbs-dual-highlight-gradient-angle),
		var(--sbs-dual-highlight-gradient-1),
		var(--sbs-dual-highlight-gradient-2)
	);
}

.sbs-dual-heading--gradient-animate .sbs-dual-heading__normal,
.sbs-dual-heading--gradient-animate .sbs-dual-heading__highlight-text {
	animation: sbsDualGradientShift 4s ease infinite;
}

.sbs-dual-heading__highlight {
	position: relative;
	z-index: 1;
	color: #ffffff;
	background-color: var(--sbs-primary, #111827);
	border-radius: var(--sbs-button-radius, 10px);
	padding: 6px 14px;
	line-height: 1;
}


.sbs-dual-heading__highlight-text {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: inherit;
}

.sbs-dual-heading--highlight-bg-none .sbs-dual-heading__highlight,
.sbs-dual-heading--plain .sbs-dual-heading__highlight,
.sbs-dual-heading--marker .sbs-dual-heading__highlight,
.sbs-dual-heading--underline .sbs-dual-heading__highlight {
	background-color: transparent;
	background-image: none;
}

.sbs-dual-heading--highlight-bg-gradient .sbs-dual-heading__highlight {
	background-color: transparent;
	background-image: linear-gradient(
		var(--sbs-dual-highlight-bg-gradient-angle),
		var(--sbs-dual-highlight-bg-gradient-1),
		var(--sbs-dual-highlight-bg-gradient-2)
	);
}

.sbs-dual-heading--plain .sbs-dual-heading__highlight {
	color: var(--sbs-accent, #2563eb);
	padding: 0;
	border-radius: 0;
}

.sbs-dual-heading--marker .sbs-dual-heading__highlight {
	color: var(--sbs-primary, #111827);
	padding: 0 0.06em;
	border-radius: 0;
	background-color: transparent;
}

.sbs-dual-heading--marker .sbs-dual-heading__highlight::before {
	content: "";
	position: absolute;
	left: calc(var(--sbs-dual-marker-extend) * -1);
	right: calc(var(--sbs-dual-marker-extend) * -1);
	bottom: 0.05em;
	height: 0.42em;
	z-index: -1;
	border-radius: 999px;
	background-color: #facc15;
	opacity: 0.75;
	transform: skewX(var(--sbs-dual-marker-skew));
	transform-origin: left center;
}

.sbs-dual-heading--marker-anim-sweep .sbs-dual-heading__highlight::before,
.sbs-dual-heading--marker-anim-grow .sbs-dual-heading__highlight::before {
	animation: sbsDualMarkerSweep var(--sbs-dual-anim-duration) ease var(--sbs-dual-anim-delay) both;
}

.sbs-dual-heading--marker-anim-pulse .sbs-dual-heading__highlight::before {
	animation: sbsDualMarkerPulse 1.6s ease var(--sbs-dual-anim-delay) infinite;
}

.sbs-dual-heading--underline .sbs-dual-heading__highlight {
	color: var(--sbs-primary, #111827);
	padding: 0 2px 4px;
	border-radius: 0;
}

.sbs-dual-heading--underline .sbs-dual-heading__highlight::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	z-index: -1;
	border-radius: 999px;
	background-color: var(--sbs-accent, #2563eb);
	opacity: 0.35;
}

.sbs-dual-heading--outline .sbs-dual-heading__highlight {
	color: var(--sbs-primary, #111827);
	background-color: transparent;
	background-image: none;
	border: 1px solid currentColor;
}

.sbs-dual-heading-link:hover .sbs-dual-heading__highlight {
	background-color: var(--sbs-accent, #2563eb);
	color: #ffffff;
	transform: translateY(-1px);
}

.sbs-dual-heading--marker .sbs-dual-heading-link:hover .sbs-dual-heading__highlight,
.sbs-dual-heading--underline .sbs-dual-heading-link:hover .sbs-dual-heading__highlight,
.sbs-dual-heading--plain .sbs-dual-heading-link:hover .sbs-dual-heading__highlight {
	background-color: transparent;
}

.sbs-dual-heading-link:hover .sbs-dual-heading__normal {
	color: var(--sbs-accent, #2563eb);
}

.sbs-dual-heading-anim-fade-up,
.sbs-dual-heading-anim-slide-left,
.sbs-dual-heading-anim-zoom-in,
.sbs-dual-heading-anim-reveal,
.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part {
	animation-duration: var(--sbs-dual-anim-duration);
	animation-delay: var(--sbs-dual-anim-delay);
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.sbs-dual-heading-anim-fade-up {
	animation-name: sbsDualFadeUp;
}

.sbs-dual-heading-anim-slide-left {
	animation-name: sbsDualSlideLeft;
}

.sbs-dual-heading-anim-zoom-in {
	animation-name: sbsDualZoomIn;
}

.sbs-dual-heading-anim-reveal {
	animation-name: sbsDualReveal;
}

.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part {
	animation-name: sbsDualWordPop;
}

.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part:nth-child(2) {
	animation-delay: calc(var(--sbs-dual-anim-delay) + 90ms);
}

.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part:nth-child(3) {
	animation-delay: calc(var(--sbs-dual-anim-delay) + 180ms);
}

@keyframes sbsDualFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sbsDualSlideLeft {
	from {
		opacity: 0;
		transform: translateX(24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes sbsDualZoomIn {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes sbsDualReveal {
	from {
		opacity: 0;
		clip-path: inset(0 100% 0 0);
	}
	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}

@keyframes sbsDualWordPop {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes sbsDualMarkerSweep {
	from {
		transform: scaleX(0) skewX(var(--sbs-dual-marker-skew));
	}
	to {
		transform: scaleX(1) skewX(var(--sbs-dual-marker-skew));
	}
}

@keyframes sbsDualMarkerPulse {
	0%, 100% {
		transform: scaleX(1) skewX(var(--sbs-dual-marker-skew));
		opacity: 0.75;
	}
	50% {
		transform: scaleX(1.04) skewX(var(--sbs-dual-marker-skew));
		opacity: 1;
	}
}

@keyframes sbsDualGradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@media (max-width: 767px) {
	.sbs-dual-heading {
		font-size: clamp(28px, 8vw, 42px);
	}

	.sbs-dual-heading__inner {
		gap: 6px;
	}
}

/* =========================================================
   SBS Icon List Widget
   ========================================================= */

.sbs-icon-list-wrap {
	width: 320px;
	max-width: 100%;
}

.sbs-icon-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.sbs-icon-list__item {
	margin: 0;
	padding: 0;
	position: relative;
}

.sbs-icon-list--separator .sbs-icon-list__item:not(:last-child) {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: rgba(255, 255, 255, 0.35);
}

.sbs-icon-list__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 15px 0;
	color: #f5f5f5;
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.sbs-icon-list__link:hover,
.sbs-icon-list__link:focus {
	color: #54c449;
	text-decoration: none;
	outline: none;
}

.sbs-icon-list__text {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.sbs-icon-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	color: currentColor;
	transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.sbs-icon-list__icon-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.sbs-icon-list__icon i,
.sbs-icon-list__icon svg {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 16px;
	line-height: 1;
	fill: currentColor;
	color: currentColor;
}

.sbs-icon-list--icon-left .sbs-icon-list__link {
	justify-content: flex-start;
}

.sbs-icon-list--icon-left .sbs-icon-list__text {
	flex: 1;
}

.sbs-icon-list--icon-right .sbs-icon-list__text {
	flex: 1;
}

.sbs-icon-list--hover-arrow-slide .sbs-icon-list__link:hover .sbs-icon-list__icon,
.sbs-icon-list--hover-arrow-slide .sbs-icon-list__link:focus .sbs-icon-list__icon {
	transform: translate(4px, -4px);
}

.sbs-icon-list--hover-lift .sbs-icon-list__link:hover,
.sbs-icon-list--hover-lift .sbs-icon-list__link:focus {
	transform: translateY(-2px);
}

.sbs-icon-list--hover-line-grow.sbs-icon-list--separator .sbs-icon-list__item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.3s ease;
}

.sbs-icon-list--hover-line-grow.sbs-icon-list--separator .sbs-icon-list__item:hover::after,
.sbs-icon-list--hover-line-grow.sbs-icon-list--separator .sbs-icon-list__item:focus-within::after {
	width: 100%;
}

@media (max-width: 767px) {
	.sbs-icon-list__link {
		font-size: 20px;
		padding: 13px 0;
	}
}

/* =========================
   SBS Animation Widget Pack
========================= */
.sbs-gradient-text {
	background-image: linear-gradient(90deg, #111827, #2563eb);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent !important;
}

.sbs-anim-item {
	will-change: transform, opacity, clip-path;
}

.sbs-split-unit {
	display: inline-block;
	white-space: pre-wrap;
}

.sbs-animate-title-wrap,
.sbs-animation-text {
	width: 100%;
}

.sbs-animate-title {
	margin: 0;
	font-size: clamp(36px, 6vw, 88px);
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -0.045em;
	color: var(--sbs-primary, #111827);
}

.sbs-animation-text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--sbs-secondary, #6b7280);
}

.sbs-animation-text p:last-child {
	margin-bottom: 0;
}

/* Image Box */
.sbs-image-box,
.sbs-image-box-slide-inner,
.sbs-video-box,
.sbs-sticky-box,
.sbs-scroll-el-item {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
}

.sbs-image-box {
	position: relative;
	overflow: hidden;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sbs-image-box-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.sbs-image-box-media,
.sbs-image-box-slide-inner > img,
.sbs-video-box-media,
.sbs-video-popup-trigger {
	position: relative;
	overflow: hidden;
}

.sbs-image-box-media {
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
}

.sbs-image-box-media img,
.sbs-image-box-slide-inner img,
.sbs-image-widget-figure img,
.sbs-video-popup-trigger img,
.sbs-video-box video,
.sbs-scrollable-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sbs-image-box-body {
	padding: 24px;
}

.sbs-image-box-title,
.sbs-image-box-slide-body h3,
.sbs-video-box-body h3,
.sbs-scroll-el-item h3,
.sbs-sticky-box h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--sbs-primary, #111827);
}

.sbs-image-box-text,
.sbs-image-box-slide-body p,
.sbs-video-box-body p,
.sbs-scroll-el-item p,
.sbs-sticky-content {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--sbs-secondary, #6b7280);
}

.sbs-hover-lift:hover,
.sbs-hover-float:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.sbs-hover-zoom:hover img,
.sbs-image-box.sbs-hover-zoom:hover img {
	transform: scale(1.08);
}

.sbs-image-box img,
.sbs-image-widget-figure img,
.sbs-video-popup-trigger img {
	transition: transform .45s ease, filter .45s ease;
}

.sbs-hover-shine::after,
.sbs-btn-shine::after {
	content: "";
	position: absolute;
	top: -60%;
	left: -120%;
	width: 60%;
	height: 220%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
	transform: rotate(25deg);
	transition: left .7s ease;
	pointer-events: none;
}

.sbs-hover-shine:hover::after,
.sbs-btn-shine:hover::after {
	left: 135%;
}

/* Basic Slider */
.sbs-basic-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.sbs-slider-track {
	display: flex;
	transition: transform .45s ease;
	will-change: transform;
}

.sbs-image-box-slide {
	flex: 0 0 calc(100% / 3);
	padding: 12px;
	box-sizing: border-box;
}

.sbs-image-box-slide-inner {
	overflow: hidden;
	height: 100%;
	transition: transform .35s ease, box-shadow .35s ease;
}

.sbs-image-box-slide-inner:hover {
	transform: translateY(-6px);
}

.sbs-image-box-slide-inner > a,
.sbs-image-box-slide-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.sbs-image-box-slide-inner img {
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
}

.sbs-image-box-slide-body {
	padding: 22px;
}

.sbs-slider-nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 18px;
}

.sbs-slider-prev,
.sbs-slider-next {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.sbs-slider-prev:hover,
.sbs-slider-next:hover {
	background: var(--sbs-primary, #111827);
	color: #fff;
	transform: translateY(-2px);
}

/* SBS Image */
.sbs-image-widget-figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 24px;
	background: #f3f4f6;
	transition: transform .28s ease, box-shadow .28s ease;
}

.sbs-image-widget-figure figcaption {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255,255,255,.88);
	backdrop-filter: blur(10px);
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

/* Draw SVG */
.sbs-draw-svg {
	display: inline-block;
	width: 100%;
	color: var(--sbs-primary, #111827);
}

.sbs-draw-svg svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.sbs-draw-svg path,
.sbs-draw-svg line,
.sbs-draw-svg polyline,
.sbs-draw-svg polygon,
.sbs-draw-svg circle,
.sbs-draw-svg rect {
	visibility: hidden;
}

/* Brand Slider */
.sbs-brand-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.sbs-brand-track {
	display: flex;
	align-items: center;
	gap: 28px;
	width: max-content;
}

.sbs-brand-item {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	padding: 18px 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	background: #fff;
}

.sbs-brand-item img {
	display: block;
	width: auto;
	max-height: 68px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .72;
	transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.sbs-brand-item:hover img {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.04);
}

.sbs-marquee .sbs-brand-track {
	animation-name: sbsBrandMarquee;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.sbs-marquee:hover .sbs-brand-track {
	animation-play-state: paused;
}

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

/* Animated Button */
.sbs-animated-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 16px 30px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--sbs-primary, #111827);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	overflow: hidden;
	transition: color .28s ease, transform .28s ease, border-color .28s ease;
	will-change: transform;
}

.sbs-animated-btn span,
.sbs-animated-btn i {
	position: relative;
	z-index: 2;
	font-style: normal;
}

.sbs-animated-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--sbs-accent, #2563eb);
	transform: translateY(102%);
	transition: transform .32s ease;
	z-index: 1;
}

.sbs-btn-fill:hover::before,
.sbs-btn-magnetic:hover::before,
.sbs-btn-arrow:hover::before {
	transform: translateY(0);
}

.sbs-btn-arrow i {
	transition: transform .25s ease;
}

.sbs-btn-arrow:hover i {
	transform: translateX(6px);
}

.sbs-animated-btn:hover,
.sbs-animated-btn:focus {
	color: #fff;
	transform: translateY(-2px);
}

/* Scrollable Video */
.sbs-scrollable-video {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 28px;
	background: #050505;
}

.sbs-scrollable-video video {
	min-height: 360px;
	background: #050505;
}

/* Scroll Elements */
.sbs-scroll-elements {
	display: grid;
	gap: 24px;
}

.sbs-scroll-layout-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sbs-scroll-layout-timeline {
	position: relative;
}

.sbs-scroll-layout-timeline::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 12px;
	bottom: 12px;
	width: 2px;
	background: rgba(15, 23, 42, .1);
}

.sbs-scroll-el-item {
	position: relative;
	padding: 28px;
}

.sbs-scroll-layout-timeline .sbs-scroll-el-item {
	margin-left: 58px;
}

.sbs-scroll-el-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: var(--sbs-primary, #111827);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.sbs-scroll-layout-timeline .sbs-scroll-el-num {
	position: absolute;
	left: -77px;
	top: 24px;
}

/* Text Animation */
.sbs-text-animation {
	font-size: clamp(32px, 5vw, 72px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: var(--sbs-primary, #111827);
}

.sbs-text-dynamic {
	position: relative;
	display: inline-block;
	color: var(--sbs-accent, #2563eb);
}

.sbs-text-dynamic::after {
	content: "";
	display: inline-block;
	width: .08em;
	height: .9em;
	margin-left: .08em;
	background: currentColor;
	vertical-align: -.08em;
	animation: sbsBlink .9s steps(2) infinite;
}

@keyframes sbsBlink {
	50% { opacity: 0; }
}

/* Video Popup */
.sbs-video-popup-trigger {
	position: relative;
	display: block;
	width: 100%;
	min-height: 320px;
	padding: 0;
	border: 0;
	border-radius: 28px;
	background: #111827;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 18px 60px rgba(15, 23, 42, 0.14);
}

.sbs-video-popup-trigger::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,.55));
	z-index: 1;
}

.sbs-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 28px;
	transform: translate(-50%, -50%);
	transition: transform .25s ease, background .25s ease;
}

.sbs-video-popup-trigger:hover .sbs-video-play {
	transform: translate(-50%, -50%) scale(1.08);
}

.sbs-video-title {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 24px;
	z-index: 2;
	font-size: 22px;
	font-weight: 700;
	text-align: left;
}

.sbs-video-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.sbs-video-modal.is-active {
	display: flex;
}

.sbs-video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .78);
	backdrop-filter: blur(5px);
}

.sbs-video-modal-dialog {
	position: relative;
	z-index: 2;
	width: min(1080px, 100%);
}

.sbs-video-modal-close {
	position: absolute;
	right: -14px;
	top: -14px;
	z-index: 3;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.sbs-video-modal-content {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
}

.sbs-video-modal-content iframe,
.sbs-video-modal-content video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.sbs-video-modal-open {
	overflow: hidden;
}

/* Video Box */
.sbs-video-box {
	overflow: hidden;
}

.sbs-video-box-media {
	aspect-ratio: 16 / 9;
	background: #111;
}

.sbs-video-box-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 72px;
	height: 72px;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.94);
	color: #111827;
	font-size: 24px;
	transform: translate(-50%, -50%);
	cursor: pointer;
	transition: transform .25s ease, opacity .25s ease;
}

.sbs-video-box.is-playing .sbs-video-box-play {
	opacity: 0;
}

.sbs-video-box:hover .sbs-video-box-play,
.sbs-video-box.is-playing:hover .sbs-video-box-play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.06);
}

.sbs-video-box-body {
	padding: 24px;
}

/* Sticky Elements */
.sbs-sticky-elements {
	position: relative;
	min-height: 1px;
}

.sbs-sticky-box {
	position: sticky;
	top: 120px;
	padding: 30px;
	z-index: 5;
}

.sbs-sticky-content p:last-child {
	margin-bottom: 0;
}

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

	.sbs-image-box-slide {
		flex-basis: calc(100% / 2);
	}
}

@media (max-width: 767px) {
	.sbs-animate-title,
	.sbs-text-animation {
		font-size: clamp(30px, 11vw, 52px);
	}

	.sbs-image-box-slide,
	.sbs-scroll-layout-grid {
		flex-basis: 100%;
		grid-template-columns: 1fr;
	}

	.sbs-scroll-layout-timeline::before {
		left: 18px;
	}

	.sbs-scroll-layout-timeline .sbs-scroll-el-item {
		margin-left: 46px;
	}

	.sbs-scroll-layout-timeline .sbs-scroll-el-num {
		left: -65px;
	}

	.sbs-video-popup-trigger {
		min-height: 240px;
	}

	.sbs-video-play {
		width: 64px;
		height: 64px;
		font-size: 22px;
	}

	.sbs-brand-item {
		min-width: 130px;
		padding: 14px 18px;
	}
}

/* SBS Animation Pack Enhanced Controls */
.sbs-anim-align{position:relative}.sbs-anim-heading{line-height:1.08}.sbs-gradient-text,.sbs-heading-gradient-yes .sbs-anim-heading{background-clip:text;-webkit-background-clip:text;color:transparent!important}.sbs-title-stroke{color:transparent;-webkit-text-stroke:1px currentColor}.sbs-title-outline-fill{color:transparent;-webkit-text-stroke:1px currentColor;transition:.35s}.sbs-title-outline-fill:hover{color:currentColor}.sbs-title-underline::after{content:"";display:block;width:70px;height:4px;background:currentColor;margin-top:.25em;transform-origin:left;animation:sbsLineGrow 1.1s ease both}.sbs-title-highlight{display:inline;background:linear-gradient(transparent 60%,rgba(255,220,64,.55) 0)}@keyframes sbsLineGrow{from{transform:scaleX(0)}to{transform:scaleX(1)}}.sbs-split-unit{display:inline-block;will-change:transform,opacity}.sbs-animation-text.sbs-text-quote{border-left:4px solid currentColor}.sbs-animation-text.sbs-text-badge{display:inline-flex;border-radius:999px}.sbs-animation-text.sbs-text-boxed{border-radius:16px}.sbs-animation-text.sbs-text-lead{font-size:clamp(20px,3vw,34px);line-height:1.35}.sbs-anim-card,.sbs-image-box,.sbs-image-box-slide-inner,.sbs-brand-item,.sbs-scroll-element-item,.sbs-sticky-box{transition:transform .35s ease,box-shadow .35s ease,background .35s ease;color:inherit;text-decoration:none}.sbs-image-box{display:block;position:relative;overflow:hidden}.sbs-image-box-media{overflow:hidden}.sbs-image-box-media img,.sbs-image-box-slide img,.sbs-anim-image img{display:block;width:100%;height:auto;transition:transform .55s ease,filter .35s ease}.sbs-image-box:hover img,.sbs-image-zoom:hover img{transform:scale(1.07)}.sbs-image-box-content{position:relative;z-index:2}.sbs-image-box-overlay .sbs-image-box-content,.sbs-image-box-floating .sbs-image-box-content,.sbs-image-box-reveal .sbs-image-box-content{position:absolute;left:24px;right:24px;bottom:24px;color:#fff}.sbs-image-box-overlay::after,.sbs-image-box-reveal::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(0,0,0,.72));z-index:1}.sbs-image-box-side{display:grid;grid-template-columns:42% 1fr;align-items:center}.sbs-image-box-side .sbs-image-box-content{padding:24px}.sbs-image-box-reveal .sbs-image-box-content{transform:translateY(35%);opacity:0;transition:.35s}.sbs-image-box-reveal:hover .sbs-image-box-content{transform:translateY(0);opacity:1}.sbs-image-box-number{position:absolute;top:18px;right:22px;z-index:3;font-size:44px;font-weight:800;opacity:.16}.sbs-image-box-slider{position:relative;overflow:hidden}.sbs-slider-viewport{overflow:hidden}.sbs-slider-track{display:flex;transition:transform .45s ease;will-change:transform}.sbs-image-box-slide{flex:0 0 33.333%;min-width:0}.sbs-image-box-slide-inner{display:block;overflow:hidden;text-decoration:none;color:inherit}.sbs-slider-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:42px;height:42px;border-radius:50%;border:0;background:#111;color:#fff;cursor:pointer}.sbs-slider-prev{left:10px}.sbs-slider-next{right:10px}.sbs-anim-image{display:inline-block;position:relative;overflow:hidden}.sbs-image-shine::after,.sbs-btn-shine::after{content:"";position:absolute;top:0;left:-120%;width:55%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);transform:skewX(-20deg);transition:.65s}.sbs-image-shine:hover::after,.sbs-btn-shine:hover::after{left:125%}.sbs-image-mask img{border-radius:32px 8px 32px 8px}.sbs-image-caption{display:block;margin-top:10px}.sbs-draw-svg svg{display:block;max-width:100%;height:auto;overflow:visible}.sbs-brand-slider{overflow:hidden}.sbs-brand-track{display:flex;align-items:center;gap:28px}.sbs-brand-marquee .sbs-brand-track,.sbs-marquee .sbs-brand-track{width:max-content;animation:sbsMarquee 28s linear infinite}.sbs-brand-slider:hover .sbs-brand-track{animation-play-state:paused}.sbs-brand-item{display:flex;align-items:center;justify-content:center;min-width:150px;min-height:80px;padding:18px;border-radius:16px;background:#fff}.sbs-brand-item img{max-width:140px;max-height:62px;object-fit:contain}.sbs-brand-grid .sbs-brand-track{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));width:100%}@keyframes sbsMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}.sbs-animated-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;position:relative;overflow:hidden;text-decoration:none;transition:all .35s ease;padding:14px 28px;border-radius:999px;background:#111;color:#fff}.sbs-btn-outline{background:transparent;color:#111;border:1px solid currentColor}.sbs-btn-arrow .sbs-btn-icon{transition:.25s}.sbs-btn-arrow:hover .sbs-btn-icon{transform:translateX(5px)}.sbs-btn-circle::before,.sbs-btn-split::before{content:"";position:absolute;inset:auto auto 50% 50%;width:0;height:0;border-radius:50%;background:rgba(255,255,255,.22);transform:translate(-50%,50%);transition:.45s}.sbs-btn-circle:hover::before,.sbs-btn-split:hover::before{width:280%;height:280%}.sbs-btn-text,.sbs-btn-icon{position:relative;z-index:2}.sbs-scroll-video video{display:block;width:100%;height:80vh;object-fit:cover}.sbs-scroll-elements{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px}.sbs-scroll-elements-timeline{display:block;border-left:2px solid rgba(0,0,0,.12);padding-left:24px}.sbs-scroll-elements-stack{display:flex;flex-direction:column}.sbs-scroll-element-item{position:relative;padding:24px;border-radius:18px;background:#fff}.sbs-scroll-element-icon{display:inline-flex;font-size:28px;margin-bottom:12px}.sbs-text-animation{font-size:clamp(28px,5vw,72px);font-weight:800;line-height:1.1}.sbs-text-dynamic{display:inline-block;min-width:1ch}.sbs-video-popup-trigger{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:12px;border:0;background:#111;color:#fff;cursor:pointer;overflow:hidden}.sbs-video-popup-trigger img{display:block;width:100%;height:auto}.sbs-video-popup-image,.sbs-video-popup-overlay{min-height:260px;border-radius:22px}.sbs-video-popup-image .sbs-play-icon,.sbs-video-popup-overlay .sbs-play-icon,.sbs-video-popup-circle .sbs-play-icon{width:72px;height:72px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#fff;color:#111}.sbs-video-modal{position:fixed;inset:0;z-index:999999;display:none}.sbs-video-modal.is-active{display:block}.sbs-video-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.78)}.sbs-video-modal-dialog{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(980px,92vw);aspect-ratio:16/9}.sbs-video-modal-content,.sbs-video-modal-content iframe,.sbs-video-modal-content video{width:100%;height:100%;display:block;background:#000}.sbs-video-modal-close{position:absolute;right:-16px;top:-44px;width:38px;height:38px;border-radius:50%;border:0;background:#fff;cursor:pointer;font-size:24px}.sbs-video-box{position:relative;overflow:hidden}.sbs-video-box video{display:block;width:100%;height:auto}.sbs-video-box-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:68px;height:68px;border-radius:50%;border:0;background:#fff;color:#111;cursor:pointer}.sbs-video-box h3{position:absolute;left:24px;bottom:18px;color:#fff;margin:0}.sbs-sticky-wrap{position:relative}.sbs-sticky-box{position:sticky;top:80px}.sbs-empty{padding:18px;border:1px dashed #bbb;border-radius:12px;color:#777}@media(max-width:767px){.sbs-image-box-side{grid-template-columns:1fr}.sbs-image-box-slide{flex-basis:100%!important}.sbs-slider-arrow{width:36px;height:36px}.sbs-scroll-video video{height:60vh}}

/* SBS Hero Area Widget */
.sbs-lux-hero {
	position: relative;
	min-height: 900px;
	background: #111;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.sbs-lux-hero__slides,
.sbs-lux-hero__slide,
.sbs-lux-hero__bg,
.sbs-lux-hero__bg img,
.sbs-lux-hero__overlay {
	position: absolute;
	inset: 0;
}

.sbs-lux-hero__slides {
	z-index: 1;
}

.sbs-lux-hero__slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity .75s ease, visibility .75s ease;
}

.sbs-lux-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.sbs-lux-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.001);
}

.sbs-lux-hero__overlay {
	z-index: 2;
	pointer-events: none;
	background-color: rgba(0,0,0,.55);
}

.sbs-hero-gradient-yes .sbs-lux-hero__overlay {
	background-image:
		linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.66)),
		linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.18), rgba(0,0,0,.82));
}

.sbs-lux-hero__inner {
	position: relative;
	z-index: 3;
	min-height: inherit;
	display: flex;
	align-items: stretch;
}

.sbs-lux-hero__container {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 1440px;
	min-height: inherit;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 40px 55px;
	display: flex;
	align-items: flex-end;
}

.sbs-lux-hero__content-panels {
	position: relative;
	z-index: 4;
	width: 100%;
}

.sbs-lux-hero__content-panel {
	display: none;
	width: 100%;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.sbs-lux-hero__content-panel,
.sbs-lux-rating,
.sbs-lux-hero__title,
.sbs-lux-hero__description,
.sbs-lux-hero__buttons,
.sbs-lux-hero__template > * {
	transform-origin: center center;
	will-change: transform, opacity;
}

.sbs-lux-hero__content-panel:not(.is-active) {
	display: none !important;
}

.sbs-lux-hero__content-panel.is-active {
	display: flex !important;
}

.sbs-lux-hero__content-panel--template.is-active {
	display: block !important;
}

.sbs-lux-hero__template {
	width: 100%;
}

.sbs-lux-hero__manual-left {
	max-width: 860px;
	min-width: 0;
}

.sbs-lux-hero__manual-right {
	width: 428px;
	max-width: 100%;
	flex: 0 0 auto;
}

.sbs-lux-rating {
	margin-bottom: 18px;
	color: #dedede;
	font-size: 18px;
	line-height: 1.55;
}

.sbs-lux-rating__avatars {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.sbs-lux-rating__avatars img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #fff;
	margin-right: -10px;
	object-fit: cover;
	background: #ddd;
}

.sbs-lux-rating__text strong,
.sbs-lux-rating__text span {
	display: block;
}

.sbs-lux-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(42px, 5vw, 66px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -1.5px;
}

.sbs-lux-hero__description {
	margin: 0 0 22px;
	color: #f0f0f0;
	font-size: 16px;
	line-height: 1.55;
}

.sbs-lux-hero__buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.sbs-lux-hero__btn {
	position: relative;
	min-height: 60px;
	padding: 0 12px 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	text-decoration: none !important;
	color: #fff;
	font-weight: 700;
	border: 1px solid rgba(255,255,255,.72);
	overflow: hidden;
	transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.sbs-lux-hero__btn:hover {
	transform: translateY(-2px);
	color: #fff;
}

.sbs-lux-hero__primary {
	background: #b88a2a;
	border-color: #b88a2a;
}

.sbs-lux-hero__secondary {
	background: transparent;
}

.sbs-lux-hero__btn-icon {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #111;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	transition: transform .25s ease;
	flex: 0 0 auto;
}

.sbs-lux-hero__btn-icon svg {
	width: 1em;
	height: 1em;
	display: block;
	fill: currentColor;
}

.sbs-lux-hero__btn-icon i {
	display: block;
	line-height: 1;
}

.sbs-lux-hero__btn:hover .sbs-lux-hero__btn-icon {
	transform: translateX(4px);
}

.sbs-lux-hero__side-nav {
	position: absolute;
	z-index: 6;
	top: auto;
	left: auto;
	right: var(--sbs-hero-side-right, 40px);
	bottom: 236px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 22px;
	pointer-events: auto;
}

.sbs-lux-hero__thumbs {
	width: 156px;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sbs-lux-hero__thumb {
	position: relative;
	box-sizing: border-box;
	width: 156px;
	height: 108px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	opacity: .86;
	transition: opacity .3s ease, transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.sbs-lux-hero__thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .45s ease;
}

.sbs-lux-hero__thumb::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	border-bottom: 4px solid transparent;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease, border-color .3s ease;
}

.sbs-lux-hero__thumb:hover,
.sbs-lux-hero__thumb.is-active {
	opacity: 1;
	transform: translateX(-3px);
}

.sbs-lux-hero__thumb:hover img,
.sbs-lux-hero__thumb.is-active img {
	transform: scale(1.06);
}

.sbs-lux-hero__thumb.is-active::after {
	border-color: #b88a2a;
	transform: scaleX(1);
}

.sbs-lux-hero__nav {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	margin: 0;
}

.sbs-lux-hero__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 46px;
	border: 1px solid rgba(255,255,255,.45);
	background: transparent;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.sbs-lux-hero__arrow:hover {
	background: rgba(255,255,255,.12);
	transform: translateY(-2px);
}

.sbs-lux-hero__next {
	border-color: #b88a2a;
}

.sbs-lux-hero--static .sbs-lux-hero__side-nav {
	display: none;
}

.elementor-editor-active .sbs-lux-hero__slide:not(.is-active) {
	opacity: 0 !important;
	visibility: hidden !important;
}

.elementor-editor-active .sbs-lux-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.elementor-editor-active .sbs-lux-hero__content-panel:not(.is-active) {
	display: none !important;
}

.elementor-editor-active .sbs-lux-hero__content-panel.is-active {
	display: flex !important;
}

.elementor-editor-active .sbs-lux-hero__content-panel--template.is-active {
	display: block !important;
}

@media (max-width: 1024px) {
	.sbs-lux-hero__title {
		font-size: clamp(42px, 7vw, 60px);
	}

	.sbs-lux-hero__manual-right {
		width: 360px;
	}

	.sbs-lux-hero__side-nav {
		right: var(--sbs-hero-side-right, 30px);
		bottom: 250px;
	}
}

@media (max-width: 991px) {
	.sbs-lux-hero {
		min-height: 760px;
	}

	.sbs-lux-hero__container {
		padding: 40px 24px 35px;
	}

	.sbs-lux-hero__content-panel.is-active {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-end;
		gap: 28px;
	}

	.sbs-lux-hero__manual-left,
	.sbs-lux-hero__manual-right {
		width: 100% !important;
		max-width: 100% !important;
	}

	.sbs-hero-hide-nav-mobile-yes .sbs-lux-hero__side-nav {
		display: none;
	}

	.sbs-lux-hero__buttons {
		gap: 14px;
	}
}

@media (max-width: 575px) {
	.sbs-lux-hero {
		min-height: 720px;
	}

	.sbs-lux-hero__title {
		font-size: 42px;
		letter-spacing: -.6px;
	}

	.sbs-lux-rating {
		font-size: 16px;
	}

	.sbs-lux-hero__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.sbs-lux-hero__btn {
		width: 100%;
	}
}

/* SBS Hero Area - Video Background + Custom Thumbnail Support */
.sbs-lux-hero__bg video,
.sbs-lux-hero__bg iframe,
.sbs-lux-hero__video-poster {
	position: absolute;
	inset: 0;
}

.sbs-lux-hero__bg video,
.sbs-lux-hero__video-poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.sbs-lux-hero__bg--video-file video {
	z-index: 2;
	background: #111;
}

.sbs-lux-hero__bg--video-iframe {
	overflow: hidden;
	background: #111;
}

.sbs-lux-hero__bg--video-iframe .sbs-lux-hero__video-poster {
	z-index: 1;
}

.sbs-lux-hero__bg--video-iframe .sbs-lux-hero__iframe {
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 177.77777778vh;
	height: 100vh;
	min-width: 100%;
	min-height: 56.25vw;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.sbs-lux-hero__slide,
.sbs-lux-hero__content-panel {
	will-change: opacity, transform;
}

.sbs-lux-hero__thumb img {
	background: #222;
}

/* SBS Services Widget */
.sbs-services-empty {
	padding: 18px 20px;
	border: 1px dashed rgba(0, 0, 0, 0.25);
	background: rgba(0, 0, 0, 0.04);
	color: #222;
}

.sbs-services-accordion {
	--sbs-services-height: 180px;
	--sbs-services-min-collapsed: 72px;
	--sbs-services-active-grow: 4;
	--sbs-services-collapsed: 62px;
	--sbs-services-expanded: 28%;
	--sbs-services-active-scale: 1.05;
	display: flex;
	width: 100%;
	height: var(--sbs-services-height);
	gap: 6px;
	overflow: hidden;
	box-sizing: border-box;
}

.sbs-service-card {
	position: relative;
	display: block;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	background: #111;
	color: #fff;
	text-decoration: none !important;
	isolation: isolate;
	cursor: pointer;
	outline: none;
	box-sizing: border-box;
	will-change: flex-grow, flex-basis, transform;
}

.sbs-services-accordion--auto .sbs-service-card {
	flex: 1 1 0;
	flex-basis: 0;
	min-width: min(var(--sbs-services-min-collapsed), 100%);
}

.sbs-services-accordion--auto .sbs-service-card.is-active {
	flex-grow: var(--sbs-services-active-grow);
}

.sbs-services-accordion--fixed .sbs-service-card {
	flex: 0 0 var(--sbs-services-collapsed);
}

.sbs-services-accordion--fixed .sbs-service-card.is-active {
	flex-basis: var(--sbs-services-expanded);
}

.sbs-service-card__media,
.sbs-service-card__overlay,
.sbs-service-card__media img {
	position: absolute;
	inset: 0;
}

.sbs-service-card__media {
	z-index: 1;
}

.sbs-service-card__image,
.sbs-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.001);
	transition: transform .55s ease;
}

.sbs-service-card.is-active .sbs-service-card__image,
.sbs-service-card.is-active .sbs-service-card__media img {
	transform: scale(var(--sbs-services-active-scale));
}

.sbs-service-card__overlay {
	z-index: 2;
	background-color: rgba(0,0,0,.42);
	background-image: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.70) 100%);
	transition: background-color .35s ease;
}

.sbs-service-card__inner {
	position: relative;
	z-index: 3;
	height: 100%;
	padding: 14px 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}

.sbs-service-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.sbs-service-card__number {
	display: block;
	margin-bottom: 10px;
	color: rgba(255,255,255,.76);
	font-size: 22px;
	line-height: 1;
	font-weight: 300;
	letter-spacing: -0.04em;
}

.sbs-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .35s ease, transform .35s ease;
}

.sbs-service-card.is-active .sbs-service-card__icon {
	opacity: 1;
	transform: translateY(0);
}

.sbs-service-card__icon svg,
.sbs-service-card__icon i,
.sbs-service-card__icon img {
	display: block;
	width: 1em;
	height: 1em;
}

.sbs-service-card__icon svg {
	fill: currentColor;
}

.sbs-service-card__content {
	max-width: 100%;
	will-change: transform, opacity;
}

.sbs-service-card__category {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .35s ease, transform .35s ease;
}

.sbs-service-card.is-active .sbs-service-card__category {
	opacity: 1;
	transform: translateY(0);
}

.sbs-service-card__title {
	margin: 0 0 8px;
	color: #fff;
	font-size: 13px;
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: transform .35s ease;
}

.sbs-service-card:not(.is-active) .sbs-service-card__title {
	-webkit-line-clamp: 2;
}

.sbs-service-card__excerpt {
	margin: 0;
	color: #fff;
	font-size: 11px;
	line-height: 1.35;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .35s ease, transform .35s ease;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sbs-service-card.is-active .sbs-service-card__excerpt {
	opacity: 1;
	transform: translateY(0);
}

.sbs-service-card:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.85);
}

@media (max-width: 767px) {
	.sbs-services-mobile-stack-yes .sbs-services-accordion {
		height: auto;
		flex-direction: column;
		overflow: visible;
	}

	.sbs-services-mobile-stack-yes .sbs-service-card,
	.sbs-services-mobile-stack-yes .sbs-service-card.is-active {
		flex: none !important;
		flex-basis: auto !important;
		flex-grow: 1 !important;
		height: var(--sbs-services-height);
	}

	.sbs-services-mobile-stack-yes .sbs-service-card__icon,
	.sbs-services-mobile-stack-yes .sbs-service-card__category,
	.sbs-services-mobile-stack-yes .sbs-service-card__excerpt {
		opacity: 1;
		transform: none;
	}
}

/* ------------------------------------------------------------
 * SBS Scroll Slider Widget
 * ------------------------------------------------------------ */
.elementor-widget-sbs-scroll-slider,
.elementor-widget-sbs-scroll-slider > .elementor-widget-container {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	--container-widget-width: 100% !important;
	--container-widget-flex-grow: 1 !important;
	flex: 1 1 100% !important;
	align-self: stretch !important;
	box-sizing: border-box;
}

.elementor-widget-sbs-scroll-slider {
	display: block;
}

.sbs-scroll-slider {
	position: relative;
	min-height: var(--sbs-scroll-slider-section-height, 100vh);
	background: #171717;
	color: #fff;
	overflow: hidden;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
	isolation: isolate;
	box-sizing: border-box;
	--sbs-scroll-slider-active-scale: 1.04;
	--sbs-scroll-slider-header-offset: 0px;
	--sbs-scroll-slider-section-height: 100vh;
}

.sbs-scroll-slider,
.sbs-scroll-slider * {
	box-sizing: border-box;
}

.sbs-scroll-slider--screen-fit {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}

.sbs-scroll-slider--screen-fit .sbs-scroll-slider__container {
	width: 100% !important;
	max-width: none !important;
}

.sbs-scroll-slider:not(.sbs-scroll-slider--screen-fit) {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.sbs-scroll-slider--contained {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.sbs-scroll-slider--contained .sbs-scroll-slider__container {
	max-width: min(100%, var(--sbs-scroll-slider-container-max, 1180px));
	overflow: hidden;
}

.sbs-scroll-slider--contained .sbs-scroll-slider__viewport {
	max-width: 100%;
	clip-path: inset(0);
}

.sbs-scroll-slider--left-to-right .sbs-scroll-slider__track {
	justify-content: flex-start;
}

.sbs-scroll-slider--pinning {
	overflow: hidden;
}

.sbs-scroll-slider--pin-active {
	contain: paint;
	overscroll-behavior-y: auto;
}

.sbs-scroll-slider--pin-active .sbs-scroll-slider__track {
	pointer-events: none;
}

.pin-spacer > .sbs-scroll-slider,
.pin-spacer .sbs-scroll-slider {
	max-width: 100% !important;
}

.pin-spacer:has(.sbs-scroll-slider--contained) {
	max-width: 100% !important;
	overflow: hidden !important;
}

.pin-spacer > .sbs-scroll-slider--screen-fit,
.pin-spacer .sbs-scroll-slider--screen-fit {
	max-width: 100vw !important;
}

.sbs-scroll-slider--viewport-fit {
	height: calc(var(--sbs-scroll-slider-js-vh, 100vh) - var(--sbs-scroll-slider-header-offset, 0px));
	min-height: calc(var(--sbs-scroll-slider-js-vh, 100vh) - var(--sbs-scroll-slider-header-offset, 0px));
	max-height: calc(var(--sbs-scroll-slider-js-vh, 100vh) - var(--sbs-scroll-slider-header-offset, 0px));
}

.sbs-scroll-slider__container {
	width: 100%;
	max-width: 1180px;
	min-height: inherit;
	height: auto;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
}

.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__container {
	height: 100%;
	min-height: 0;
}

.sbs-scroll-slider__viewport {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	min-height: 0;
	min-width: 0;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
	contain: paint;
}

.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__viewport {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}

.sbs-scroll-slider__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 12px;
	will-change: transform;
	min-width: 100%;
	width: 100%;
	max-width: none;
	transform: translate3d(0,0,0);
	backface-visibility: hidden;
}

.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__track {
	height: 100%;
	align-items: center;
	width: 100%;
	min-width: 100%;
}

.sbs-scroll-slider__slide {
	position: relative;
	flex: 0 0 72%;
	height: 520px;
	overflow: hidden;
	background: #222;
	transform: translateZ(0);
}

.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__slide {
	height: 100%;
	max-height: 100%;
}

.sbs-scroll-slider__link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none !important;
	overflow: hidden;
}

.sbs-scroll-slider__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.001);
	transition: transform .8s ease, filter .8s ease;
}

.sbs-scroll-slider__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.42);
	pointer-events: none;
	z-index: 1;
}

.sbs-scroll-slider__content {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 50%;
	max-width: 540px;
	padding: 0 70px;
	transform: translateY(-50%);
	display: block;
}

.sbs-scroll-slider__heading-row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.sbs-scroll-slider__title {
	margin: 0;
	font-size: 26px;
	line-height: 1.1;
	font-weight: 800;
	color: #fff;
}

.sbs-scroll-slider__description {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255,255,255,.72);
}

.sbs-scroll-slider__icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	background: #fff;
	color: #111;
	line-height: 1;
	transition: transform .35s ease, background-color .35s ease, color .35s ease;
}

.sbs-scroll-slider__icon i {
	font-size: 12px;
}

.sbs-scroll-slider__icon svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.sbs-scroll-slider__link:hover .sbs-scroll-slider__icon,
.sbs-scroll-slider__slide.is-active .sbs-scroll-slider__icon {
	transform: translate(3px, -3px);
}

.sbs-scroll-slider__slide.is-active .sbs-scroll-slider__image {
	transform: scale(var(--sbs-scroll-slider-active-scale));
}

.sbs-scroll-slider__arrows {
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	position: relative;
	z-index: 4;
}

.sbs-scroll-slider__arrow {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.15);
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: opacity .25s ease, transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.sbs-scroll-slider__arrow:hover {
	transform: translateY(-2px);
	background: rgba(255,255,255,.16);
	border-color: rgba(255,255,255,.32);
}

.sbs-scroll-slider__arrow.is-disabled {
	opacity: .35;
	pointer-events: none;
}

.elementor-editor-active .sbs-scroll-slider {
	overflow: hidden;
}

.elementor-editor-active .sbs-scroll-slider__track {
	transform: none !important;
}

@media (max-width: 1024px) {
	.sbs-scroll-slider__slide {
		flex-basis: 75%;
	}

	.sbs-scroll-slider__content {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 767px) {
	.sbs-scroll-slider--screen-fit {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.sbs-scroll-slider,
	.sbs-scroll-slider--viewport-fit {
		height: auto;
		min-height: auto;
		max-height: none;
		overflow: visible;
	}

	.sbs-scroll-slider__container,
	.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__container {
		height: auto;
		min-height: auto;
	}

	.sbs-scroll-slider__viewport,
	.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__viewport {
		display: block;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}

	.sbs-scroll-slider__track {
		transform: none !important;
		min-width: 100%;
		width: 100%;
	}

	.sbs-scroll-slider__slide {
		flex-basis: 86%;
		height: 420px;
		scroll-snap-align: center;
	}

	.sbs-scroll-slider__content {
		padding: 0 26px;
		max-width: 100%;
	}
}

/* SBS Scroll Icon Box Slider */
.elementor-widget-sbs-scroll-icon-box-slider,
.elementor-widget-sbs-scroll-icon-box-slider > .elementor-widget-container {
	width: 100%;
	max-width: 100%;
}

.sbs-scroll-iconbox-slider {
	position: relative;
	width: 100%;
	min-height: 920px;
	overflow: hidden;
	--sbs-sib-stagger-y: 90px;
	--sbs-sib-max-row: 3;
	--sbs-sib-viewport-top: 0px;
	--sbs-sib-viewport-bottom-extra: 8px;
	--sbs-sib-intro-gap: 130px;
	--sbs-sib-js-vh: 100vh;
	--sbs-sib-header-offset: 0px;
	--sbs-sib-card-stack-offset: 60px;
	--sbs-sib-vw: 100vw;
	--sbs-sib-vw-half: 50vw;
	--sbs-sib-slider-ml: 0px;
	--sbs-sib-slider-mr: 0px;
}

.sbs-scroll-iconbox-slider--full-width {
	width: var(--sbs-sib-vw, 100vw);
	max-width: var(--sbs-sib-vw, 100vw);
	margin-left: calc(50% - var(--sbs-sib-vw-half, 50vw));
	margin-right: calc(50% - var(--sbs-sib-vw-half, 50vw));
}

.sbs-scroll-iconbox-slider--has-preloader {
	isolation: isolate;
}

.sbs-scroll-iconbox-slider__preloader {
	position: absolute;
	inset: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(242, 240, 232, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	pointer-events: auto;
}

.sbs-scroll-iconbox-slider__preloader-card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 64px;
	padding: 18px 24px;
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
	color: #205f16;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .02em;
}

.sbs-scroll-iconbox-slider__preloader-ring {
	position: relative;
	width: 30px;
	height: 30px;
	border: 3px solid rgba(31, 210, 31, 0.22);
	border-top-color: #1fd21f;
	border-radius: 999px;
	box-sizing: border-box;
	transform-origin: 50% 50%;
}

.sbs-scroll-iconbox-slider__preloader-ring::after {
	content: "";
	position: absolute;
	inset: 7px;
	border-radius: inherit;
	background: #205f16;
	opacity: .12;
}

.sbs-scroll-iconbox-slider__preloader-text {
	display: inline-block;
	white-space: nowrap;
}

.sbs-scroll-iconbox-slider--loaded .sbs-scroll-iconbox-slider__preloader {
	visibility: hidden;
	pointer-events: none;
}

.sbs-scroll-iconbox-slider__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.sbs-scroll-iconbox-slider__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0);
}

.sbs-scroll-iconbox-slider:not(.sbs-scroll-iconbox-slider--fixed-bg) .sbs-scroll-iconbox-slider__bg {
	display: none;
}

.sbs-scroll-iconbox-slider.sbs-scroll-iconbox-slider--auto-height:not(.sbs-scroll-iconbox-slider--pin-fit) {
	min-height: auto !important;
	overflow: visible;
}

.sbs-scroll-iconbox-slider--pin-fit {
	min-height: calc(var(--sbs-sib-js-vh, 100vh) - var(--sbs-sib-header-offset, 0px)) !important;
	overflow: hidden;
}

.sbs-scroll-iconbox-slider__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	padding: 80px 0 110px;
	min-height: inherit;
	display: block;
}

.sbs-scroll-iconbox-slider--auto-height .sbs-scroll-iconbox-slider__container {
	min-height: auto;
	align-items: flex-start;
}

.sbs-scroll-iconbox-slider--pin-fit .sbs-scroll-iconbox-slider__container {
	min-height: calc(var(--sbs-sib-js-vh, 100vh) - var(--sbs-sib-header-offset, 0px));
}

.sbs-scroll-iconbox-slider__intro {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 535px;
	padding: 36px 44px;
	background: #205f16;
	color: #ffffff;
	box-sizing: border-box;
}

.sbs-scroll-iconbox-slider__intro-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 28px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .86);
}

.sbs-scroll-iconbox-slider__intro-kicker-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #f5bf3d;
	line-height: 1;
}

.sbs-scroll-iconbox-slider__intro-kicker-icon i {
	font-size: 18px;
	line-height: 1;
}

.sbs-scroll-iconbox-slider__intro-kicker-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.sbs-scroll-iconbox-slider__intro-heading {
	margin: 0 0 18px;
	color: inherit;
	font-size: clamp(32px, 3.35vw, 45px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.035em;
}

.sbs-scroll-iconbox-slider__intro-highlight {
	display: inline-block;
	color: #f5bf3d;
}

.sbs-scroll-iconbox-slider__intro-description {
	max-width: 470px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
}

.sbs-scroll-iconbox-slider--has-intro .sbs-scroll-iconbox-slider__viewport {
	margin-top: var(--sbs-sib-intro-gap);
}

.sbs-scroll-iconbox-slider__viewport {
	position: relative;
	width: calc(100% - var(--sbs-sib-slider-ml, 0px) - var(--sbs-sib-slider-mr, 0px));
	max-width: none;
	margin-left: var(--sbs-sib-slider-ml, 0px);
	margin-right: var(--sbs-sib-slider-mr, 0px);
	overflow-x: hidden;
	overflow-y: visible;
	scroll-behavior: smooth;
	padding: var(--sbs-sib-viewport-top) 0 var(--sbs-sib-viewport-bottom-extra);
	min-height: var(--sbs-sib-measured-viewport-height, auto);
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.sbs-scroll-iconbox-slider__viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.sbs-scroll-iconbox-slider--auto-height .sbs-scroll-iconbox-slider__viewport {
	padding-bottom: var(--sbs-sib-viewport-bottom-extra);
	min-height: var(--sbs-sib-measured-viewport-height, auto);
}

.sbs-scroll-iconbox-slider--pin-fit .sbs-scroll-iconbox-slider__viewport {
	min-height: auto;
}


.sbs-scroll-iconbox-slider--active .sbs-scroll-iconbox-slider__track {
	will-change: transform;
}

.sbs-scroll-iconbox-slider__track {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: max-content;
	min-width: 100%;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	min-height: var(--sbs-sib-measured-track-height, auto);
}

.sbs-scroll-iconbox-slider__card {
	position: relative;
	width: 390px;
	flex: 0 0 390px;
	min-height: 390px;
	padding: 58px 46px 46px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fff;
	color: inherit;
	text-decoration: none !important;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
	transition: transform .35s ease, box-shadow .35s ease;
	will-change: transform;
}

.sbs-scroll-iconbox-slider--snake .sbs-scroll-iconbox-slider__card {
	margin-top: calc(var(--sbs-sib-stagger-y) * var(--sbs-sib-active-row, var(--sbs-sib-row)));
	transition: margin-top .18s ease-out, transform .35s ease, box-shadow .35s ease;
}

.sbs-scroll-iconbox-slider--linear .sbs-scroll-iconbox-slider__card {
	margin-top: calc(var(--sbs-sib-stagger-y) * var(--sbs-sib-i));
}

.sbs-scroll-iconbox-slider--alternate .sbs-scroll-iconbox-slider__card:nth-child(even) {
	margin-top: var(--sbs-sib-stagger-y);
}

.sbs-scroll-iconbox-slider--none .sbs-scroll-iconbox-slider__card {
	margin-top: 0;
}

.sbs-scroll-iconbox-slider__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.sbs-scroll-iconbox-slider__icon {
	width: 72px;
	height: 72px;
	margin: 0 0 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1fd21f;
	line-height: 1;
}

.sbs-scroll-iconbox-slider__icon i {
	font-size: 44px;
	line-height: 1;
}

.sbs-scroll-iconbox-slider__icon svg {
	width: 44px;
	height: 44px;
	display: block;
	fill: currentColor;
}

.sbs-scroll-iconbox-slider__title {
	margin: 0 0 14px;
	color: #111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.sbs-scroll-iconbox-slider__description {
	margin: 0;
	color: #666;
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 767px) {
	.sbs-scroll-iconbox-slider__preloader {
		padding: 20px;
	}

	.sbs-scroll-iconbox-slider__preloader-card {
		width: min(100%, 280px);
		min-height: 58px;
		padding: 16px 20px;
	}

	.sbs-scroll-iconbox-slider {
		min-height: auto;
		overflow: visible;
	}

	.sbs-scroll-iconbox-slider--full-width {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.sbs-scroll-iconbox-slider__container {
		min-height: auto;
		padding: 50px 20px;
	}

	.sbs-scroll-iconbox-slider__intro {
		max-width: 100%;
		padding: 30px 26px;
	}

	.sbs-scroll-iconbox-slider__intro-kicker {
		margin-bottom: 20px;
	}

	.sbs-scroll-iconbox-slider__intro-heading {
		font-size: 32px;
	}

	.sbs-scroll-iconbox-slider__intro-description {
		font-size: 15px;
	}

	.sbs-scroll-iconbox-slider--has-intro .sbs-scroll-iconbox-slider__viewport {
		margin-top: 34px;
	}

	.sbs-scroll-iconbox-slider__viewport {
		overflow-x: auto;
		overflow-y: visible;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.sbs-scroll-iconbox-slider__track {
		padding-bottom: 20px;
	}

	.sbs-scroll-iconbox-slider__card {
		scroll-snap-align: start;
	}

	.sbs-scroll-iconbox-slider--snake .sbs-scroll-iconbox-slider__card,
	.sbs-scroll-iconbox-slider--linear .sbs-scroll-iconbox-slider__card,
	.sbs-scroll-iconbox-slider--alternate .sbs-scroll-iconbox-slider__card:nth-child(even) {
		margin-top: 0;
	}
}

/* SBS Diagonal Logo Slider */
.sbs-diagonal-logo-slider {
	position: relative;
	min-height: 260px;
	width: 100%;
	overflow: hidden;
	background: #fff;
	isolation: isolate;
}

.sbs-diagonal-logo-slider__stage {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: inherit;
	margin-inline: auto;
	padding: 30px 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sbs-diagonal-logo-slider__row {
	--sbs-dls-rotate: 0deg;
	--sbs-dls-x: 0px;
	--sbs-dls-y: 0px;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120%;
	height: 56px;
	max-width: none;
	transform: translate3d(calc(-50% + var(--sbs-dls-x)), calc(-50% + var(--sbs-dls-y)), 0) rotate(var(--sbs-dls-rotate));
	transform-origin: center center;
	overflow: hidden;
	z-index: 1;
	backface-visibility: hidden;
	box-sizing: border-box;
}

.sbs-diagonal-logo-slider__row--one {
	z-index: 3;
	background: #47bd45;
}

.sbs-diagonal-logo-slider__row--two {
	z-index: 2;
	background: #cfa454;
}

.sbs-diagonal-logo-slider__swiper,
.sbs-diagonal-logo-slider .swiper,
.sbs-diagonal-logo-slider .swiper-wrapper {
	height: 100%;
}

.sbs-diagonal-logo-slider .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear !important;
	will-change: transform;
}

.sbs-diagonal-logo-slider__item {
	width: auto !important;
	height: 100%;
	backface-visibility: hidden;
	margin-inline-end: 46px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.sbs-diagonal-logo-slider__item-inner {
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
}

.sbs-diagonal-logo-slider__item-inner:hover {
	transform: translateY(-1px);
}

.sbs-diagonal-logo-slider__logo {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	object-fit: contain;
	display: block;
}

.sbs-diagonal-logo-slider__logo--white {
	filter: brightness(0) invert(1);
}

.sbs-diagonal-logo-slider__mark {
	position: relative;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(255,255,255,1) 0 24%, rgba(255,255,255,.38) 25% 42%, rgba(255,255,255,0) 43% 100%);
	box-shadow: 0 0 12px rgba(255,255,255,.9);
}

.sbs-diagonal-logo-slider__mark::before,
.sbs-diagonal-logo-slider__mark::after {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	width: 34px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
	transform: translate(-50%, -50%);
}

.sbs-diagonal-logo-slider__mark::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.sbs-diagonal-logo-slider__text {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.sbs-diagonal-logo-slider--fallback .swiper-wrapper {
	animation: sbs-dls-fallback 42s linear infinite;
}

.sbs-diagonal-logo-slider--fallback .sbs-diagonal-logo-slider__row:hover .swiper-wrapper {
	animation-play-state: paused;
}

@keyframes sbs-dls-fallback {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 767px) {
	.sbs-diagonal-logo-slider {
		min-height: 180px;
	}

	.sbs-diagonal-logo-slider__row {
		height: 40px;
	}

	.sbs-diagonal-logo-slider__item {
		margin-inline-end: 28px;
	}

	.sbs-diagonal-logo-slider__text {
		font-size: 12px;
	}
}

/* SBS Diagonal Logo Slider - stable continuous marquee fix */
.sbs-diagonal-logo-slider__row.is-css-marquee .sbs-diagonal-logo-slider__swiper {
	overflow: hidden;
}

.sbs-diagonal-logo-slider__row.is-css-marquee .swiper-wrapper {
	width: max-content;
	min-width: max-content;
	transition: none !important;
	animation-duration: var(--sbs-dls-duration, 32s);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.sbs-diagonal-logo-slider__row.is-css-marquee.sbs-dls-marquee--rtl .swiper-wrapper {
	animation-name: sbs-dls-marquee-rtl;
}

.sbs-diagonal-logo-slider__row.is-css-marquee.sbs-dls-marquee--ltr .swiper-wrapper {
	animation-name: sbs-dls-marquee-ltr;
}

.sbs-diagonal-logo-slider--pause-hover .sbs-diagonal-logo-slider__row.is-css-marquee:hover .swiper-wrapper {
	animation-play-state: paused;
}

@keyframes sbs-dls-marquee-rtl {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

@keyframes sbs-dls-marquee-ltr {
	from { transform: translate3d(-50%, 0, 0); }
	to { transform: translate3d(0, 0, 0); }
}

/*--------------------------------------------------------------
# SBS Projects Grid
--------------------------------------------------------------*/
/* SBS Projects Grid */
.sbs-projects-grid {
	position: relative;
	width: 100%;
}

.sbs-projects-grid__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.sbs-projects-grid__item {
	position: relative;
	min-width: 0;
}

.sbs-projects-grid__card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	background: #000;
	color: #fff;
	text-decoration: none !important;
	isolation: isolate;
	transform: translateZ(0);
	will-change: transform;
}

.sbs-projects-grid__card:hover,
.sbs-projects-grid__card:focus {
	color: #fff;
	text-decoration: none !important;
}

.sbs-projects-grid__image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 320px;
	overflow: hidden;
	background: #111;
}

.sbs-projects-grid__image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.001);
	transition: transform .75s ease;
	will-change: transform;
}

.sbs-projects-grid__overlay {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 32px;
	background: rgba(0,0,0,0);
	transition: background-color .35s ease, opacity .35s ease;
	pointer-events: none;
}

.sbs-projects-grid__meta {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 32px;
	padding: 8px 0;
	background: inherit;
	pointer-events: none;
}

.sbs-projects-grid__title {
	margin: 0;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: .02em;
	max-width: 46%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sbs-projects-grid__terms {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 5px;
	max-width: 54%;
}

.sbs-projects-grid__term {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 18px;
	padding: 3px 9px;
	color: #fff;
	background: transparent;
	border: 1px solid rgba(255,255,255,.24);
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.sbs-projects-grid__button {
	position: absolute;
	left: 50%;
	top: 45%;
	z-index: 5;
	width: 86px;
	height: 86px;
	border-radius: 999px;
	transform: translate(-50%, -50%) scale(1);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 10px;
	background: #fff7de;
	color: #bd8d28;
	text-align: center;
	pointer-events: none;
	box-shadow: 0 14px 45px rgba(0,0,0,.18);
	will-change: transform;
}

.sbs-projects-grid__button::before,
.sbs-projects-grid__button::after {
	content: "";
	position: absolute;
	inset: -7px;
	border-radius: inherit;
	border: 1px solid rgba(255,255,255,.65);
	transform: scale(.96);
	opacity: .85;
	transition: transform .45s ease, opacity .45s ease;
}

.sbs-projects-grid__button::after {
	inset: -14px;
	opacity: .36;
	transition-delay: .05s;
}

.sbs-projects-grid__card:hover .sbs-projects-grid__button::before,
.sbs-projects-grid__card:hover .sbs-projects-grid__button::after {
	transform: scale(1.06);
	opacity: 1;
}

.sbs-projects-grid__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 1;
    transform: rotate(0);
    margin-bottom: 5px;
}

.sbs-projects-grid__button-icon svg,
.sbs-projects-grid__button-icon i {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sbs-projects-grid__button-text {
	display: block;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.15;
	max-width: 58px;
}

.sbs-projects-grid__empty {
	grid-column: 1 / -1;
	padding: 24px;
	background: #f6f6f6;
	color: #111;
	text-align: center;
}

@media (max-width: 767px) {
	.sbs-projects-grid__items {
		grid-template-columns: 1fr;
	}

	.sbs-projects-grid__image {
		height: 280px;
	}

	.sbs-projects-grid__meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.sbs-projects-grid__title,
	.sbs-projects-grid__terms {
		max-width: 100%;
	}

	.sbs-projects-grid__title {
		white-space: normal;
	}
}

/* SBS Projects Grid - Style 2 Featured Mosaic Overlay */
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide {
	grid-column: 1 / -1;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__card {
	position: relative;
	display: block;
	min-height: 0;
	background: #050505;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__image {
	height: clamp(300px, 34vw, 390px);
	border-radius: 0;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__image {
	height: clamp(330px, 36vw, 430px);
}

.sbs-projects-grid--style-2 .sbs-projects-grid__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .58) 100%);
	pointer-events: none;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__overlay {
	z-index: 3;
	inset: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .08);
}

.sbs-projects-grid--style-2 .sbs-projects-grid__meta {
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-height: 45%;
	padding: 88px 28px 28px;
	gap: 8px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .48) 58%, rgba(0, 0, 0, .74) 100%);
	text-align: center;
	pointer-events: none;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
	align-items: flex-end;
	text-align: right;
	padding-right: 64px;
	padding-bottom: 42px;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__title {
	max-width: 100%;
	margin: 0;
	font-size: clamp(20px, 2.4vw, 30px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: .01em;
	text-transform: uppercase;
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
	max-width: min(560px, 62%);
}

.sbs-projects-grid__subtitle {
	display: block;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__subtitle {
	font-size: clamp(14px, 1.45vw, 18px);
	font-weight: 400;
	line-height: 1.35;
	color: rgba(255, 255, 255, .92);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.sbs-projects-grid--style-2 .sbs-projects-grid__terms,
.sbs-projects-grid--style-2 .sbs-projects-grid__button {
	display: none !important;
}

.sbs-projects-grid--style-2 .sbs-projects-grid__card:hover .sbs-projects-grid__image img,
.sbs-projects-grid--style-2 .sbs-projects-grid__card:focus .sbs-projects-grid__image img {
	transform: scale(1.045);
}

@media (max-width: 1024px) {
	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
		padding-right: 36px;
	}

	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
		max-width: min(520px, 72%);
	}
}

@media (max-width: 767px) {
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__items {
		grid-template-columns: 1fr;
	}

	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide {
		grid-column: auto;
	}

	.sbs-projects-grid--style-2 .sbs-projects-grid__image,
	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__image {
		height: 320px;
	}

	.sbs-projects-grid--style-2 .sbs-projects-grid__meta,
	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
		align-items: center;
		text-align: center;
		padding: 74px 20px 24px;
	}

	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
		max-width: 100%;
	}
}

/* SBS WooCommerce Products Loop */
.sbs-wc-products {
	--sbs-wc-cols: 3;
	position: relative;
	width: 100%;
}

.sbs-wc-products__filters {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.sbs-wc-products__select-wrap,
.sbs-wc-products__search {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.sbs-wc-products__filter-control,
.sbs-wc-products__search {
	min-height: 34px;
	background: #fff;
	border: 1px solid #49b946;
	color: #151515;
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
}

.sbs-wc-products__filter-control {
	min-width: 116px;
	padding: 0 34px 0 16px;
	appearance: none;
	-webkit-appearance: none;
	text-transform: uppercase;
	cursor: pointer;
	outline: none;
}

.sbs-wc-products__select-wrap::after {
	content: "";
	position: absolute;
	right: 13px;
	top: 50%;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #49b946;
	transform: translateY(-35%);
	pointer-events: none;
}

.sbs-wc-products__search {
	width: min(240px, 100%);
	padding: 0 13px;
}

.sbs-wc-products__search input {
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	padding: 0 24px 0 0 !important;
	font-size: 11px;
}

.sbs-wc-products__search-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #49b946;
	font-size: 18px;
	line-height: 1;
}

.sbs-wc-products__grid {
	display: grid;
	grid-template-columns: repeat(var(--sbs-wc-cols), minmax(0, 1fr));
	gap: 24px;
}

.sbs-wc-products__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
	min-width: 0;
	min-height: 390px;
	transform: translateZ(0);
	box-shadow: none;
}

.sbs-wc-products__media {
	position: relative;
	height: 315px;
	background: #f7f7f7;
	overflow: hidden;
}

.sbs-wc-products__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	text-decoration: none !important;
}

.sbs-wc-products__image img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transform-origin: 50% 60%;
	will-change: transform;
}

.sbs-wc-products__badge,
.sbs-wc-products__badge--brand {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	background: #fff;
	color: #555;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .03em;
	padding: 9px 12px;
	min-height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sbs-wc-products__quick {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 24px;
	background: #35b735;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
	transform: translate(-50%, calc(-50% + 8px)) scale(.92);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	white-space: nowrap;
	box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
	transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.sbs-wc-products__quick:hover {
	color: #fff;
}

.sbs-wc-products__body {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px 22px;
	background: #fff;
}

.sbs-wc-products__info {
	min-width: 0;
	padding-right: 8px;
}

.sbs-wc-products__title {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.sbs-wc-products__title a {
	color: #111;
	text-decoration: none !important;
}

.sbs-wc-products__subtitle {
	color: #7B7B7B;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.sbs-wc-products__price {
	flex: 0 0 auto;
	margin-top: 0;
	color: #111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	text-align: right;
}

.sbs-wc-products__price del {
	display: block;
	font-size: .82em;
	opacity: .55;
}

.sbs-wc-products__price ins {
	text-decoration: none;
}

.sbs-wc-products__tags {
	display: flex;
	justify-content: flex-end;
	gap: 5px;
	padding: 0 20px 18px;
	margin-top: -10px;
	background: #fff;
}

.sbs-wc-products__tags:empty {
	display: none;
}

.sbs-wc-products__tag {
	display: inline-flex;
	align-items: center;
	min-height: 18px;
	padding: 0 8px;
	border: 1px solid #ddd;
	color: #666;
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.sbs-wc-products__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.sbs-wc-products__load-more,
.sbs-wc-products__shop-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 26px;
	border: 0;
	background: #35b735;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.sbs-wc-products__load-more:hover,
.sbs-wc-products__shop-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.sbs-wc-products__load-more[hidden] {
	display: none !important;
}

.sbs-wc-products__empty,
.sbs-wc-products__notice {
	padding: 28px;
	text-align: center;
	background: #f7f7f7;
	color: #555;
	font-weight: 600;
}

.sbs-wc-products__empty[hidden] {
	display: none !important;
}

.sbs-wc-products.is-loading .sbs-wc-products__grid {
	pointer-events: none;
	opacity: .65;
	transition: opacity .2s ease;
}

@media (max-width: 1024px) {
	.sbs-wc-products {
		--sbs-wc-cols: 2;
	}
}

@media (max-width: 767px) {
	.sbs-wc-products {
		--sbs-wc-cols: 1;
	}

	.sbs-wc-products__filters {
		justify-content: stretch;
	}

	.sbs-wc-products__select-wrap,
	.sbs-wc-products__filter-control,
	.sbs-wc-products__search {
		width: 100%;
	}

	.sbs-wc-products__media {
		height: 300px;
	}

	.sbs-wc-products__body {
		padding: 16px 18px 20px;
	}
}

.sbs-wc-products__card:hover .sbs-wc-products__quick,
.sbs-wc-products__card:focus-within .sbs-wc-products__quick {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

/* SBS WooCommerce Products Loop - Style 2 Showcase Banners */
.sbs-wc-products--style-2 .sbs-wc-products__grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.sbs-wc-products__card--showcase {
	position: relative;
	min-height: 360px;
	width: 100%;
	background: #111;
	overflow: hidden;
	isolation: isolate;
	box-shadow: none;
}

.sbs-wc-products__style2-bg,
.sbs-wc-products__style2-bg img,
.sbs-wc-products__style2-overlay {
	position: absolute;
	inset: 0;
}

.sbs-wc-products__style2-bg {
	z-index: 1;
	display: block;
	text-decoration: none !important;
}

.sbs-wc-products__style2-bg img {
	width: 100%;
	height: 100%;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover;
	object-position: center center;
	transform-origin: 50% 50%;
	will-change: transform;
}

.sbs-wc-products__style2-overlay {
	z-index: 2;
	background: rgba(0, 0, 0, .55);
	pointer-events: none;
}

.sbs-wc-products__style2-content {
	position: absolute;
	z-index: 4;
	left: 170px;
	top: 50%;
	width: calc(100% - 220px);
	max-width: 520px;
	transform: translateY(-50%);
	color: #fff;
}

.sbs-wc-products__style2-brand {
	margin: 0 0 10px;
	color: #fff;
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.sbs-wc-products__style2-title {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.sbs-wc-products__style2-title a {
	color: #fff;
	text-decoration: none !important;
}

.sbs-wc-products__style2-brand + .sbs-wc-products__style2-title {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.sbs-wc-products__style2-subtitle {
	margin-top: 8px;
	color: rgba(255, 255, 255, .76);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
}

.sbs-wc-products__style2-link {
	margin-top: 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #42c943;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
}

.sbs-wc-products__style2-link:hover {
	color: #42c943;
}

.sbs-wc-products__style2-link i {
	font-style: normal;
	font-size: 18px;
	line-height: .8;
	transition: transform .25s ease;
}

.sbs-wc-products__style2-link:hover i {
	transform: translateX(3px);
}

.sbs-wc-products__style2-dots {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 26px;
}

.sbs-wc-products__style2-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .38);
}

.sbs-wc-products__style2-dots span.is-active {
	background: #42c943;
}

.sbs-wc-products__style2-arrow {
	position: absolute;
	z-index: 5;
	top: 50%;
	width: 30px;
	height: 30px;
	border: 0;
	background: rgba(255, 255, 255, .13);
	color: rgba(255, 255, 255, .8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}

.sbs-wc-products__style2-arrow:hover {
	background: rgba(255, 255, 255, .25);
	color: #fff;
	transform: translateY(-50%) scale(1.06);
}

.sbs-wc-products__style2-arrow--prev {
	left: 26px;
}

.sbs-wc-products__style2-arrow--next {
	right: 26px;
}

.sbs-wc-products--style-2 .sbs-wc-products__card--showcase:hover .sbs-wc-products__style2-bg img,
.sbs-wc-products--style-2 .sbs-wc-products__card--showcase:focus-within .sbs-wc-products__style2-bg img {
	transform: scale(1.045);
}

.sbs-wc-products--style-2 .sbs-wc-products__card--showcase .sbs-wc-products__quick {
	display: none !important;
}

@media (max-width: 1024px) {
	.sbs-wc-products__style2-content {
		left: 90px;
		width: calc(100% - 150px);
	}

	.sbs-wc-products__style2-brand {
		font-size: 30px;
	}

	.sbs-wc-products__style2-title {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.sbs-wc-products__card--showcase {
		min-height: 280px;
	}

	.sbs-wc-products__style2-content {
		left: 56px;
		right: 42px;
		width: auto;
		max-width: none;
	}

	.sbs-wc-products__style2-brand {
		font-size: 24px;
	}

	.sbs-wc-products__style2-title {
		font-size: 20px;
	}

	.sbs-wc-products__style2-subtitle {
		font-size: 13px;
	}

	.sbs-wc-products__style2-arrow {
		width: 26px;
		height: 26px;
	}

	.sbs-wc-products__style2-arrow--prev {
		left: 14px;
	}

	.sbs-wc-products__style2-arrow--next {
		right: 14px;
	}
}


/* SBS WooCommerce Products Loop - Style 3 Banner + Product Rows */
.sbs-wc-products--style-3 .sbs-wc-products__grid {
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.sbs-wc-products__style3-group {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.sbs-wc-products__style3-banner .sbs-wc-products__card--showcase {
	min-height: 270px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style2-content {
	left: 120px;
	max-width: 540px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style2-brand {
	font-size: 22px;
	color: #42c943;
	letter-spacing: -0.02em;
}

.sbs-wc-products--style-3 .sbs-wc-products__style2-title {
	font-size: 24px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style2-brand + .sbs-wc-products__style2-title {
	font-size: 17px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style2-subtitle {
	font-size: 13px;
	max-width: 620px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style2-link {
	margin-top: 18px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style2-dots {
	margin-top: 16px;
}

.sbs-wc-products__style3-products {
	display: grid;
	grid-template-columns: repeat(var(--sbs-wc-cols), minmax(0, 1fr));
	gap: 24px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__card {
	min-height: 330px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__media {
	height: 245px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__image {
	padding: 30px 34px 22px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__body {
	padding: 16px 20px 18px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__title {
	font-size: 15px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__subtitle {
	font-size: 12px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__price {
	font-size: 14px;
}

.sbs-wc-products--style-3 .sbs-wc-products__style3-products .sbs-wc-products__tags {
	padding: 0 20px 16px;
}

@media (max-width: 1024px) {
	.sbs-wc-products--style-3 .sbs-wc-products__style2-content {
		left: 76px;
		width: calc(100% - 130px);
	}

	.sbs-wc-products__style3-products {
		grid-template-columns: repeat(var(--sbs-wc-cols), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sbs-wc-products__style3-banner .sbs-wc-products__card--showcase {
		min-height: 250px;
	}

	.sbs-wc-products--style-3 .sbs-wc-products__style2-content {
		left: 46px;
		right: 34px;
		width: auto;
	}

	.sbs-wc-products__style3-products {
		grid-template-columns: 1fr;
	}
}


/* SBS WooCommerce Products Loop - Style 4 Tabs + Add to Cart */
.sbs-wc-products__button-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
}

.sbs-wc-products__filter-btn {
	appearance: none;
	border: 1px solid #d6d6d6;
	background: #fff;
	color: #555;
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	padding: 10px 16px;
	cursor: pointer;
	transition: all .22s ease;
}

.sbs-wc-products__filter-btn.is-active,
.sbs-wc-products__filter-btn:hover {
	border-color: #49b946;
	color: #49b946;
}

.sbs-wc-products--style-4 .sbs-wc-products__filters {
	justify-content: flex-start;
	margin-bottom: 22px;
}

.sbs-wc-products--style-4 .sbs-wc-products__grid {
	gap: 18px;
}

.sbs-wc-products__card--style4 {
	border: 1px solid #ececec;
	background: #fff;
	min-height: 100%;
	padding: 10px;
}

.sbs-wc-products__media--style4 {
	height: 260px;
	background: #fafafa;
}

.sbs-wc-products__image--style4 {
	padding: 26px 24px 18px;
}

.sbs-wc-products--style-4 .sbs-wc-products__badge--brand {
	top: 10px;
	right: 10px;
	font-size: 9px;
	min-height: 28px;
	padding: 8px 10px;
}

.sbs-wc-products__body--style4 {
	padding: 16px 8px 12px;
	gap: 14px;
	align-items: flex-start;
}

.sbs-wc-products__title--style4 {
	font-size: 17px;
	margin: 0 0 4px;
}

.sbs-wc-products__subtitle--style4 {
	font-size: 12px;
	color: #8a8a8a;
}

.sbs-wc-products__price--style4 {
	font-size: 17px;
}

.sbs-wc-products__footer--style4 {
	padding: 0 8px 10px;
}

.sbs-wc-products__cart-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	border: 1px solid #49b946;
	background: #fff;
	color: #49b946;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	text-transform: none;
	transition: all .22s ease;
}

.sbs-wc-products__cart-btn:hover {
	background: #49b946;
	color: #fff;
}

.sbs-wc-products--style-4 .sbs-wc-products__quick,
.sbs-wc-products--style-4 .sbs-wc-products__tags {
	display: none !important;
}

@media (max-width: 767px) {
	.sbs-wc-products__button-group {
		gap: 8px;
	}

	.sbs-wc-products__filter-btn {
		padding: 9px 12px;
	}

	.sbs-wc-products__media--style4 {
		height: 220px;
	}
}




/* SBS Woo Products Loop - Filter Style 2 Minimal Top Bar */
.sbs-wc-products__filters--dropdown_v2 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	gap: 28px;
	padding: 16px 18px;
	background: #f5f5f5;
	border: 1px solid #e9e9e9;
	margin-bottom: 32px;
	overflow-x: auto;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap,
.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__search {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap--brand {
	margin-left: auto;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap:not(.sbs-wc-products__select-wrap--brand) .sbs-wc-products__filter-control {
	min-width: auto;
	min-height: 36px;
	padding: 0 18px 0 0;
	border: 0;
	background: transparent;
	color: #4e4e4e;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: none;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap:not(.sbs-wc-products__select-wrap--brand)::after {
	right: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid #67bd45;
	transform: translateY(-35%);
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap--brand .sbs-wc-products__filter-control,
.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__search {
	min-height: 38px;
	border: 1px solid #e1e1e1;
	background: #fff;
	box-shadow: none;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap--brand .sbs-wc-products__filter-control {
	min-width: 130px;
	padding: 0 34px 0 14px;
	color: #666;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: 0;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap--brand::after {
	right: 13px;
	border-top-color: #67bd45;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__search {
	width: 220px;
	padding: 0 12px;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__search input {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	padding-right: 24px !important;
	text-transform: none;
}

.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__search-icon {
	color: #67bd45;
	font-size: 18px;
}

@media (max-width: 1024px) {
	.sbs-wc-products__filters--dropdown_v2 {
		flex-wrap: wrap;
		gap: 16px;
	}

	.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap--brand {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.sbs-wc-products__filters--dropdown_v2 {
		padding: 14px;
		gap: 12px;
	}

	.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap,
	.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__filter-control,
	.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__search {
		width: 100%;
	}

	.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap:not(.sbs-wc-products__select-wrap--brand) .sbs-wc-products__filter-control {
		min-height: 38px;
		padding: 0 34px 0 12px;
		border: 1px solid #e1e1e1;
		background: #fff;
	}

	.sbs-wc-products__filters--dropdown_v2 .sbs-wc-products__select-wrap:not(.sbs-wc-products__select-wrap--brand)::after {
		right: 13px;
	}
}


/* SBS Woo Products Loop - Filter Style 3 Filters Left / Search Right */
.sbs-wc-products__filters--dropdown_v3 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 28px;
	row-gap: 12px;
	padding: 16px 18px;
	background: #f5f5f5;
	border: 1px solid #e9e9e9;
	margin-bottom: 32px;
}

.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__select-wrap,
.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__search {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__select-wrap .sbs-wc-products__filter-control {
	min-width: auto;
	min-height: 36px;
	padding: 0 18px 0 0;
	border: 0;
	background: transparent;
	color: #4e4e4e;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: none;
}

.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__select-wrap::after {
	right: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid #67bd45;
	transform: translateY(-35%);
}

.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__search {
	width: 240px;
	min-height: 38px;
	margin-left: auto;
	padding: 0 12px;
	border: 1px solid #e1e1e1;
	background: #fff;
	box-shadow: none;
}

.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__search input {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	padding-right: 24px !important;
	text-transform: none;
}

.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__search-icon {
	color: #67bd45;
	font-size: 18px;
}

@media (max-width: 1024px) {
	.sbs-wc-products__filters--dropdown_v3 {
		column-gap: 16px;
	}
}

@media (max-width: 767px) {
	.sbs-wc-products__filters--dropdown_v3 {
		padding: 14px;
		gap: 12px;
	}

	.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__select-wrap,
	.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__filter-control,
	.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__search {
		width: 100%;
	}

	.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__select-wrap .sbs-wc-products__filter-control {
		min-height: 38px;
		padding: 0 34px 0 12px;
		border: 1px solid #e1e1e1;
		background: #fff;
	}

	.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__select-wrap::after {
		right: 13px;
	}

	.sbs-wc-products__filters--dropdown_v3 .sbs-wc-products__search {
		margin-left: 0;
	}
}

/* SBS Woo Products Loop - matched filter modes */
.sbs-wc-products__filters--dropdown {
	justify-content: center;
}

.sbs-wc-products--style-2 .sbs-wc-products__filters--dropdown,
.sbs-wc-products--style-3 .sbs-wc-products__filters--dropdown {
	justify-content: space-between;
	gap: 10px;
}

.sbs-wc-products__filters--tabs {
	justify-content: flex-start;
	overflow-x: auto;
	overflow-y: hidden;
	flex-wrap: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.sbs-wc-products__filters--tabs .sbs-wc-products__button-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
	width: auto;
	min-width: max-content;
}

.sbs-wc-products__filters--tabs .sbs-wc-products__button-group + .sbs-wc-products__button-group {
	margin-left: 12px;
	padding-left: 12px;
	border-left: 1px solid #ddd;
}

.sbs-wc-products__filters--tabs .sbs-wc-products__filter-btn {
	appearance: none;
	border: 1px solid #dcdcdc;
	background: #fff;
	color: #555;
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	padding: 10px 16px;
	white-space: nowrap;
	cursor: pointer;
	transition: all .22s ease;
}

.sbs-wc-products__filters--tabs .sbs-wc-products__filter-btn.is-active,
.sbs-wc-products__filters--tabs .sbs-wc-products__filter-btn:hover {
	border-color: #49b946;
	color: #49b946;
	background: #fff;
}

.sbs-wc-products--style-4 .sbs-wc-products__filters {
	justify-content: flex-start;
	margin-bottom: 22px;
}

@media (max-width: 767px) {
	.sbs-wc-products__filters--tabs {
		justify-content: flex-start;
	}

	.sbs-wc-products__filters--tabs .sbs-wc-products__filter-btn {
		padding: 9px 12px;
	}
}

/* SBS Image Widget - sizing control fix */
.sbs-image-widget {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 100%;
	vertical-align: top;
	box-sizing: border-box;
}

.sbs-image-widget > img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center center;
	box-sizing: border-box;
}

.sbs-image-fill-wrapper-yes .sbs-image-widget > img {
	width: 100% !important;
	height: 100% !important;
}

.sbs-image-widget .sbs-image-caption {
	width: 100%;
	box-sizing: border-box;
}

.sbs-image-widget.sbs-image-mask {
	border-radius: 32px 8px 32px 8px;
}

.sbs-image-widget.sbs-image-mask > img {
	border-radius: inherit;
}

/* SBS Projects Grid - Style 2 Exact Reference Layout v1.7.0 */
.sbs-projects-grid.sbs-projects-grid--style-2 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__items {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	grid-auto-flow: row dense;
	gap: 14px !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item {
	position: relative;
	min-width: 0;
	grid-column: span 1;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide {
	grid-column: 1 / -1 !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__card {
	position: relative;
	display: block !important;
	width: 100%;
	height: 100%;
	min-height: 0 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	box-shadow: none !important;
	text-decoration: none !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image {
	position: relative;
	display: block;
	width: 100%;
	height: clamp(360px, 37.45vw, 500px) !important;
	min-height: 360px;
	border-radius: 0 !important;
	background: #050505;
	overflow: hidden;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__image {
	height: clamp(360px, 37.45vw, 500px) !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center;
	transform: scale(1.001);
	transition: transform .85s ease, filter .85s ease;
	will-change: transform;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.68) 100%),
		linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,.26) 100%);
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__overlay {
	position: absolute;
	inset: 0 !important;
	z-index: 3;
	background: rgba(0,0,0,.10) !important;
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__meta {
	position: absolute !important;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-end !important;
	min-height: 48% !important;
	gap: 10px !important;
	padding: 120px 28px 55px !important;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.28) 44%, rgba(0,0,0,.72) 100%) !important;
	text-align: center !important;
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
	align-items: flex-end !important;
	text-align: right !important;
	padding: 135px 68px 74px 42px !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__title {
	max-width: min(100%, 690px) !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #fff !important;
	font-size: clamp(23px, 2.05vw, 34px) !important;
	font-weight: 800 !important;
	line-height: 1.05 !important;
	letter-spacing: .01em !important;
	text-transform: uppercase !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	text-shadow: 0 3px 18px rgba(0,0,0,.65);
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__subtitle {
	display: block !important;
	max-width: min(100%, 760px) !important;
	margin: 0 !important;
	padding: 0 !important;
	color: rgba(255,255,255,.94) !important;
	font-size: clamp(15px, 1.45vw, 20px) !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	text-shadow: 0 3px 18px rgba(0,0,0,.66);
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
	max-width: min(650px, 58%) !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__terms,
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__button {
	display: none !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__card:hover .sbs-projects-grid__image img,
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__card:focus .sbs-projects-grid__image img {
	transform: scale(1.045);
}

@media (max-width: 1024px) {
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__items {
		gap: 12px !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__image {
		height: clamp(320px, 42vw, 430px) !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
		padding-right: 44px !important;
		padding-bottom: 62px !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
		max-width: min(620px, 72%) !important;
	}
}

@media (max-width: 767px) {
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__items {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide {
		grid-column: auto !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__image {
		height: 340px !important;
		min-height: 300px;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__meta,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
		align-items: center !important;
		text-align: center !important;
		padding: 96px 22px 44px !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
		max-width: 100% !important;
	}
}

/* SBS Projects Grid - Style 2 compatibility fix v1.7.1
 * Previous build output class used underscore: .sbs-projects-grid--style_2
 * Keep alias selectors so Style 2 works even if cached markup contains old class.
 */
.sbs-projects-grid.sbs-projects-grid--style_2 {
	position: relative;
	width: 100%;
	background: #000;
	overflow: hidden;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__items {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	grid-auto-flow: row dense;
	gap: 14px !important;
	background: #000;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item { grid-column: span 1; }
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide { grid-column: 1 / -1 !important; }

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__card {
	position: relative;
	display: block !important;
	width: 100%;
	height: 100%;
	min-height: 0 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	box-shadow: none !important;
	text-decoration: none !important;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image {
	position: relative;
	display: block;
	width: 100%;
	height: clamp(360px, 37.45vw, 500px) !important;
	min-height: 360px;
	border-radius: 0 !important;
	background: #050505;
	overflow: hidden;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center;
	transform: scale(1.001);
	transition: transform .85s ease, filter .85s ease;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.68) 100%), linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,.26) 100%);
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__overlay {
	position: absolute;
	inset: 0 !important;
	z-index: 3;
	background: rgba(0,0,0,.10) !important;
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__meta {
	position: absolute !important;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-end !important;
	min-height: 48% !important;
	gap: 10px !important;
	padding: 120px 28px 55px !important;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.28) 44%, rgba(0,0,0,.72) 100%) !important;
	text-align: center !important;
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
	align-items: flex-end !important;
	text-align: right !important;
	padding: 135px 68px 74px 42px !important;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__title {
	max-width: min(100%, 690px) !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #fff !important;
	font-size: clamp(23px, 2.05vw, 34px) !important;
	font-weight: 800 !important;
	line-height: 1.05 !important;
	letter-spacing: .01em !important;
	text-transform: uppercase !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	text-shadow: 0 3px 18px rgba(0,0,0,.65);
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__subtitle {
	display: block !important;
	max-width: min(100%, 760px) !important;
	margin: 0 !important;
	padding: 0 !important;
	color: rgba(255,255,255,.94) !important;
	font-size: clamp(15px, 1.45vw, 20px) !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	text-shadow: 0 3px 18px rgba(0,0,0,.66);
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
	max-width: min(650px, 58%) !important;
}

.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__terms,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__button { display: none !important; }

@media (max-width: 767px) {
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__items { grid-template-columns: 1fr !important; gap: 12px !important; }
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide { grid-column: auto !important; }
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image { height: 340px !important; min-height: 300px; }
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__meta,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta { align-items: center !important; text-align: center !important; padding: 96px 22px 44px !important; }
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle { max-width: 100% !important; }
}


/* SBS Projects Grid - Style 2 final design/control fix v1.7.2
   Exact mosaic design: wide row, two half cards, repeat.
   Uses CSS variables so Elementor controls for gap, height and font size work reliably. */
.sbs-projects-grid.sbs-projects-grid--style-2,
.sbs-projects-grid.sbs-projects-grid--style_2 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__items,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__items {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	grid-auto-flow: row dense;
	gap: var(--sbs-pg-style2-gap, 14px) !important;
	align-items: stretch !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item {
	grid-column: span 1;
	min-width: 0;
	margin: 0 !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide {
	grid-column: 1 / -1 !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__card,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__card {
	position: relative;
	display: block !important;
	width: 100%;
	height: 100%;
	min-height: 0 !important;
	background: #000 !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: hidden !important;
	isolation: isolate;
	text-decoration: none !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image,
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__image,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__image {
	position: relative;
	display: block !important;
	width: 100%;
	height: var(--sbs-pg-style2-row-height, clamp(360px, 37.45vw, 470px)) !important;
	min-height: 320px;
	border-radius: 0 !important;
	background: #050505 !important;
	overflow: hidden !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image img,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image img {
	position: absolute;
	inset: 0;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center;
	transform: scale(1.001);
	transition: transform .85s ease, filter .85s ease;
	will-change: transform;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image::after,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.12) 46%, rgba(0,0,0,.72) 100%),
		linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,.24) 100%);
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__overlay,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__overlay {
	position: absolute;
	inset: 0 !important;
	z-index: 3;
	bottom: auto !important;
	background: rgba(0, 0, 0, .08) !important;
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__meta,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__meta {
	position: absolute !important;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-end !important;
	min-height: 46% !important;
	gap: var(--sbs-pg-style2-text-gap, 10px) !important;
	padding: 118px 28px 54px !important;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.74) 100%) !important;
	text-align: center !important;
	pointer-events: none;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
	align-items: flex-end !important;
	text-align: right !important;
	padding: 130px 72px 72px 42px !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__title,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__title {
	display: block !important;
	width: auto;
	max-width: min(100%, 760px) !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #fff !important;
	font-size: var(--sbs-pg-style2-title-size, clamp(24px, 2.08vw, 30px)) !important;
	font-weight: 800 !important;
	line-height: 1.05 !important;
	letter-spacing: .01em !important;
	text-transform: uppercase !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	text-shadow: 0 3px 18px rgba(0,0,0,.70);
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__subtitle,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__subtitle {
	display: block !important;
	width: auto;
	max-width: min(100%, 760px) !important;
	margin: 0 !important;
	padding: 0 !important;
	color: rgba(255,255,255,.94) !important;
	font-size: var(--sbs-pg-style2-subtitle-size, clamp(15px, 1.45vw, 18px)) !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	text-shadow: 0 3px 18px rgba(0,0,0,.66);
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
	max-width: min(720px, 58%) !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__terms,
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__button,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__terms,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__button {
	display: none !important;
}

.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__card:hover .sbs-projects-grid__image img,
.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__card:focus .sbs-projects-grid__image img,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__card:hover .sbs-projects-grid__image img,
.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__card:focus .sbs-projects-grid__image img {
	transform: scale(1.045);
}

@media (max-width: 1024px) {
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
		padding-right: 42px !important;
		padding-bottom: 58px !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
		max-width: min(660px, 72%) !important;
	}
}

@media (max-width: 767px) {
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__items,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__items {
		grid-template-columns: 1fr !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide {
		grid-column: auto !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__image,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__image,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__image,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__image {
		height: var(--sbs-pg-style2-row-height-mobile, 340px) !important;
		min-height: 300px;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__meta,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__meta,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__meta {
		align-items: center !important;
		text-align: center !important;
		padding: 96px 22px 44px !important;
	}

	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid.sbs-projects-grid--style-2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__title,
	.sbs-projects-grid.sbs-projects-grid--style_2 .sbs-projects-grid__item--wide .sbs-projects-grid__subtitle {
		max-width: 100% !important;
	}
}

/* ------------------------------------------------------------
 * SBS Google Map Widget
 * ------------------------------------------------------------ */
.sbs-google-map {
	--sbs-map-card-x: 34px;
	--sbs-map-card-y: 34px;
	position: relative;
	width: 100%;
	height: 360px;
	min-height: 160px;
	overflow: hidden;
	background: #e8e6df;
	isolation: isolate;
}

.sbs-google-map,
.sbs-google-map * {
	box-sizing: border-box;
}

.sbs-google-map__canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.sbs-google-map__notice {
	position: absolute;
	z-index: 5;
	left: 20px;
	top: 20px;
	max-width: calc(100% - 40px);
	padding: 12px 16px;
	background: #fff;
	color: #111;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.sbs-google-map__card {
	position: absolute;
	z-index: 3;
	width: 250px;
	max-width: calc(100% - 40px);
	padding: 22px;
	background: #55c447;
	color: #fff;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

.sbs-google-map--card-left-bottom .sbs-google-map__card {
	left: var(--sbs-map-card-x);
	bottom: var(--sbs-map-card-y);
}

.sbs-google-map--card-left-center .sbs-google-map__card {
	left: var(--sbs-map-card-x);
	top: 50%;
	transform: translateY(-50%);
}

.sbs-google-map--card-right-bottom .sbs-google-map__card {
	right: var(--sbs-map-card-x);
	bottom: var(--sbs-map-card-y);
}

.sbs-google-map--card-right-center .sbs-google-map__card {
	right: var(--sbs-map-card-x);
	top: 50%;
	transform: translateY(-50%);
}

.sbs-google-map--card-center-bottom .sbs-google-map__card {
	left: 50%;
	bottom: var(--sbs-map-card-y);
	transform: translateX(-50%);
}

.sbs-google-map__card-title {
	margin: 0 0 12px;
	color: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.sbs-google-map__card-desc {
	margin: 0 0 14px;
	color: inherit;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.45;
	opacity: .92;
}

.sbs-google-map__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	border-bottom: 1px solid currentColor;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none !important;
	transition: opacity .22s ease;
}

.sbs-google-map__card-btn:hover,
.sbs-google-map__card-btn:focus {
	color: inherit;
	opacity: .82;
}

@media (max-width: 767px) {
	.sbs-google-map {
		height: 320px;
	}

	.sbs-google-map__card,
	.sbs-google-map--card-left-bottom .sbs-google-map__card,
	.sbs-google-map--card-left-center .sbs-google-map__card,
	.sbs-google-map--card-right-bottom .sbs-google-map__card,
	.sbs-google-map--card-right-center .sbs-google-map__card,
	.sbs-google-map--card-center-bottom .sbs-google-map__card {
		left: 16px;
		right: 16px;
		bottom: 16px;
		top: auto;
		width: auto;
		max-width: none;
		transform: none;
	}
}

/* v1.8.8 - P.O.A. pricing compatibility with Smart Building Solutions theme */
.sbs-wc-products__footer--poa .sbs-poa-request-button,
.sbs-remote-products-widget .sbs-poa-request-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid #111111;
	background: #111111;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.sbs-wc-products__footer--poa .sbs-poa-request-button:hover,
.sbs-remote-products-widget .sbs-poa-request-button:hover {
	background: #c19031;
	border-color: #c19031;
	color: #ffffff;
	transform: translateY(-1px);
}


/* v1.8.9 - unavailable product status for SBS Addons product cards */
.sbs-addons-out-of-stock-button,
.sbs-wc-products__footer--out-of-stock .sbs-addons-out-of-stock-button,
.sbs-remote-products-widget .sbs-addons-out-of-stock-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid #b42318;
	background: #fff5f5;
	color: #b42318;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	cursor: not-allowed;
}

/* SBS Access Gate */
.sbs-access-gate {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	border: 1px solid #e5e7eb;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.sbs-access-gate,
.sbs-access-gate * {
	box-sizing: border-box;
}

.sbs-access-gate__shell {
	display: flex;
	min-height: 640px;
	background: inherit;
}

.sbs-access-gate--layout-card .sbs-access-gate__shell {
	display: block;
}

.sbs-access-gate--layout-card {
	overflow: visible;
}

.sbs-access-gate--layout-card .sbs-access-gate__panel {
	min-height: auto;
}

.sbs-access-gate__visual {
	position: relative;
	display: flex;
	flex: 0 0 50%;
	min-width: 0;
	align-items: stretch;
	justify-content: center;
	background: #7476d8;
	overflow: hidden;
}

.sbs-access-gate__visual-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.sbs-access-gate__visual-card {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 34px;
	z-index: 2;
	padding: 24px;
	border-radius: 6px;
	background: rgba(53, 57, 188, 0.78);
	color: #fff;
	backdrop-filter: blur(4px);
}

.sbs-access-gate__visual-title {
	margin: 0 0 14px;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.01em;
	color: #fff;
}

.sbs-access-gate__visual-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	color: #fff;
}

.sbs-access-gate__panel {
	display: flex;
	flex: 1 1 50%;
	min-width: 0;
	align-items: center;
	justify-content: center;
	padding: 54px 80px 42px;
	background: inherit;
	text-align: center;
}

.sbs-access-gate__panel-inner {
	width: 100%;
	max-width: 430px;
	margin: 0 auto;
}

.sbs-access-gate__eyebrow {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	color: #111827;
}

.sbs-access-gate__title {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.18;
	color: #111827;
}

.sbs-access-gate__text {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #6b7280;
}

.sbs-access-gate__text p {
	margin-top: 0;
}

.sbs-access-gate__text p:last-child {
	margin-bottom: 0;
}

.sbs-access-gate__form {
	display: block;
	margin-top: 18px;
	text-align: left;
}

.sbs-access-gate__divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 12px 0 18px;
	color: #9ca3af;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
}

.sbs-access-gate__divider::before,
.sbs-access-gate__divider::after {
	content: '';
	flex: 1 1 auto;
	height: 1px;
	background: #edf0f4;
}

.sbs-access-gate__divider span {
	white-space: nowrap;
}

.sbs-access-gate__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.sbs-access-gate__field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: #111827;
}

.sbs-access-gate__field--full {
	grid-column: 1 / -1;
}

.sbs-access-gate__field em {
	color: #ef4444;
	font-style: normal;
}

.sbs-access-gate__field input,
.sbs-access-gate__field textarea {
	width: 100%;
	min-height: 43px;
	border: 1px solid #e5e7eb;
	border-radius: 5px;
	background: #fff;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #111827;
	outline: none;
	box-shadow: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.sbs-access-gate__field input::placeholder,
.sbs-access-gate__field textarea::placeholder {
	color: #9ca3af;
	opacity: 1;
}

.sbs-access-gate__field textarea {
	min-height: 88px;
	resize: vertical;
}

.sbs-access-gate__field input:focus,
.sbs-access-gate__field textarea:focus {
	border-color: #7476d8;
	box-shadow: 0 0 0 3px rgba(116, 118, 216, 0.14);
}

.sbs-access-gate__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 52px;
	padding: 0 20px;
	border: 1px solid #7476d8;
	border-radius: 4px;
	background: #7476d8;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	box-shadow: none;
	transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.sbs-access-gate__button i {
	font-style: normal;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
}

.sbs-access-gate__button:hover {
	transform: translateY(-1px);
	color: #fff;
}

.sbs-access-gate__button:disabled {
	cursor: not-allowed;
	opacity: 0.65;
	transform: none;
}

.sbs-access-gate__login-row {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #4b5563;
	text-align: center;
}

.sbs-access-gate__login-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: #111827;
	font-size: inherit;
	font-weight: 800;
	line-height: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	transition: color 160ms ease, opacity 160ms ease;
}

.sbs-access-gate__login-link:hover {
	color: #7476d8;
}

.sbs-access-gate__notice {
	margin-top: 14px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.sbs-access-gate__notice--success {
	color: #15803d;
}

.sbs-access-gate__notice--error {
	color: #b91c1c;
}

.sbs-access-gate--pending .sbs-access-gate__panel,
.sbs-access-gate--approved .sbs-access-gate__panel,
.sbs-access-gate--rejected .sbs-access-gate__panel {
	position: relative;
}

.sbs-access-gate--pending .sbs-access-gate__panel-inner::before,
.sbs-access-gate--approved .sbs-access-gate__panel-inner::before,
.sbs-access-gate--rejected .sbs-access-gate__panel-inner::before {
	content: '';
	display: block;
	width: 46px;
	height: 4px;
	margin: 0 auto 18px;
	background: #56B947;
}

.sbs-access-gate--pending .sbs-access-gate__panel-inner::before {
	background: #f59e0b;
}

.sbs-access-gate--rejected .sbs-access-gate__panel-inner::before {
	background: #ef4444;
}

.sbs-access-admin-status {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	background: #f3f4f6;
	color: #374151;
}

.sbs-access-admin-status--pending {
	background: #fef3c7;
	color: #92400e;
}

.sbs-access-admin-status--approved {
	background: #dcfce7;
	color: #166534;
}

.sbs-access-admin-status--rejected {
	background: #fee2e2;
	color: #991b1b;
}

@media (max-width: 1024px) {
	.sbs-access-gate__panel {
		padding: 42px 42px 36px;
	}

	.sbs-access-gate__visual-card {
		left: 24px;
		right: 24px;
		bottom: 24px;
	}
}

@media (max-width: 767px) {
	.sbs-access-gate__shell {
		display: block;
		min-height: auto;
	}

	.sbs-access-gate__visual {
		min-height: 340px;
	}

	.sbs-access-gate__panel {
		padding: 34px 22px 30px;
	}

	.sbs-access-gate__grid {
		grid-template-columns: 1fr !important;
	}

	.sbs-access-gate__title {
		font-size: 24px;
	}

	.sbs-access-gate__visual-title {
		font-size: 23px;
	}

	.sbs-access-gate__visual-card {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.sbs-access-gate__button {
		width: 100%;
	}
}

/* v1.9.7 - SBS Woo Brands widget */
.sbs-woo-brands {
	width: 100%;
}

.sbs-woo-brands__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sbs-woo-brand-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 185px;
	padding: 30px 28px;
	overflow: hidden;
	background: #fff;
	color: inherit;
	text-decoration: none !important;
	isolation: isolate;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.sbs-woo-brand-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(10, 10, 10, .72);
	opacity: 0;
	transition: opacity .28s ease;
}

.sbs-woo-brand-card:hover,
.sbs-woo-brand-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 22px 54px rgba(0, 0, 0, .12);
}

.sbs-woo-brand-card:hover::before,
.sbs-woo-brand-card:focus-visible::before {
	opacity: 1;
}

.sbs-woo-brand-card__logo {
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}

.sbs-woo-brand-card__logo img {
	display: block;
	width: auto;
	max-width: 46%;
	max-height: 70px;
	height: auto;
	object-fit: contain;
	object-position: center;
}

.sbs-woo-brand-card__logo-text {
	display: block;
	max-width: 46%;
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
	text-align: center;
	color: #101010;
}

.sbs-woo-brand-card:hover .sbs-woo-brand-card__logo,
.sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__logo {
	opacity: .22;
	transform: scale(.96);
	filter: grayscale(1);
}

.sbs-woo-brand-card__badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	padding: 0 10px;
	background: #fff;
	color: #111;
	border: 1px solid rgba(0, 0, 0, .1);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: opacity .24s ease, transform .24s ease;
}

.sbs-woo-brand-card:hover .sbs-woo-brand-card__badge,
.sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__badge {
	opacity: .92;
	transform: translateY(-1px);
}

.sbs-woo-brand-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 28px;
	text-align: center;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .28s ease, transform .28s ease;
	pointer-events: none;
}

.sbs-woo-brand-card:hover .sbs-woo-brand-card__overlay,
.sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__overlay {
	opacity: 1;
	transform: translateY(0);
}

.sbs-woo-brand-card__title {
	display: block;
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
}

.sbs-woo-brand-card__description {
	display: block;
	max-width: 310px;
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
}

.sbs-woo-brand-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin-top: 4px;
	padding: 0 18px;
	background: #fff;
	color: #111;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.sbs-woo-brands--empty {
	padding: 18px 20px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	color: #9a3412;
	font-size: 14px;
	font-weight: 700;
}

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

@media (max-width: 767px) {
	.sbs-woo-brands__grid {
		grid-template-columns: 1fr;
	}

	.sbs-woo-brand-card {
		min-height: 170px;
	}

	.sbs-woo-brand-card__overlay {
		padding: 24px 20px;
	}
}

/* v1.9.8 - SBS Woo Brands Style 2: screenshot logo card + text layout */
.sbs-woo-brands--style-2 .sbs-woo-brand-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	min-height: 0;
	padding: 0;
	overflow: visible;
	background: transparent;
	box-shadow: none;
	color: inherit;
	text-decoration: none !important;
	transform: none;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card::before {
	display: none;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card:hover,
.sbs-woo-brands--style-2 .sbs-woo-brand-card:focus-visible {
	transform: none;
	box-shadow: none;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 185px;
	padding: 30px 28px;
	overflow: hidden;
	background: #fff;
	isolation: isolate;
	transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background-color .26s ease;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(10, 10, 10, .08);
	opacity: 0;
	transition: opacity .26s ease;
	pointer-events: none;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card:hover .sbs-woo-brand-card__media,
.sbs-woo-brands--style-2 .sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__media {
	transform: translateY(-1px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .08);
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card:hover .sbs-woo-brand-card__media::before,
.sbs-woo-brands--style-2 .sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__media::before {
	opacity: 1;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__logo {
	z-index: 2;
	min-height: 70px;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card:hover .sbs-woo-brand-card__logo,
.sbs-woo-brands--style-2 .sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__logo {
	opacity: .82;
	transform: scale(.985);
	filter: none;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__badge {
	top: 12px;
	right: 12px;
	z-index: 4;
	min-height: 26px;
	padding: 0 10px;
	border: 1px solid rgba(0, 0, 0, .1);
	background: #fff;
	color: #111;
	border-radius: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	width: 100%;
	padding: 9px 0 0;
	text-align: left;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__title {
	color: #111;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__description {
	max-width: none;
	color: #565656;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__button {
	min-height: 0;
	margin-top: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	color: #ad7900;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: none;
	transition: color .2s ease, transform .2s ease;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card:hover .sbs-woo-brand-card__button,
.sbs-woo-brands--style-2 .sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__button {
	color: #8a6100;
	transform: translateX(2px);
}

@media (max-width: 767px) {
	.sbs-woo-brands--style-2 .sbs-woo-brand-card__media {
		min-height: 170px;
	}
}

/* Keep Style 2 wrapper clean by default, but allow Elementor style controls to override it. */
.sbs-woo-brands.sbs-woo-brands--style-2 .sbs-woo-brand-card {
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

/* v2.0.0 - SBS Woo Brands Style 2 screenshot-match defaults + editable parts */
.sbs-woo-brands--style-2 .sbs-woo-brands__grid {
	align-items: start;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card {
	gap: 8px;
	background: transparent;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__media {
	min-height: 170px;
	padding: 34px 28px;
	background: #ffffff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__media::before {
	background: rgba(0, 0, 0, .055);
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card:hover .sbs-woo-brand-card__media,
.sbs-woo-brands--style-2 .sbs-woo-brand-card:focus-visible .sbs-woo-brand-card__media {
	transform: translateY(-1px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__logo {
	width: 100%;
	min-height: 72px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__logo img {
	max-width: 54%;
	max-height: 72px;
	object-fit: contain;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__logo-text {
	max-width: 70%;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__body {
	gap: 3px;
	padding: 0;
	background: transparent;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__description {
	color: #5f5f5f;
	font-size: 12px;
	line-height: 1.38;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__button {
	color: #b87900;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.sbs-woo-brands--style-2 .sbs-woo-brand-card__badge {
	top: 10px;
	right: 10px;
	min-height: 22px;
	padding: 0 9px;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	font-size: 10px;
	letter-spacing: .06em;
}

/* v2.0.2 - P.O.A popup button compatibility for SBS Woo Products Loop */
.sbs-wc-products button.sbs-poa-request-button,
.sbs-wc-products button.sbs-wc-products__quick,
.sbs-wc-products button.sbs-wc-products__style2-link,
.sbs-wc-products button.sbs-wc-products__cart-btn {
	font-family: inherit;
	cursor: pointer;
}

.sbs-wc-products button.sbs-wc-products__quick.sbs-poa-request-button {
	border: 0;
}

.sbs-wc-products button.sbs-wc-products__style2-link.sbs-poa-request-button {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.sbs-wc-products button.sbs-wc-products__cart-btn.sbs-poa-request-button {
	cursor: pointer;
}

/* v2.0.3 - Request Price popup from SBS Woo Products Loop should behave as a full-screen overlay */
body > .sbs-request-modal,
.sbs-wc-products .sbs-request-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 999999 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100vw !important;
	height: 100vh !important;
	padding: clamp(18px, 4vw, 54px) !important;
	box-sizing: border-box !important;
}

body > .sbs-request-modal.is-open,
.sbs-wc-products .sbs-request-modal.is-open {
	display: flex !important;
}

body > .sbs-request-modal .sbs-request-modal__overlay,
.sbs-wc-products .sbs-request-modal .sbs-request-modal__overlay {
	position: absolute !important;
	inset: 0 !important;
	background: rgba(15, 23, 42, 0.68) !important;
	backdrop-filter: blur(5px) !important;
}

body > .sbs-request-modal .sbs-request-modal__dialog,
.sbs-wc-products .sbs-request-modal .sbs-request-modal__dialog {
	position: relative !important;
	z-index: 2 !important;
	width: min(920px, 100%) !important;
	max-height: min(86vh, 860px) !important;
	overflow: auto !important;
	background: #ffffff !important;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28) !important;
}

body > .sbs-request-modal .sbs-request-modal__close,
.sbs-wc-products .sbs-request-modal .sbs-request-modal__close {
	position: absolute !important;
	top: 14px !important;
	right: 14px !important;
	z-index: 5 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 38px !important;
	height: 38px !important;
	padding: 0 !important;
	border: 1px solid rgba(15, 23, 42, 0.12) !important;
	background: #ffffff !important;
	color: #111827 !important;
	cursor: pointer !important;
}

body > .sbs-request-modal .sbs-request-modal__close::before,
.sbs-wc-products .sbs-request-modal .sbs-request-modal__close::before {
	content: "×" !important;
	font-size: 26px !important;
	line-height: 1 !important;
	font-weight: 500 !important;
}

body > .sbs-request-modal .sbs-request-modal__close i,
body > .sbs-request-modal .sbs-request-modal__close svg,
.sbs-wc-products .sbs-request-modal .sbs-request-modal__close i,
.sbs-wc-products .sbs-request-modal .sbs-request-modal__close svg {
	display: none !important;
}
