.elementor-widget-tooto-product-archive {
	width: 100%;
}

.tooto-product-archive,
.tooto-product-filter {
	box-sizing: border-box;
}

.tooto-product-archive *,
.tooto-product-filter * {
	box-sizing: border-box;
}

.tooto-product-archive {
	--tooto-product-accent: #f33030;
	--tooto-product-text: #222;
	--tooto-product-muted: #767676;
	--tooto-product-image-bg: #f6f6f7;
	width: min(90%, 1760px);
	margin-inline: auto;
	padding-block: 80px;
	color: var(--tooto-product-text);
	font-family: Poppins, sans-serif;
}

.tooto-product-archive__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.tooto-product-archive__count {
	margin: 0;
	color: #000;
	font-family: "General Sans Variable", "General Sans", Poppins, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.tooto-product-archive__filter-trigger {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 28px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--tooto-product-accent);
	font: 600 16px/1.4 Poppins, sans-serif;
	text-transform: capitalize;
	cursor: pointer;
}

.tooto-product-archive__filter-trigger svg {
	display: block;
	width: 16px;
	height: 12px;
	max-width: none;
	flex: none;
	fill: currentColor;
}

.tooto-product-archive__filter-trigger:focus-visible,
.tooto-product-card a:focus-visible,
.tooto-product-card button:focus-visible,
.tooto-product-pagination__button:focus-visible,
.tooto-product-filter button:focus-visible,
.tooto-product-filter input:focus-visible + .tooto-product-filter__checkbox {
	outline: 2px solid var(--tooto-product-accent, #f33030);
	outline-offset: 3px;
}

.tooto-product-archive__status {
	min-height: 0;
	margin: 0;
	color: #b42318;
	font-size: 14px;
}

.tooto-product-archive__status:not(:empty) {
	margin-bottom: 24px;
}

.tooto-product-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	transition: opacity 180ms ease;
}

.tooto-product-archive.is-loading .tooto-product-archive__grid,
.tooto-product-archive.is-loading .tooto-product-pagination {
	opacity: 0.42;
	pointer-events: none;
}

.tooto-product-card {
	display: flex;
	min-width: 0;
	margin: 0;
	flex-direction: column;
	gap: 20px;
}

.tooto-product-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--tooto-product-image-bg);
}
.tooto-product-card__image:hover img{
    transform: scale(1.1);
}

.tooto-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: center;
    transition: transform 180ms ease-in-out;
}

.tooto-product-card__body {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	gap: 16px;
}

.tooto-product-card__intro {
	display: flex;
	min-height: 50px;
	flex-direction: column;
	gap: 6px;
}

.tooto-product-card__title {
	margin: 0;
	font: 500 16px/1.4 Poppins, sans-serif;
	text-transform: capitalize;
}

.tooto-product-card__title a,
.tooto-product-card__title a:hover {
	color: var(--tooto-product-text);
	text-decoration: none;
}

.tooto-product-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--tooto-product-muted);
	font: 400 14px/1.6 Poppins, sans-serif;
}

.tooto-product-card__meta {
	display: flex;
	margin: 0;
	padding: 12px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	flex-direction: column;
	gap: 0;
	font-size: 14px;
	line-height: 2;
}

.tooto-product-card__meta > div {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	gap: 8px;
}

.tooto-product-card__meta dt,
.tooto-product-card__meta dd {
	margin: 0;
}

.tooto-product-card__meta dt {
	color: var(--tooto-product-muted);
	font-weight: 500;
}

.tooto-product-card__meta dd {
	min-width: 0;
	overflow-wrap: anywhere;
	color: #000;
	font-weight: 400;
}

.tooto-product-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 48px;
}

.tooto-product-card__explore,
.tooto-product-card__add {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	margin: 0;
	padding: 13px 12px;
	border: 0;
	background: transparent;
	font: 500 16px/1.4 Poppins, sans-serif;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.tooto-product-card__explore,
.tooto-product-card__explore:hover {
	color: #959595;
}

.tooto-product-card__add {
	border-left: 1px solid #eee;
	color: #959595;
}

.tooto-product-card__add:hover,
.tooto-product-card__add.is-added {
	background: #fafafa;
	color: var(--tooto-product-accent);
	font-weight: 600;
}

.tooto-product-card__add[aria-disabled="true"] {
	cursor: default;
}

.tooto-product-archive__empty {
	padding: 72px 24px;
	color: var(--tooto-product-muted);
	font-size: 16px;
	text-align: center;
}

.tooto-product-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 32px;
	margin-top: 56px;
	transition: opacity 180ms ease;
}

.tooto-product-pagination:empty {
	display: none;
}

.tooto-product-pagination__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #6f6f6f;
	font: 400 14px/1 Poppins, sans-serif;
	cursor: pointer;
}

.tooto-product-pagination__button.is-current {
	background: var(--tooto-product-accent);
	color: #fff;
}

.tooto-product-pagination__button:disabled {
	opacity: 0.28;
	cursor: default;
}

.tooto-product-pagination__ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	color: #6f6f6f;
}

