/* =========================
   SBS Brand Buttons
   Uses the same markup/class structure as the SBS Designed Button widget.
========================= */
.sbs-brand-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.sbs-brand-buttons .sbs-brand-btn.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: 16px;
	width: auto;
	min-width: 0;
	min-height: 46px;
	padding: 0 6px 0 18px;
	border: 1px solid transparent;
	border-style: solid;
	border-radius: 0;
	text-decoration: none !important;
	box-sizing: border-box;
	overflow: hidden;
	isolation: isolate;
	cursor: pointer;
	line-height: 1;
	transition:
		background-color .28s ease,
		color .28s ease,
		border-color .28s ease,
		transform .28s ease,
		box-shadow .28s ease,
		opacity .28s ease;
}

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

.sbs-brand-buttons .sbs-brand-btn--primary.sbs-dbtn,
.sbs-brand-buttons .sbs-brand-btn--primary.sbs-dbtn.sbs-dbtn--filled {
	background-color: #cda65a;
	border-color: #cda65a;
	color: #ffffff;
}

.sbs-brand-buttons .sbs-brand-btn--secondary.sbs-dbtn,
.sbs-brand-buttons .sbs-brand-btn--secondary.sbs-dbtn.sbs-dbtn--outline {
	background-color: rgba(0, 0, 0, .16);
	border-color: rgba(255, 255, 255, .72);
	color: #ffffff;
}

.sbs-brand-buttons .sbs-dbtn__text,
.sbs-brand-buttons .sbs-brand-btn-label {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: inherit;
	white-space: nowrap;
}

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

.sbs-brand-buttons .sbs-brand-btn--primary .sbs-dbtn__iconbox,
.sbs-brand-buttons .sbs-brand-btn--primary .sbs-brand-btn-arrow {
	background-color: #ffffff;
	color: #111111;
}

.sbs-brand-buttons .sbs-brand-btn--secondary .sbs-dbtn__iconbox,
.sbs-brand-buttons .sbs-brand-btn--secondary .sbs-brand-btn-arrow {
	background-color: transparent;
	color: #ffffff;
	border-left: 1px solid rgba(255, 255, 255, .36);
}

.sbs-brand-buttons .sbs-dbtn__iconbox svg,
.sbs-brand-buttons .sbs-brand-btn-arrow svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
	transition: transform .28s ease, color .28s ease, fill .28s ease, stroke .28s ease;
}

.sbs-brand-buttons .sbs-dbtn__iconbox svg path,
.sbs-brand-buttons .sbs-brand-btn-arrow svg path {
	fill: currentColor;
}

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

.sbs-brand-buttons .sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox svg,
.sbs-brand-buttons .sbs-dbtn--anim-icon-slide:hover .sbs-brand-btn-arrow svg {
	transform: translateX(var(--sbs-dbtn-icon-hover-x));
}

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

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

@media (max-width: 767px) {
	.sbs-brand-buttons .sbs-brand-btn.sbs-dbtn {
		width: auto;
	}

	.sbs-brand-buttons .sbs-dbtn__text,
	.sbs-brand-buttons .sbs-brand-btn-label {
		white-space: normal !important;
	}
}

.sbs-brand-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255,255,255,.78);
	font-size: 12px;
	line-height: 1.4;
}

.sbs-brand-materials {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid rgba(205,166,90,.18);
}

.sbs-brand-material-card {
	min-width: 0;
	background: #151515;
	border-right: 1px solid rgba(205,166,90,.18);
}

.sbs-brand-material-card:last-child {
	border-right: 0;
}

.sbs-brand-material-card__image {
	height: 150px;
	overflow: hidden;
	background: #222;
}

.sbs-brand-material-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.sbs-brand-material-card__content {
	padding: 18px;
}

.sbs-brand-material-card__content h4 {
	margin: 0 0 5px;
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
}

.sbs-brand-material-card__content span {
	color: #cda65a;
	font-size: 11px;
	line-height: 1.3;
	letter-spacing: .02em;
}

