.tonny-wcsc,
.tonny-wcsc * {
	box-sizing: border-box;
}

.tonny-wcsc {
	position: relative;
	width: 100%;
	color: var(--twcsc-text, #17212b);
	font-family: inherit;
}

body.tonny-wcsc-lock {
	overflow: hidden;
}

.tonny-wcsc__layout {
	display: block;
	min-width: 0;
}

.tonny-wcsc--layout-sidebar .tonny-wcsc__layout {
	display: grid;
	grid-template-columns: var(--twcsc-sidebar-width, 300px) minmax(0, 1fr);
	align-items: start;
	gap: 30px;
}

.tonny-wcsc__catalog-main {
	min-width: 0;
}

.tonny-wcsc__topbar {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 26px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(18, 28, 45, 0.13);
}

.tonny-wcsc__topbar-spacer {
	flex: 1 1 auto;
}

.tonny-wcsc__filter-toggle,
.tonny-wcsc__panel-close,
.tonny-wcsc__clear,
.tonny-wcsc__apply {
	font: inherit;
	cursor: pointer;
}

.tonny-wcsc__filter-toggle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	margin: 0;
	padding: 0 15px;
	border: 1px solid rgba(18, 28, 45, 0.2);
	border-radius: 8px;
	background: #fff;
	color: var(--twcsc-text);
	font-size: 14px;
	font-weight: 750;
}

.tonny-wcsc--layout-sidebar .tonny-wcsc__filter-toggle {
	display: none;
}

.tonny-wcsc__top-field {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--twcsc-muted);
	font-size: 13px;
	font-weight: 650;
}

.tonny-wcsc__top-field select,
.tonny-wcsc__filter-form input[type="search"],
.tonny-wcsc__filter-form input[type="number"],
.tonny-wcsc__filter-form select {
	height: 42px;
	margin: 0;
	padding: 0 35px 0 12px;
	border: 1px solid rgba(18, 28, 45, 0.18);
	border-radius: 8px;
	background: #fff;
	color: var(--twcsc-text);
	font: inherit;
}

.tonny-wcsc__filter-panel {
	z-index: 99999;
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: #fff;
	color: var(--twcsc-text);
}

.tonny-wcsc--layout-sidebar .tonny-wcsc__filter-panel {
	position: sticky;
	top: var(--twcsc-sidebar-top, 90px);
	max-height: calc(100vh - var(--twcsc-sidebar-top, 90px) - 20px);
	border: 1px solid rgba(18, 28, 45, 0.12);
	border-radius: 12px;
	box-shadow: 0 6px 22px rgba(18, 28, 45, 0.06);
}

.tonny-wcsc--layout-drawer .tonny-wcsc__filter-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: min(390px, 92vw);
	transform: translateX(-105%);
	box-shadow: 14px 0 38px rgba(0, 0, 0, 0.22);
	transition: transform 0.28s ease;
}

.tonny-wcsc--layout-drawer.is-filter-open .tonny-wcsc__filter-panel {
	transform: translateX(0);
}

.tonny-wcsc__overlay {
	position: fixed;
	z-index: 99998;
	inset: 0;
	display: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(4, 10, 18, 0.48);
	cursor: pointer;
}

.tonny-wcsc--layout-drawer.is-filter-open .tonny-wcsc__overlay {
	display: block;
}

.tonny-wcsc__panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 20px 17px;
	border-bottom: 1px solid rgba(18, 28, 45, 0.13);
}

.tonny-wcsc__panel-header strong,
.tonny-wcsc__panel-header span {
	display: block;
}

.tonny-wcsc__panel-header strong {
	font-size: 19px;
	line-height: 1.2;
}

.tonny-wcsc__panel-header span {
	margin-top: 4px;
	color: var(--twcsc-muted);
	font-size: 12px;
}

.tonny-wcsc__panel-close {
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: currentColor;
	font-size: 30px;
	line-height: 1;
}