.tooto-product-filter {
	position: fixed;
	z-index: 100000;
	inset: 0;
	width: 100vw;
	max-width: none;
	height: 100dvh;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	/* A hidden-overflow dialog scrolls to its initially offscreen autofocus target.
	 * Clip without a scroll container so native focus cannot counteract the slide. */
	overflow: clip;
}

.tooto-product-filter:not([open]) {
	display: none;
}

.tooto-product-filter::backdrop {
	background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(10px);
	opacity: 0;
	transition: opacity 320ms ease;
}

.tooto-product-filter[data-tooto-state="open"]::backdrop {
	opacity: 1;
}

.tooto-product-filter__panel {
	width: min(472px, 100%);
	height: 100%;
	margin-left: auto;
	padding: 24px 24px 48px 40px;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: #fff;
	transform: translateX(100%);
	transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tooto-product-filter[data-tooto-state="open"] .tooto-product-filter__panel {
	transform: none;
	transition-duration: 420ms;
	transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.tooto-product-filter__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.tooto-product-filter__header h2 {
	margin: 0;
	color: #222;
	font-family: "General Sans Variable", "General Sans", Poppins, sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

.tooto-product-filter__close {
	display: grid;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	place-items: center;
	cursor: pointer;
}

.tooto-product-filter__close img {
	display: block;
	width: 28px;
	height: 28px;
	max-width: none;
}

.tooto-product-filter__form {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.tooto-product-filter__group {
	display: flex;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	flex-direction: column;
	gap: 16px;
}

.tooto-product-filter__group legend {
	width: 100%;
	margin: 0 0 16px;
	padding: 0 0 16px;
	border-bottom: 1px solid rgba(243, 48, 48, 0.2);
	color: #222;
	font: 500 16px/1.4 Poppins, sans-serif;
	text-transform: capitalize;
}

.tooto-product-filter__options {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tooto-product-filter__option {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
    margin-bottom: 0;
	min-height: 22px;
	color: #4f4f4f;
	font: 400 14px/1.4 Poppins, sans-serif;
	cursor: pointer;
}

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

.tooto-product-filter__checkbox {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
	border: 1px solid #4f4f4f;
	flex: 0 0 14px;
}

.tooto-product-filter__checkbox img {
	position: absolute;
	inset: -1px;
	display: none;
	width: 14px;
	height: 14px;
	max-width: none;
}

.tooto-product-filter__option input:checked ~ span:last-child {
	color: var(--tooto-product-accent, #f33030);
}

.tooto-product-filter__option input:checked + .tooto-product-filter__checkbox {
	border-color: var(--tooto-product-accent, #f33030);
}

.tooto-product-filter__option input:checked + .tooto-product-filter__checkbox img {
	display: block;
}

.tooto-product-archive__editor-warning {
	padding: 16px;
	border: 1px solid #d63638;
	background: #fff8e5;
	color: #1d2327;
	font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.tooto-product-filter-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.tooto-product-archive {
		padding-block: 56px;
	}

	.tooto-product-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.tooto-product-archive {
		padding-block: 40px;
	}

	.tooto-product-archive__toolbar {
		margin-bottom: 32px;
	}

	.tooto-product-archive__count,
	.tooto-product-archive__filter-trigger {
		font-size: 13px;
	}

	.tooto-product-archive__filter-trigger {
		gap: 6px;
	}

	.tooto-product-archive__filter-trigger svg {
		width: 13px;
		height: 9px;
	}

	.tooto-product-archive__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.tooto-product-card {
		gap: 16px;
	}

	.tooto-product-card__body {
		gap: 12px;
	}

	.tooto-product-card__intro {
		min-height: 0;
		gap: 4px;
	}

	.tooto-product-card__title {
		font-size: 13px;
	}

	.tooto-product-card__excerpt {
		font-size: 12px;
	}

	.tooto-product-card__meta {
		padding: 8px 0;
		font-size: 12px;
	}

	.tooto-product-card__actions {
		min-height: 38px;
	}

	.tooto-product-card__explore,
	.tooto-product-card__add {
		padding: 8px 6px;
		font-size: 13px;
	}

	.tooto-product-pagination {
		gap: 8px;
		margin-top: 32px;
	}

	.tooto-product-filter__panel {
		width: 100%;
		padding: 132px 28px 64px;
	}

	.tooto-product-filter__header {
		margin-bottom: 24px;
	}

	.tooto-product-filter__header h2 {
		font-size: 16px;
	}

	.tooto-product-filter__close {
		position: fixed;
		top: 28px;
		left: 20px;
		width: 28px;
		height: 28px;
	}

	.tooto-product-filter__form {
		gap: 20px;
	}

	.tooto-product-filter__group {
		gap: 20px;
	}

	.tooto-product-filter__group legend {
		padding-bottom: 20px;
		font-size: 13px;
	}

	.tooto-product-filter__options {
		gap: 16px;
	}

	.tooto-product-filter__option {
		font-size: 12px;
	}

	.tooto-product-filter__checkbox {
		width: 12px;
		height: 12px;
		flex-basis: 12px;
	}

	.tooto-product-filter__checkbox img {
		width: 12px;
		height: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tooto-product-archive__grid,
	.tooto-product-pagination,
	.tooto-product-filter::backdrop,
	.tooto-product-filter__panel {
		transition: none;
		scroll-behavior: auto;
	}
}