.sbs-brand-controls-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
	align-items: center;
	margin-bottom: 28px;
}

.sbs-brand-controls-tab {
	position: relative;
	color: #777;
	text-decoration: none;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding-bottom: 12px;
}

.sbs-brand-controls-tab.is-active,
.sbs-brand-controls-tab:hover {
	color: #111;
}

.sbs-brand-controls-tab.is-active:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #cda65a;
}

.sbs-brand-products-panel {
	display: none;
}

.sbs-brand-products-panel.is-active,
.sbs-brand-products-panel:target {
	display: block;
}

.sbs-brand-controls-products:has(.sbs-brand-products-panel:target) .sbs-brand-products-panel.is-active {
	display: none;
}

.sbs-brand-products {
	display: grid;
	gap: 18px;
}

.sbs-brand-products--cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.sbs-brand-products--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sbs-brand-products--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sbs-brand-products--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sbs-brand-products--cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.sbs-brand-products--cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.sbs-brand-product-card {
	display: flex;
	flex-direction: column;
	background: #f7f7f7;
	border: 1px solid #e5e5e5;
	min-width: 0;
}

.sbs-brand-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 230px;
	background: #fff;
	padding: 20px;
}

.sbs-brand-product-card__image img {
	max-width: 100%;
	height: auto;
	display: block;
}

.sbs-brand-product-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.sbs-brand-product-card__content h4 {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.35;
}

.sbs-brand-product-card__content h4 a {
	color: inherit;
	text-decoration: none;
}

.sbs-brand-product-card__content p {
	margin: 0 0 16px;
	color: #777;
	font-size: 13px;
	line-height: 1.5;
}

.sbs-brand-product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #ddd;
	font-size: 12px;
}

.sbs-brand-product-card__arrow {
	color: #cda65a;
	text-decoration: none;
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 991px) {
	.sbs-brand-materials,
	.sbs-brand-products--cols-4,
	.sbs-brand-products--cols-5,
	.sbs-brand-products--cols-6 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.sbs-brand-buttons,
	.sbs-brand-stats,
	.sbs-brand-controls-tabs {
		gap: 12px;
	}

	.sbs-brand-materials,
	.sbs-brand-products,
	.sbs-brand-products--cols-2,
	.sbs-brand-products--cols-3,
	.sbs-brand-products--cols-4,
	.sbs-brand-products--cols-5,
	.sbs-brand-products--cols-6 {
		grid-template-columns: 1fr;
	}

	.sbs-brand-material-card {
		border-right: 0;
		border-bottom: 1px solid rgba(205,166,90,.18);
	}

	.sbs-brand-product-card__image {
		min-height: 190px;
	}
}

.sbs-brand-meta-field {
	line-height: 1.5;
}

.sbs-brand-meta-field__text {
	margin: 0;
}

.sbs-brand-meta-field__image-element {
	max-width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}