.tonny-wcsc--layout-sidebar .tonny-wcsc__panel-close {
	display: none;
}

.tonny-wcsc__filter-form {
	display: flex;
	min-height: 0;
	flex: 1 1 auto;
	flex-direction: column;
}

.tonny-wcsc__panel-scroll {
	overflow: auto;
	padding: 0 20px;
	overscroll-behavior: contain;
}

.tonny-wcsc__filter-search {
	padding: 18px 0;
}

.tonny-wcsc__filter-search input {
	width: 100%;
}

.tonny-wcsc__filter-group {
	margin: 0;
	border-top: 1px solid rgba(18, 28, 45, 0.12);
}

.tonny-wcsc__filter-group summary {
	position: relative;
	padding: 17px 30px 17px 0;
	list-style: none;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.tonny-wcsc__filter-group summary::-webkit-details-marker {
	display: none;
}

.tonny-wcsc__filter-group summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 3px;
	transform: translateY(-50%);
	font-size: 21px;
	font-weight: 400;
}

.tonny-wcsc__filter-group[open] summary::after {
	content: "−";
}

.tonny-wcsc__filter-content {
	display: grid;
	gap: 10px;
	padding: 0 0 18px;
}

.tonny-wcsc__check-list {
	max-height: 245px;
	overflow: auto;
	padding-right: 5px;
}

.tonny-wcsc__check {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: var(--twcsc-text);
	font-size: 14px;
	cursor: pointer;
}

.tonny-wcsc__check input {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var(--twcsc-accent);
}

.tonny-wcsc__check small {
	color: var(--twcsc-muted);
	font-size: 11px;
}

.tonny-wcsc__price-fields {
	grid-template-columns: 1fr 1fr;
}

.tonny-wcsc__price-fields label {
	display: grid;
	gap: 6px;
	color: var(--twcsc-muted);
	font-size: 12px;
}

.tonny-wcsc__price-fields input {
	width: 100%;
	min-width: 0;
	padding-right: 8px;
}

.tonny-wcsc__filter-content select {
	width: 100%;
}

.tonny-wcsc__panel-actions {
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 10px;
	margin-top: auto;
	padding: 15px 20px;
	border-top: 1px solid rgba(18, 28, 45, 0.13);
	background: inherit;
}

.tonny-wcsc__clear,
.tonny-wcsc__apply {
	min-height: 44px;
	margin: 0;
	padding: 0 14px;
	border-radius: 8px;
	font-weight: 800;
}

.tonny-wcsc__clear {
	border: 1px solid rgba(18, 28, 45, 0.2);
	background: transparent;
	color: var(--twcsc-text);
}

.tonny-wcsc__apply {
	border: 1px solid var(--twcsc-accent);
	background: var(--twcsc-accent);
	color: var(--twcsc-button-text);
}

.tonny-wcsc__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 28px;
	padding: 14px;
	border: 1px solid rgba(18, 28, 45, 0.11);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(18, 28, 45, 0.05);
}