.sbs-brand-meta-field__background {
	min-height: 360px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.sbs-brand-meta-field__url,
.sbs-brand-meta-field__empty,
.sbs-brand-template-part__empty {
	display: inline-block;
	padding: 10px 12px;
	border: 1px dashed rgba(205,166,90,.45);
	font-size: 12px;
	line-height: 1.4;
	color: #777;
}

/* Elementor editor-only design preview placeholders. These are printed only by the Elementor widgets when real brand term data is unavailable. */
.sbs-brand-editor-preview {
	outline: 1px dashed rgba(205,166,90,.28);
	outline-offset: 3px;
}

.sbs-brand-meta-field__background--preview,
.sbs-brand-meta-field__image-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	background:
		linear-gradient(135deg, rgba(17,17,17,.76), rgba(17,17,17,.24)),
		linear-gradient(120deg, #6f7370 0%, #b8b8b3 45%, #444844 100%);
	background-size: cover;
	color: rgba(255,255,255,.82);
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sbs-brand-meta-field__image-preview {
	width: 100%;
	height: 320px;
	max-width: 100%;
}

.sbs-brand-preview-swatch {
	position: relative;
}

.sbs-brand-material-card--preview-1 .sbs-brand-preview-swatch {
	background: linear-gradient(135deg, #e7e7e3 0%, #8c8c88 48%, #f8f8f3 100%);
}

.sbs-brand-material-card--preview-2 .sbs-brand-preview-swatch {
	background: linear-gradient(135deg, #c99a42 0%, #f5d07b 45%, #90651f 100%);
}

.sbs-brand-material-card--preview-3 .sbs-brand-preview-swatch {
	background: linear-gradient(135deg, #4a2f1f 0%, #a06d3b 45%, #24150d 100%);
}

.sbs-brand-material-card--preview-4 .sbs-brand-preview-swatch {
	background: linear-gradient(135deg, #111 0%, #2c2c2c 52%, #050505 100%);
}

.sbs-brand-product-card__preview-thumb {
	display: block;
	width: min(120px, 70%);
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,0)),
		linear-gradient(135deg, #111 0%, #cda65a 52%, #343434 100%);
	box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

/* Scoped GSAP animation helpers for SBS Brand Elementor widgets only. */
.sbs-brand-anim,
.sbs-brand-anim * {
	backface-visibility: hidden;
}

.sbs-brand-anim-word,
.sbs-brand-anim-char {
	display: inline-block;
	will-change: transform, opacity, filter;
}

.sbs-brand-anim--clip_reveal .sbs-brand-meta-field__text,
.sbs-brand-anim--clip_reveal .sbs-brand-meta-field__image-element,
.sbs-brand-anim--clip_reveal .sbs-brand-meta-field__background,
.sbs-brand-anim--clip_reveal.sbs-brand-template-part {
	will-change: clip-path, transform;
}

.sbs-brand-button-hover .sbs-brand-btn {
	position: relative;
	overflow: hidden;
	will-change: transform;
	transform-style: preserve-3d;
}

.sbs-brand-button-hover .sbs-brand-btn > span {
	position: relative;
	z-index: 2;
}

.sbs-brand-button-hover--shine_arrow .sbs-brand-btn::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: -40%;
	bottom: -40%;
	left: -75%;
	width: 55%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
	transform: skewX(-18deg) translateX(0);
	transition: transform .65s cubic-bezier(.2,.8,.2,1);
	pointer-events: none;
}

.sbs-brand-button-hover--shine_arrow .sbs-brand-btn:hover::before {
	transform: skewX(-18deg) translateX(320%);
}

@media (prefers-reduced-motion: reduce) {
	.sbs-brand-anim,
	.sbs-brand-anim *,
	.sbs-brand-button-hover .sbs-brand-btn,
	.sbs-brand-button-hover .sbs-brand-btn::before {
		animation: none !important;
		transition: none !important;
		transform: none !important;
		filter: none !important;
	}
}

/* Separate Technology Filter Bar + Product Grid support. */
.sbs-brand-template-part--controls_tabs .sbs-brand-controls-tabs {
	margin-bottom: 0;
}

.sbs-brand-controls-tabs[data-sbs-brand-filter-group] .sbs-brand-controls-tab {
	cursor: pointer;
}

/* Elementor editor empty-state preview: real data is still used first; these labels only appear when selected brand fields are empty. */
.sbs-brand-editor-empty {
	position: relative;
	opacity: .88;
}

.sbs-brand-meta-field__text.sbs-brand-editor-empty {
	display: inline-block;
	min-width: 1.5ch;
	color: inherit;
	background: transparent;
	border: 0;
	padding: 0;
	outline: 1px dashed rgba(205,166,90,.42);
	outline-offset: 6px;
}

.sbs-brand-meta-field__background--preview.sbs-brand-editor-empty,
.sbs-brand-meta-field__image-preview.sbs-brand-editor-empty,
.sbs-image-widget.sbs-image-brand-empty {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 320px;
	background:
		linear-gradient(135deg, rgba(205,166,90,.18), rgba(255,255,255,.06)),
		repeating-linear-gradient(45deg, rgba(0,0,0,.035) 0, rgba(0,0,0,.035) 10px, rgba(255,255,255,.08) 10px, rgba(255,255,255,.08) 20px);
	border: 1px dashed rgba(205,166,90,.45);
	color: currentColor;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: none;
}

.sbs-brand-meta-field__image-preview.sbs-brand-editor-empty {
	height: 320px;
}

.sbs-image-widget.sbs-image-brand-empty span {
	padding: 10px 14px;
	background: rgba(255,255,255,.72);
	color: #1b1b1b;
}

.sbs-brand-template-part .sbs-brand-editor-empty {
	outline: 1px dashed rgba(205,166,90,.32);
	outline-offset: 4px;
}

.sbs-brand-editor-empty .sbs-brand-product-card__image,
.sbs-brand-editor-empty .sbs-brand-material-card__image {
	background:
		linear-gradient(135deg, rgba(205,166,90,.18), rgba(255,255,255,.18)),
		repeating-linear-gradient(45deg, rgba(0,0,0,.035) 0, rgba(0,0,0,.035) 10px, rgba(255,255,255,.1) 10px, rgba(255,255,255,.1) 20px);
}


/* AJAX product batches for SBS Brand Template Part product-query sections. */
.sbs-brand-products-load-more {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: clamp(24px, 3vw, 42px);
}

.sbs-brand-products-load-more__button {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 220px;
	min-height: 52px;
	padding: 12px 18px 12px 24px;
	border: 1px solid rgba(205, 166, 90, .6);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(20, 20, 20, .08);
	color: #171717;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .02em;
	text-decoration: none;
	transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.sbs-brand-products-load-more__button:hover,
.sbs-brand-products-load-more__button:focus-visible {
	border-color: #cda65a;
	background: #171717;
	box-shadow: 0 14px 34px rgba(20, 20, 20, .16);
	color: #fff;
	transform: translateY(-2px);
	outline: 0;
}

.sbs-brand-products-load-more__button:focus-visible {
	box-shadow: 0 0 0 4px rgba(205, 166, 90, .2), 0 14px 34px rgba(20, 20, 20, .16);
}

.sbs-brand-products-load-more__button:disabled {
	cursor: wait;
	opacity: .72;
	transform: none;
}

.sbs-brand-products-load-more__button.has-error {
	border-color: #b42318;
	box-shadow: 0 0 0 4px rgba(180, 35, 24, .12);
}

.sbs-brand-products-load-more__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	padding: 0 7px;
	border-radius: 999px;
	background: rgba(205, 166, 90, .16);
	color: #8b682a;
	font-size: 11px;
	font-weight: 800;
	transition: background-color .25s ease, color .25s ease;
}

.sbs-brand-products-load-more__button:hover .sbs-brand-products-load-more__count,
.sbs-brand-products-load-more__button:focus-visible .sbs-brand-products-load-more__count {
	background: #cda65a;
	color: #171717;
}

.sbs-brand-products-load-more__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 17px;
	line-height: 1;
	transition: transform .25s ease;
}

.sbs-brand-products-load-more__button:hover .sbs-brand-products-load-more__icon,
.sbs-brand-products-load-more__button:focus-visible .sbs-brand-products-load-more__icon {
	transform: translateY(2px);
}

.sbs-brand-products-load-more__spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(23, 23, 23, .18);
	border-top-color: #cda65a;
	border-radius: 50%;
	animation: sbs-brand-products-spin .75s linear infinite;
}

.sbs-brand-products-load-more__button.is-loading .sbs-brand-products-load-more__icon,
.sbs-brand-products-load-more__button.is-loading .sbs-brand-products-load-more__count {
	display: none;
}

.sbs-brand-products-load-more__button.is-loading .sbs-brand-products-load-more__spinner {
	display: inline-block;
}

@keyframes sbs-brand-products-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
	.sbs-brand-products-load-more__button {
		width: 100%;
		min-width: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sbs-brand-products-load-more__button,
	.sbs-brand-products-load-more__icon {
		transition: none;
	}

	.sbs-brand-products-load-more__spinner {
		animation-duration: 1.5s;
	}
}

/* v2.1.47: Fluid technology filters without an outer filter-bar border or padding. */
.sbs-brand-product-filterbar {
	position: relative;
	width: 100%;
	margin-bottom: clamp(28px, 4vw, 52px);
	padding: 0;
	border: 0;
}

.sbs-brand-product-filterbar .sbs-brand-controls-tabs--technology {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
}

.sbs-brand-controls-tabs__primary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: flex-start;
	column-gap: clamp(20px, 2.5vw, 34px);
	row-gap: 18px;
	width: 100%;
	min-width: 0;
	overflow: visible;
}

.sbs-brand-controls-tabs__primary > .sbs-brand-controls-tab {
	flex: 0 0 auto;
	white-space: nowrap;
}

.sbs-brand-controls-tabs__more {
	position: relative;
	flex: 0 0 auto;
}

.sbs-brand-controls-tabs__more[hidden],
.sbs-brand-controls-tabs__dropdown[hidden] {
	display: none;
}

.sbs-brand-controls-tabs__more-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 0;
	padding: 0 0 12px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #777;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 400;
	line-height: inherit;
	letter-spacing: .04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .2s ease;
}

.sbs-brand-controls-tabs__more-link svg {
	width: 9px;
	height: 6px;
	transition: transform .2s ease;
}

.sbs-brand-controls-tabs.is-more-open .sbs-brand-controls-tabs__more-link svg {
	transform: rotate(180deg);
}

.sbs-brand-controls-tabs__more-link:hover,
.sbs-brand-controls-tabs__more-link:focus-visible,
.sbs-brand-controls-tabs__more.has-active-tab .sbs-brand-controls-tabs__more-link {
	color: #111;
	outline: 0;
}

.sbs-brand-controls-tabs__more-link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #cda65a;
	opacity: 0;
	transform: scaleX(.45);
	transform-origin: left center;
	transition: opacity .2s ease, transform .2s ease;
}

.sbs-brand-controls-tabs.is-more-open .sbs-brand-controls-tabs__more-link::after,
.sbs-brand-controls-tabs__more.has-active-tab .sbs-brand-controls-tabs__more-link::after {
	opacity: 1;
	transform: scaleX(1);
}

.sbs-brand-controls-tabs__more-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: auto;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #c08f34;
	font-size: 10px;
	font-weight: 700;
}

.sbs-brand-controls-tabs__dropdown {
	position: absolute;
	z-index: 80;
	top: calc(100% + 10px);
	right: 0;
	display: grid;
	gap: 3px;
	width: max-content;
	min-width: 230px;
	max-width: min(340px, 84vw);
	max-height: 330px;
	padding: 9px;
	overflow-y: auto;
	border: 1px solid rgba(17, 17, 17, .11);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(18, 18, 18, .14);
}

.sbs-brand-controls-tabs__dropdown .sbs-brand-controls-tab {
	display: block;
	width: 100%;
	padding: 11px 12px;
	border-radius: 9px;
	white-space: normal;
	text-align: left;
}

.sbs-brand-controls-tabs__dropdown .sbs-brand-controls-tab::after {
	display: none;
}

.sbs-brand-controls-tabs__dropdown .sbs-brand-controls-tab:hover,
.sbs-brand-controls-tabs__dropdown .sbs-brand-controls-tab:focus-visible,
.sbs-brand-controls-tabs__dropdown .sbs-brand-controls-tab.is-active {
	background: rgba(205, 166, 90, .12);
	color: #171717;
	outline: 0;
}

@media (max-width: 767px) {
	.sbs-brand-product-filterbar {
		padding: 0;
	}

	.sbs-brand-controls-tabs__primary {
		column-gap: 18px;
		row-gap: 14px;
	}

	.sbs-brand-controls-tabs__dropdown {
		right: 0;
		left: auto;
		max-width: min(320px, calc(100vw - 32px));
	}
}

@media (prefers-reduced-motion: reduce) {
	.sbs-brand-controls-tabs__more-link,
	.sbs-brand-controls-tabs__more-link svg {
		transition: none;
	}
}