.tonny-wcsc__filters,
.tonny-wcsc__sort-area {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.tonny-wcsc__sort-area {
	justify-content: flex-end;
}

.tonny-wcsc__field {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--twcsc-muted, #64717d);
}

.tonny-wcsc__field input,
.tonny-wcsc__field select {
	width: auto;
	min-width: 145px;
	height: 42px;
	margin: 0;
	padding: 0 38px 0 13px;
	border: 1px solid rgba(18, 28, 45, 0.16);
	border-radius: 9px;
	background-color: #fff;
	color: var(--twcsc-text, #17212b);
	font: inherit;
	line-height: 1;
}

.tonny-wcsc__field--search input {
	width: min(230px, 100%);
	padding-right: 13px;
}

.tonny-wcsc__sale-filter {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	margin: 0;
	padding: 0 12px;
	border: 1px solid rgba(18, 28, 45, 0.16);
	border-radius: 9px;
	background: #fff;
	color: var(--twcsc-text, #17212b);
	font-size: 14px;
	font-weight: 650;
	cursor: pointer;
}

.tonny-wcsc__sale-filter input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--twcsc-accent, #111);
}

.tonny-wcsc__reset {
	min-height: 42px;
	margin: 0;
	padding: 0 12px;
	border: 0;
	background: transparent;
	color: var(--twcsc-muted, #64717d);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.tonny-wcsc__count {
	white-space: nowrap;
	color: var(--twcsc-muted, #64717d);
	font-size: 14px;
}

.tonny-wcsc__status {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.tonny-wcsc__results {
	position: relative;
	min-height: 120px;
	transition: opacity 0.18s ease;
}

.tonny-wcsc.is-loading .tonny-wcsc__results {
	opacity: 0.36;
	pointer-events: none;
}

.tonny-wcsc.is-loading::after {
	content: "";
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 50%;
	width: 38px;
	height: 38px;
	margin: -19px 0 0 -19px;
	border: 4px solid rgba(18, 28, 45, 0.16);
	border-top-color: var(--twcsc-accent, #111);
	border-radius: 50%;
	animation: tonny-wcsc-spin 0.75s linear infinite;
}

@keyframes tonny-wcsc-spin {
	to {
		transform: rotate(360deg);
	}
}

.tonny-wcsc__result-meta {
	display: none;
}

.tonny-wcsc__grid {
	display: grid;
	grid-template-columns: repeat(var(--twcsc-cols, 4), minmax(0, 1fr));
	align-items: stretch;
	gap: var(--twcsc-gap, 24px);
}

.tonny-wcsc__card {
	position: relative;
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(18, 28, 45, 0.1);
	border-radius: var(--twcsc-card-radius, 12px);
	background: var(--twcsc-card-bg, #fff);
	box-shadow: 0 7px 22px rgba(18, 28, 45, 0.07);
	transform: translateY(0);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tonny-wcsc__card:hover {
	border-color: rgba(18, 28, 45, 0.18);
	box-shadow: 0 14px 32px rgba(18, 28, 45, 0.13);
	transform: translateY(-4px);
}

.tonny-wcsc.tonny-wcsc--frame-hover .tonny-wcsc__card {
	border-color: transparent !important;
	box-shadow: none !important;
}

.tonny-wcsc.tonny-wcsc--frame-hover .tonny-wcsc__card:hover {
	border-color: rgba(18, 28, 45, 0.18) !important;
	box-shadow: 0 14px 32px rgba(18, 28, 45, 0.13) !important;
}

.tonny-wcsc.tonny-wcsc--frame-none .tonny-wcsc__card,
.tonny-wcsc.tonny-wcsc--frame-none .tonny-wcsc__card:hover {
	border-color: transparent !important;
	box-shadow: none !important;
}

.tonny-wcsc__media {
	position: relative;
	margin: 12px 12px 0;
	aspect-ratio: var(--twcsc-image-ratio, 1 / 1);
	overflow: hidden;
	border-radius: var(--twcsc-image-radius, 8px);
	background: var(--twcsc-image-bg, #f7f7f7);
}

.tonny-wcsc__image-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.tonny-wcsc__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 7%;
	object-fit: var(--twcsc-image-fit, contain);
	object-position: center;
	transition: opacity 0.38s ease, transform 0.48s ease;
}

.tonny-wcsc__image--primary {
	z-index: 1;
	opacity: 1;
}

.tonny-wcsc__image--hover {
	z-index: 2;
	opacity: 0;
	transform: scale(1.025);
}

@media (hover: hover) {
	.tonny-wcsc__card.has-hover-image:hover .tonny-wcsc__image--primary {
		opacity: 0;
		transform: scale(0.985);
	}

	.tonny-wcsc__card.has-hover-image:hover .tonny-wcsc__image--hover {
		opacity: 1;
		transform: scale(1);
	}
}

.tonny-wcsc__badges {
	position: absolute;
	z-index: 4;
	top: 10px;
	left: 10px;
	display: flex;
	gap: 6px;
	pointer-events: none;
}

.tonny-wcsc__badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.17);
}

.tonny-wcsc__badge--sale {
	background: #d62828;
}

.tonny-wcsc__badge--featured {
	background: #1756b3;
}

.tonny-wcsc__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 18px;
}

.tonny-wcsc__category {
	margin: 0 0 7px;
	overflow: hidden;
	color: var(--twcsc-muted, #64717d);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-align: var(--twcsc-category-align, left);
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.tonny-wcsc__title {
	display: -webkit-box;
	min-height: calc(var(--twcsc-title-lines, 2) * 1.35em);
	margin: 0 0 10px;
	overflow: hidden;
	color: var(--twcsc-text, #17212b);
	font-size: 17px;
	font-weight: 750;
	line-height: 1.35;
	text-align: var(--twcsc-title-align, left);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--twcsc-title-lines, 2);
}

.tonny-wcsc__title a {
	color: inherit;
	text-decoration: none;
}

.tonny-wcsc__title a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tonny-wcsc__rating {
	display: flex;
	min-height: 18px;
	align-items: center;
	justify-content: var(--twcsc-rating-align, center);
	margin: 0 0 9px;
	font-size: 13px;
	text-align: center;
}

.tonny-wcsc__rating .star-rating {
	float: none;
	margin: 0;
}

.tonny-wcsc__rating-placeholder {
	display: block;
	min-height: 18px;
}

.tonny-wcsc__price {
	min-height: 1.45em;
	margin: 0 0 16px;
	color: var(--twcsc-text, #17212b);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	text-align: var(--twcsc-price-align, center);
}

.tonny-wcsc__price del {
	margin-right: 5px;
	color: var(--twcsc-muted, #64717d);
	font-size: 0.85em;
	font-weight: 500;
	opacity: 0.8;
}

.tonny-wcsc__price ins {
	text-decoration: none;
}

.tonny-wcsc__button-wrap {
	margin-top: auto;
}

.tonny-wcsc__button,
.tonny-wcsc a.tonny-wcsc__button,
.tonny-wcsc span.tonny-wcsc__button {
	display: flex;
	width: 100%;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 11px 16px;
	border: 2px solid var(--twcsc-accent, #111);
	border-radius: var(--twcsc-button-radius, 999px);
	background: var(--twcsc-accent, #111);
	color: var(--twcsc-button-text, #fff);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.tonny-wcsc a.tonny-wcsc__button:hover,
.tonny-wcsc a.tonny-wcsc__button:focus-visible {
	color: var(--twcsc-button-text, #fff);
	filter: brightness(1.18);
	transform: translateY(-1px);
	outline: 2px solid var(--twcsc-accent, #111);
	outline-offset: 2px;
}

.tonny-wcsc__button.is-disabled {
	border-color: #1f1f1f;
	background: #1f1f1f;
	cursor: not-allowed;
	opacity: 0.78;
}

.tonny-wcsc__button.added::after {
	margin-left: 7px;
	font-family: WooCommerce;
	content: "\e017";
}

.tonny-wcsc__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 34px;
}

.tonny-wcsc__pagination button {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 10px;
	border: 1px solid rgba(18, 28, 45, 0.16);
	border-radius: 8px;
	background: #fff;
	color: var(--twcsc-text, #17212b);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.tonny-wcsc__pagination button:hover,
.tonny-wcsc__pagination button.is-current {
	border-color: var(--twcsc-accent, #111);
	background: var(--twcsc-accent, #111);
	color: var(--twcsc-button-text, #fff);
}

.tonny-wcsc__pagination button:disabled {
	cursor: not-allowed;
	opacity: 0.35;
}

.tonny-wcsc__empty {
	display: flex;
	min-height: 220px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	border: 1px dashed rgba(18, 28, 45, 0.2);
	border-radius: 12px;
	color: var(--twcsc-muted, #64717d);
	text-align: center;
}

.tonny-wcsc__empty strong {
	color: var(--twcsc-text, #17212b);
	font-size: 18px;
}

/*
 * Black/dark page compatibility.
 * The important custom properties intentionally override the light palette
 * stored inline by existing Elementor widgets when dark mode is selected.
 */
.tonny-wcsc.tonny-wcsc--theme-dark {
	--twcsc-card-bg: #101216 !important;
	--twcsc-image-bg: #191c22 !important;
	--twcsc-text: #f7f8fa !important;
	--twcsc-muted: #aeb7c2 !important;
	--twcsc-accent: #ffffff !important;
	--twcsc-button-text: #0b0c0f !important;
	color: var(--twcsc-text);
	color-scheme: dark;
}

.tonny-wcsc--theme-dark .tonny-wcsc__toolbar {
	border-color: rgba(255, 255, 255, 0.14);
	background: #101216;
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.tonny-wcsc--theme-dark .tonny-wcsc__topbar {
	border-color: rgba(255, 255, 255, 0.15);
}

.tonny-wcsc--theme-dark .tonny-wcsc__filter-toggle,
.tonny-wcsc--theme-dark .tonny-wcsc__filter-panel,
.tonny-wcsc--theme-dark .tonny-wcsc__top-field select,
.tonny-wcsc--theme-dark .tonny-wcsc__filter-form input,
.tonny-wcsc--theme-dark .tonny-wcsc__filter-form select {
	border-color: rgba(255, 255, 255, 0.17);
	background-color: #101216;
	color: var(--twcsc-text);
}

.tonny-wcsc--theme-dark .tonny-wcsc__panel-header,
.tonny-wcsc--theme-dark .tonny-wcsc__filter-group,
.tonny-wcsc--theme-dark .tonny-wcsc__panel-actions {
	border-color: rgba(255, 255, 255, 0.15);
}

.tonny-wcsc--theme-dark .tonny-wcsc__panel-actions {
	background: #101216;
}

.tonny-wcsc--theme-dark .tonny-wcsc__clear {
	border-color: rgba(255, 255, 255, 0.24);
	color: var(--twcsc-text);
}

.tonny-wcsc--theme-dark .tonny-wcsc__field,
.tonny-wcsc--theme-dark .tonny-wcsc__count,
.tonny-wcsc--theme-dark .tonny-wcsc__reset {
	color: var(--twcsc-muted);
}

.tonny-wcsc--theme-dark .tonny-wcsc__field input,
.tonny-wcsc--theme-dark .tonny-wcsc__field select,
.tonny-wcsc--theme-dark .tonny-wcsc__sale-filter {
	border-color: rgba(255, 255, 255, 0.17);
	background-color: #191c22;
	color: var(--twcsc-text);
}

.tonny-wcsc--theme-dark .tonny-wcsc__field input::placeholder {
	color: #8f99a5;
	opacity: 1;
}

.tonny-wcsc--theme-dark .tonny-wcsc__sale-filter input {
	accent-color: #ffffff;
}

.tonny-wcsc--theme-dark .tonny-wcsc__card {
	border-color: rgba(255, 255, 255, 0.14);
	background: var(--twcsc-card-bg);
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.tonny-wcsc--theme-dark .tonny-wcsc__card:hover {
	border-color: rgba(255, 255, 255, 0.28);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.58);
}

.tonny-wcsc--theme-dark.tonny-wcsc--frame-hover .tonny-wcsc__card:hover {
	border-color: rgba(255, 255, 255, 0.28) !important;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.58) !important;
}

.tonny-wcsc--theme-dark .tonny-wcsc__media {
	background: var(--twcsc-image-bg);
}

.tonny-wcsc--theme-dark .tonny-wcsc__title,
.tonny-wcsc--theme-dark .tonny-wcsc__title a,
.tonny-wcsc--theme-dark .tonny-wcsc__price {
	color: var(--twcsc-text);
}

.tonny-wcsc--theme-dark .tonny-wcsc__category,
.tonny-wcsc--theme-dark .tonny-wcsc__price del {
	color: var(--twcsc-muted);
}

.tonny-wcsc--theme-dark .star-rating::before {
	color: #59616c;
}

.tonny-wcsc--theme-dark .star-rating span::before {
	color: #ffb51b;
}

.tonny-wcsc--theme-dark .tonny-wcsc__badge {
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.4);
}

.tonny-wcsc--theme-dark .tonny-wcsc__button.is-disabled {
	border-color: #3a3f47;
	background: #3a3f47;
	color: #eef1f5;
}

.tonny-wcsc--theme-dark .tonny-wcsc__pagination button {
	border-color: rgba(255, 255, 255, 0.17);
	background: #15181d;
	color: var(--twcsc-text);
}

.tonny-wcsc--theme-dark .tonny-wcsc__pagination button:hover,
.tonny-wcsc--theme-dark .tonny-wcsc__pagination button.is-current {
	border-color: #ffffff;
	background: #ffffff;
	color: #0b0c0f;
}

.tonny-wcsc--theme-dark .tonny-wcsc__empty {
	border-color: rgba(255, 255, 255, 0.22);
	color: var(--twcsc-muted);
}

.tonny-wcsc--theme-dark .tonny-wcsc__empty strong {
	color: var(--twcsc-text);
}

.tonny-wcsc--theme-dark.is-loading::after {
	border-color: rgba(255, 255, 255, 0.18);
	border-top-color: #ffffff;
}

@media (max-width: 1024px) {
	.tonny-wcsc--layout-sidebar .tonny-wcsc__layout {
		display: block;
	}

	.tonny-wcsc--layout-sidebar .tonny-wcsc__filter-toggle {
		display: inline-flex;
	}

	.tonny-wcsc--layout-sidebar .tonny-wcsc__filter-panel {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(390px, 92vw);
		max-height: none;
		border-radius: 0;
		transform: translateX(-105%);
		box-shadow: 14px 0 38px rgba(0, 0, 0, 0.22);
		transition: transform 0.28s ease;
	}

	.tonny-wcsc--layout-sidebar.is-filter-open .tonny-wcsc__filter-panel {
		transform: translateX(0);
	}

	.tonny-wcsc--layout-sidebar.is-filter-open .tonny-wcsc__overlay {
		display: block;
	}

	.tonny-wcsc--layout-sidebar .tonny-wcsc__panel-close {
		display: block;
	}

	.tonny-wcsc__toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.tonny-wcsc__sort-area {
		justify-content: space-between;
	}

	.tonny-wcsc__grid {
		grid-template-columns: repeat(var(--twcsc-cols-tablet, 2), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.tonny-wcsc__topbar {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 9px 12px;
		margin-bottom: 18px;
	}

	.tonny-wcsc__topbar-spacer {
		display: none;
	}

	.tonny-wcsc__count {
		text-align: right;
	}

	.tonny-wcsc__top-field {
		align-items: stretch;
		flex-direction: column;
	}

	.tonny-wcsc__top-field:nth-last-child(1) {
		grid-column: 1 / -1;
	}

	.tonny-wcsc__top-field select {
		width: 100%;
	}

	.tonny-wcsc__toolbar {
		margin-bottom: 20px;
		padding: 12px;
	}

	.tonny-wcsc__filters,
	.tonny-wcsc__sort-area {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tonny-wcsc__field,
	.tonny-wcsc__field input,
	.tonny-wcsc__field select,
	.tonny-wcsc__sale-filter {
		width: 100%;
		min-width: 0;
	}

	.tonny-wcsc__field--search,
	.tonny-wcsc__count {
		grid-column: 1 / -1;
	}

	.tonny-wcsc__field--sort {
		align-items: stretch;
		grid-column: 1 / -1;
		flex-direction: column;
	}

	.tonny-wcsc__grid {
		grid-template-columns: repeat(var(--twcsc-cols-mobile, 1), minmax(0, 1fr));
		gap: min(var(--twcsc-gap, 24px), 16px);
	}

	.tonny-wcsc__body {
		padding: 14px;
	}
}

@media (max-width: 410px) {
	.tonny-wcsc__topbar {
		grid-template-columns: 1fr;
	}

	.tonny-wcsc__count,
	.tonny-wcsc__top-field,
	.tonny-wcsc__top-field:nth-last-child(1) {
		grid-column: auto;
		text-align: left;
	}

	.tonny-wcsc__filters {
		grid-template-columns: 1fr;
	}

	.tonny-wcsc__field--search,
	.tonny-wcsc__count {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tonny-wcsc__card,
	.tonny-wcsc__image,
	.tonny-wcsc__button,
	.tonny-wcsc__results {
		transition: none;
	}

	.tonny-wcsc.is-loading::after {
		animation-duration: 1.5s;
	}
}

/* ================================================================
 * Tonny Blocksy palette presets — v1.1.0
 * Every selector remains scoped to .tonny-wcsc to avoid collisions.
 * ================================================================ */
.tonny-wcsc {
	--twcsc-site-bg: #f8f7f3;
	--twcsc-border: #e2e0d9;
	--twcsc-border-strong: #d3d0c7;
	--twcsc-accent-hover: #d8ae2f;
	--twcsc-button-hover-text: #151515;
	--twcsc-star: #b98c14;
	--twcsc-empty-star: #d7d4cb;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light {
	--twcsc-card-bg: #ffffff !important;
	--twcsc-image-bg: #efeee8 !important;
	--twcsc-text: #151515 !important;
	--twcsc-muted: #77766f !important;
	--twcsc-accent: #1c1c1a !important;
	--twcsc-button-text: #ffffff !important;
	--twcsc-site-bg: #f8f7f3;
	--twcsc-border: #e2e0d9;
	--twcsc-border-strong: #cbc7bd;
	--twcsc-accent-hover: #d8ae2f;
	--twcsc-button-hover-text: #151515;
	--twcsc-star: #b98c14;
	--twcsc-empty-star: #d7d4cb;
	color: var(--twcsc-text);
	color-scheme: light;
}

.tonny-wcsc.tonny-wcsc--preset-charcoal {
	--twcsc-card-bg: #242421 !important;
	--twcsc-image-bg: #30302b !important;
	--twcsc-text: #f8f7f3 !important;
	--twcsc-muted: #c6c3ba !important;
	--twcsc-accent: #d8ae2f !important;
	--twcsc-button-text: #151515 !important;
	--twcsc-site-bg: #1c1c1a;
	--twcsc-border: #3a3a35;
	--twcsc-border-strong: #56564f;
	--twcsc-accent-hover: #f1c94d;
	--twcsc-button-hover-text: #151515;
	--twcsc-star: #d8ae2f;
	--twcsc-empty-star: #615f58;
	color: var(--twcsc-text);
	color-scheme: dark;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__topbar {
	border-color: var(--twcsc-border);
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-toggle,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__top-field select,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-form input[type="search"],
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-form input[type="number"],
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-form select,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-panel,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__sale-filter,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__pagination button {
	border-color: var(--twcsc-border);
	background: #ffffff;
	color: var(--twcsc-text);
	box-shadow: none;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-toggle:hover,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-toggle:focus-visible,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__top-field select:focus,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-form input:focus,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-form select:focus {
	border-color: #b98c14;
	outline: 2px solid rgba(185, 140, 20, 0.16);
	outline-offset: 1px;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__panel-header,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__filter-group,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__panel-actions {
	border-color: var(--twcsc-border);
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__panel-actions {
	background: #ffffff;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__clear {
	border-color: var(--twcsc-border-strong);
	background: #ffffff;
	color: var(--twcsc-text);
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__apply {
	border-color: #1c1c1a;
	background: #1c1c1a;
	color: #ffffff;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__apply:hover,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__apply:focus-visible {
	border-color: #d8ae2f;
	background: #d8ae2f;
	color: #151515;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__card {
	border-color: var(--twcsc-border);
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(28, 28, 26, 0.06);
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__card:hover {
	border-color: var(--twcsc-border-strong);
	box-shadow: 0 14px 32px rgba(28, 28, 26, 0.11);
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light.tonny-wcsc--frame-hover .tonny-wcsc__card:hover {
	border-color: var(--twcsc-border-strong) !important;
	box-shadow: 0 14px 32px rgba(28, 28, 26, 0.11) !important;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__media {
	background: #efeee8;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__category {
	color: #77766f;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__title,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__title a,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__price {
	color: #151515;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__title a:hover,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__title a:focus-visible {
	color: #b98c14;
	text-decoration: none;
}

/* Reliable stars that do not depend on Blocksy or WooCommerce theme CSS. */
.tonny-wcsc .tonny-wcsc__rating .star-rating {
	position: relative;
	display: inline-block;
	float: none;
	width: 6.2em;
	height: 1.2em;
	overflow: hidden;
	margin: 0;
	color: transparent;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-align: left;
}

.tonny-wcsc .tonny-wcsc__rating .star-rating::before,
.tonny-wcsc .tonny-wcsc__rating .star-rating span::before {
	content: "★★★★★";
	position: absolute;
	top: 0;
	left: 0;
	width: 6.2em;
	white-space: nowrap;
}

.tonny-wcsc .tonny-wcsc__rating .star-rating::before {
	color: var(--twcsc-empty-star);
}

.tonny-wcsc .tonny-wcsc__rating .star-rating span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	overflow: hidden;
	color: transparent;
}

.tonny-wcsc .tonny-wcsc__rating .star-rating span::before {
	color: var(--twcsc-star);
}

.tonny-wcsc .tonny-wcsc__rating-empty {
	display: inline-block;
	color: var(--twcsc-empty-star);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.12em;
}

.tonny-wcsc .tonny-wcsc__button,
.tonny-wcsc a.tonny-wcsc__button.button,
.tonny-wcsc span.tonny-wcsc__button {
	border-color: var(--twcsc-accent) !important;
	background: var(--twcsc-accent) !important;
	color: var(--twcsc-button-text) !important;
	box-shadow: none !important;
	text-transform: none;
}

.tonny-wcsc a.tonny-wcsc__button.button:hover,
.tonny-wcsc a.tonny-wcsc__button.button:focus-visible {
	border-color: var(--twcsc-accent-hover) !important;
	background: var(--twcsc-accent-hover) !important;
	color: var(--twcsc-button-hover-text) !important;
	filter: none;
	outline-color: var(--twcsc-accent-hover);
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__badge {
	background: #1c1c1a;
	color: #ffffff;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__badge--sale {
	background: #b98c14;
	color: #ffffff;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__badge--featured {
	background: #494946;
	color: #ffffff;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__pagination button:hover,
.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__pagination button.is-current {
	border-color: #1c1c1a;
	background: #1c1c1a;
	color: #ffffff;
}

.tonny-wcsc.tonny-wcsc--preset-blocksy-light .tonny-wcsc__empty {
	border-color: var(--twcsc-border-strong);
	background: #ffffff;
	color: #77766f;
}

.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__filter-toggle,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__top-field select,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__filter-form input,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__filter-form select,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__filter-panel,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__sale-filter,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__pagination button,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__panel-actions {
	border-color: var(--twcsc-border);
	background: #242421;
	color: var(--twcsc-text);
}

.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__card {
	border-color: var(--twcsc-border);
	background: var(--twcsc-card-bg);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__media {
	background: var(--twcsc-image-bg);
}

.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__title,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__title a,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__price,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__empty strong {
	color: var(--twcsc-text);
}

.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__category,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__count,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__reset,
.tonny-wcsc.tonny-wcsc--preset-charcoal .tonny-wcsc__empty {
	color: var(--twcsc-muted);
}

