.wccle-category-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
	padding: 10px;
	width: 100%;
}

.wccle-category-slider {
	--wccle-category-gap: 10px;
	--wccle-category-slides: 7;
	display: block;
	position: relative;
	width: 100%;
}

.wccle-category-slider-viewport {
	min-width: 0;
	overflow: hidden;
	width: 100%;
}

.wccle-category-slider .wccle-category-track {
	display: flex;
	gap: var(--wccle-category-gap);
	grid-template-columns: none;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	width: 100%;
}

.wccle-category-slider .wccle-category-track::-webkit-scrollbar {
	display: none;
}

.wccle-category-slider .wccle-category-card {
	flex: 0 0 calc((100% - (var(--wccle-category-gap) * (var(--wccle-category-slides) - 1))) / var(--wccle-category-slides));
	scroll-snap-align: start;
}

.wccle-category-slider-button {
	align-items: center;
	background: #ffffff;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
	color: #0b3b75;
	cursor: pointer;
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
	width: 42px;
	z-index: 2;
}

.wccle-category-slider-button--prev {
	left: 8px;
}

.wccle-category-slider-button--next {
	right: 8px;
}

.wccle-category-slider-button svg {
	display: block;
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.wccle-category-slider-button:hover,
.wccle-category-slider-button:focus {
	transform: translateY(-50%) scale(1.04);
}

.wccle-category-slider-button.is-disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

.wccle-category-card {
	align-items: center;
	background-color: #f7f9fc;
	border-radius: 6px;
	color: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 120px;
	overflow: hidden;
	padding: 12px 10px 10px;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.wccle-category-card:hover,
.wccle-category-card:focus {
	color: inherit;
	text-decoration: none;
	transform: translateY(-2px);
}

.wccle-category-card:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.wccle-category-image {
	display: block;
	height: 76px;
	margin-bottom: 8px;
	width: 76px;
}

.wccle-category-image img {
	display: block;
	height: 100%;
	max-width: none;
	object-fit: contain;
	width: 100%;
}

.wccle-category-title-row {
	align-items: center;
	display: flex;
	justify-content: center;
	max-width: 100%;
	min-width: 0;
}

.wccle-category-title {
	color: #17233d;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
	transition: color 180ms ease;
}

.wccle-category-arrow {
	align-items: center;
	color: #2563eb;
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	line-height: 1;
	margin-left: 6px;
	transition: transform 180ms ease;
}

.wccle-category-arrow svg {
	display: block;
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.wccle-category-card:hover .wccle-category-arrow,
.wccle-category-card:focus .wccle-category-arrow {
	transform: translateX(2px);
}

.wccle-empty {
	background: #f7f9fc;
	border: 1px dashed #cbd5e1;
	border-radius: 6px;
	color: #475569;
	padding: 14px;
	text-align: center;
}

.wccle-cart-actions {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.wccle-cart-actions__top {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.wccle-cart-actions__variations {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.wccle-cart-actions__variation-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
}

.wccle-cart-actions__variation-label {
	color: #667085;
	flex: 0 0 110px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.wccle-cart-actions__variation-select {
	flex: 1 1 220px;
	min-width: 0;
}

.wccle-cart-actions__variation-select select {
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 0;
	color: #111827;
	min-height: 44px;
	padding: 8px 12px;
	width: 100%;
}

.wccle-cart-actions .reset_variations {
	align-self: flex-start;
	color: #667085;
	display: none;
	font-size: 13px;
	line-height: 1.2;
	text-decoration: underline;
}

.wccle-cart-actions__price {
	color: #111827;
	background: #f8f8f8;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	padding: 16px;
	width: 100%;
}

.wccle-cart-actions__price del {
	color: #98a2b3;
	font-size: 0.8em;
	font-weight: 500;
	margin-left: 8px;
}

.wccle-cart-actions__price ins {
	background: transparent;
	text-decoration: none;
}

.wccle-cart-actions__label {
	color: #667085;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin-right: 54px;
}

.wccle-cart-actions__qty {
	display: inline-flex;
	width: 114px;
}

.wccle-cart-actions__qty-button,
.wccle-cart-actions__qty-input {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	color: #667085;
	display: inline-flex;
	font-size: 16px;
	height: 32px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	padding: 0;
	text-align: center;
}

.wccle-cart-actions__qty-button {
	cursor: pointer;
	flex: 0 0 32px;
}

.wccle-cart-actions__qty-input {
	appearance: textfield;
	border-left: 0;
	border-right: 0;
	color: #ef4b2b;
	flex: 1 1 auto;
	min-width: 0;
}

.wccle-cart-actions__qty-input::-webkit-inner-spin-button,
.wccle-cart-actions__qty-input::-webkit-outer-spin-button {
	appearance: none;
	margin: 0;
}

.wccle-cart-actions__stock {
	color: #667085;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.wccle-cart-actions__stock-number {
	color: #ef4b2b;
}

.wccle-cart-actions__buttons {
	display: flex;
	gap: 16px;
	width: 100%;
}

.wccle-cart-actions__button {
	align-items: center;
	border: 1px solid transparent;
	display: inline-flex;
	flex: 1 1 0;
	font-size: 16px;
	font-weight: 700;
	gap: 10px;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 0 22px;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.wccle-cart-actions__button:hover,
.wccle-cart-actions__button:focus {
	text-decoration: none;
}

.wccle-cart-actions__button.is-disabled {
	cursor: not-allowed;
	opacity: 0.5;
	pointer-events: auto;
}

.wccle-cart-actions__button--cart {
	background: #fff4ef;
	border-color: #ef4b2b;
	color: #ef4b2b;
}

.wccle-cart-actions__button--buy {
	background: #ef4b2b;
	border-color: #ef4b2b;
	color: #ffffff;
}

.wccle-cart-actions__cart-icon {
	border: 2px solid currentColor;
	border-top: 0;
	display: inline-block;
	height: 11px;
	position: relative;
	transform: skewX(-10deg);
	width: 16px;
}

.wccle-cart-actions__cart-icon::before {
	border-top: 2px solid currentColor;
	content: "";
	height: 7px;
	left: -5px;
	position: absolute;
	top: -6px;
	transform: skewX(20deg);
	width: 8px;
}

.wccle-cart-actions__cart-icon::after {
	background: currentColor;
	border-radius: 50%;
	box-shadow: 10px 0 0 currentColor;
	bottom: -7px;
	content: "";
	height: 4px;
	left: 1px;
	position: absolute;
	width: 4px;
}

.woocommerce-product-gallery .wccle-product-gallery-video a {
	align-items: center;
	aspect-ratio: 1 / 1;
	aspect-ratio: var(--wccle-product-gallery-video-ratio, 1 / 1);
	background: #000000;
	display: flex;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.wccle-product-gallery-video__media,
.woocommerce-product-gallery .wccle-product-gallery-video video {
	background: #000000;
	display: block;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}

.woocommerce-product-gallery .flex-control-thumbs img.wccle-video-thumb-ready {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.wccle-auth-card {
	background: #ffffff;
	border: 1px solid rgba(11, 59, 117, 0.08);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-left: auto;
	margin-right: auto;
	max-width: 480px;
	padding: 28px;
	width: 100%;
}

.wccle-auth-tabs {
	background: #f2f5f9;
	border-radius: 14px;
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 6px;
}

.wccle-auth-tab {
	background: transparent;
	border: 0;
	border-radius: 10px;
	color: #667085;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	min-height: 44px;
	padding: 10px 14px;
	transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.wccle-auth-tab.is-active {
	background: #0b3b75;
	box-shadow: 0 8px 22px rgba(11, 59, 117, 0.24);
	color: #ffffff;
}

.wccle-auth-panel {
	display: none;
	flex-direction: column;
	gap: 16px;
}

.wccle-auth-panel.is-active {
	display: flex;
}

.wccle-auth-title {
	color: #071f3a;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
}

.wccle-auth-subtitle {
	color: #667085;
	font-size: 15px;
	line-height: 1.5;
	margin: -6px 0 4px;
}

.wccle-auth-label {
	color: #667085;
	display: flex;
	flex-direction: column;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	line-height: 1.2;
}

.wccle-auth-input {
	background: #f8fafc;
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	color: #071f3a;
	font-size: 15px;
	min-height: 50px;
	outline: none;
	padding: 0 15px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.wccle-auth-input:focus {
	background: #ffffff;
	border-color: #0b3b75;
	box-shadow: 0 0 0 4px rgba(11, 59, 117, 0.12);
}

.wccle-auth-remember {
	align-items: center;
	color: #667085;
	display: inline-flex;
	font-size: 14px;
	gap: 8px;
}

.wccle-auth-login-meta {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: 4px;
}

.wccle-auth-forgot {
	color: #0b3b75;
	font-size: 14px;
	font-weight: 700;
	text-align: right;
	text-decoration: none;
}

.wccle-auth-forgot:hover,
.wccle-auth-forgot:focus {
	color: #0b3b75;
	text-decoration: underline;
}

.wccle-auth-submit,
.wccle-auth-logout {
	align-items: center;
	background: #0b3b75;
	border: 0;
	border-radius: 12px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 52px;
	padding: 0 22px;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: 100%;
}

.wccle-auth-submit:hover,
.wccle-auth-submit:focus,
.wccle-auth-logout:hover,
.wccle-auth-logout:focus {
	box-shadow: 0 12px 26px rgba(11, 59, 117, 0.2);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.wccle-auth-message {
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	padding: 12px 14px;
}

.wccle-auth-message--success {
	background: #ecfdf3;
	color: #027a48;
}

.wccle-auth-message--error {
	background: #fff1f3;
	color: #b42318;
}

.wccle-auth-card--logged-in {
	align-items: flex-start;
}

@media (max-width: 1024px) {
	.wccle-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.wccle-category-slider {
		--wccle-category-slides: 4;
	}
}

@media (max-width: 767px) {
	.wccle-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wccle-category-slider {
		--wccle-category-slides: 2;
	}

	.wccle-category-slider-button {
		font-size: 24px;
		height: 34px;
		width: 34px;
	}

	.wccle-cart-actions__top,
	.wccle-cart-actions__buttons {
		align-items: stretch;
		flex-direction: column;
	}

	.wccle-cart-actions__label {
		margin-right: 0;
	}

	.wccle-cart-actions__qty {
		width: 100%;
	}

	.wccle-auth-login-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.wccle-auth-forgot {
		text-align: left;
	}
}

.wccle-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
}

.wccle-shop-listing {
	align-items: flex-start;
	display: flex;
	gap: 24px;
	width: 100%;
}

.wccle-shop-sidebar {
	flex: 0 0 260px;
	min-width: 0;
}

.wccle-shop-main {
	flex: 1 1 auto;
	min-width: 0;
}

.wccle-shop-filter-toggle,
.wccle-shop-filter-overlay {
	display: none;
}

.wccle-shop-filter-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: #0b3f96;
	cursor: pointer;
	gap: 8px;
	line-height: 1;
	padding: 0;
}

.wccle-shop-filter-icon {
	display: inline-flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 3px;
	width: 18px;
}

.wccle-shop-filter-icon span {
	background: currentColor;
	display: block;
	height: 2px;
	position: relative;
	width: 100%;
}

.wccle-shop-filter-icon span:nth-child(2) {
	width: 70%;
}

.wccle-shop-filter-icon span:nth-child(3) {
	width: 85%;
}

.wccle-shop-sidebar-title {
	border-bottom: 1px solid #e5e7eb;
	color: #111827;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
	padding: 0 0 12px;
	text-transform: uppercase;
}

.wccle-shop-category-nav,
.wccle-shop-category-list {
	margin: 0;
	padding: 0;
}

.wccle-shop-category-list {
	list-style: none;
}

.wccle-shop-category-item {
	border-bottom: 1px solid #e5e7eb;
	margin: 0;
}

.wccle-shop-category-link {
	align-items: center;
	color: #111827;
	display: flex;
	font-size: 16px;
	justify-content: space-between;
	gap: 12px;
	line-height: 1.35;
	padding: 12px 0;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wccle-shop-category-link:hover,
.wccle-shop-category-link:focus {
	color: #0b3f96;
	text-decoration: none;
}

.wccle-shop-category-label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.wccle-shop-category-arrow {
	color: #9ca3af;
	flex: 0 0 auto;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	transition: color 180ms ease, transform 180ms ease;
}

.wccle-shop-category-link:hover .wccle-shop-category-arrow,
.wccle-shop-category-link:focus .wccle-shop-category-arrow {
	transform: translateX(2px);
}

.wccle-shop-category-item.is-active .wccle-shop-category-link {
	background-color: #06283d;
	color: #ffffff;
	font-weight: 700;
}

.wccle-shop-category-item.is-active .wccle-shop-category-arrow {
	color: #ffffff;
}

.wccle-product-card {
	background: #ffffff;
	border: 1px solid #dbe7f3;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(8, 36, 92, 0.08);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	padding: 0;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wccle-product-card:hover {
	transform: translateY(-3px);
}

.wccle-product-image {
	align-items: center;
	background: #f7fbff;
	border-radius: 12px;
	display: flex;
	height: 300px;
	justify-content: center;
	margin-bottom: 18px;
	overflow: hidden;
	padding: 0;
	text-decoration: none;
	width: 100%;
}

.wccle-product-image img {
	display: block;
	height: 100%;
	max-width: none;
	object-fit: contain;
	width: 100%;
}

.wccle-product-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 0;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.wccle-product-categories {
	color: #667085;
	font-size: 16px;
	line-height: 1.35;
	margin-bottom: 6px;
	min-height: 1px;
	overflow-wrap: anywhere;
	padding: 0;
}

.wccle-product-categories a {
	color: inherit;
	text-decoration: none;
}

.wccle-product-categories a:hover {
	color: #0b3f96;
}

.wccle-product-title-link {
	color: inherit;
	text-decoration: none;
}

.wccle-product-title {
	color: #08245c;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 6px;
	overflow-wrap: anywhere;
	padding: 0;
	transition: color 180ms ease;
}

.wccle-product-title-link:hover .wccle-product-title {
	color: #0b4db8;
}

.wccle-product-title-rating-row {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin-bottom: 10px;
	min-width: 0;
	width: 100%;
}

.wccle-product-title-rating-row .wccle-product-title-link {
	min-width: 0;
}

.wccle-product-title-rating-row .wccle-product-title {
	margin-bottom: 0;
}

.wccle-product-title-rating-row .wccle-product-rating {
	flex: 0 0 auto;
	margin-bottom: 0;
}

.wccle-product-rating {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
	min-width: 0;
}

.wccle-product-stars {
	display: inline-flex;
	font-size: 18px;
	gap: 1px;
	letter-spacing: 0;
	line-height: 1;
}

.wccle-product-score-star {
	align-items: center;
	display: inline-flex;
	font-size: 18px;
	gap: 3px;
	line-height: 1;
}

.wccle-product-rating-score {
	color: #667085;
	font-size: 0.82em;
	font-weight: 600;
	line-height: 1;
}

.wccle-product-star {
	color: #d7deea;
}

.wccle-product-star.is-filled {
	color: #ffb703;
}

.wccle-product-rating-count {
	color: #667085;
	font-size: 15px;
	line-height: 1;
}

.wccle-product-price {
	color: #08245c;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 14px;
}

.wccle-product-price del {
	color: #98a2b3;
	font-size: 0.72em;
	font-weight: 600;
	opacity: 1;
}

.wccle-product-price ins {
	color: #dc2626;
	text-decoration: none;
}

.wccle-product-button {
	margin-top: auto;
	width: 100%;
}

.wccle-product-button .button {
	align-items: center;
	background: #0b3f96;
	border: 0;
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 0;
	padding: 0;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
	width: 100%;
}

.wccle-product-button .button:hover,
.wccle-product-button .button:focus {
	background: #08245c;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.wccle-product-button .added_to_cart {
	color: #0b3f96;
	display: inline-block;
	font-weight: 700;
	margin-top: 10px;
	text-align: center;
	width: 100%;
}

.wccle-product-grid.wccle-hide-view-cart .added_to_cart,
.wccle-product-grid.wccle-hide-view-cart a.added_to_cart,
.wccle-product-grid.wccle-hide-view-cart .wc-forward:not(.button),
.wccle-product-grid.wccle-hide-view-cart a.wc-forward:not(.button),
.wccle-product-card.wccle-hide-view-cart .added_to_cart,
.wccle-product-card.wccle-hide-view-cart a.added_to_cart,
.wccle-product-card.wccle-hide-view-cart .wc-forward:not(.button),
.wccle-product-card.wccle-hide-view-cart a.wc-forward:not(.button),
.wccle-product-button.wccle-hide-view-cart .added_to_cart,
.wccle-product-button.wccle-hide-view-cart .wc-forward:not(.button) {
	display: none !important;
}

.wccle-product-grid.wccle-hide-wishlist .yith-wcwl-add-to-wishlist,
.wccle-product-grid.wccle-hide-wishlist .yith-wcwl-wishlistaddedbrowse,
.wccle-product-grid.wccle-hide-wishlist .yith-wcwl-wishlistexistsbrowse,
.wccle-product-grid.wccle-hide-wishlist .tinvwl_add_to_wishlist_button,
.wccle-product-grid.wccle-hide-wishlist .tinv-wraper,
.wccle-product-grid.wccle-hide-wishlist .woosw-btn,
.wccle-product-grid.wccle-hide-wishlist .wishlist-button,
.wccle-product-grid.wccle-hide-wishlist .wishlist,
.wccle-product-grid.wccle-hide-wishlist [class*="wishlist"],
.wccle-product-grid.wccle-hide-wishlist [data-title*="Wishlist"],
.wccle-product-grid.wccle-hide-wishlist [aria-label*="wishlist" i] {
	display: none !important;
}

.wccle-product-grid.wccle-hide-quick-view .quick-view,
.wccle-product-grid.wccle-hide-quick-view .quickview,
.wccle-product-grid.wccle-hide-quick-view .quick-view-button,
.wccle-product-grid.wccle-hide-quick-view .woosq-btn,
.wccle-product-grid.wccle-hide-quick-view .yith-wcqv-button,
.wccle-product-grid.wccle-hide-quick-view [class*="quick-view"],
.wccle-product-grid.wccle-hide-quick-view [class*="quickview"],
.wccle-product-grid.wccle-hide-quick-view [data-title*="Quick View"],
.wccle-product-grid.wccle-hide-quick-view [aria-label*="quick view" i] {
	display: none !important;
}

.wccle-product-grid.wccle-hide-compare .compare,
.wccle-product-grid.wccle-hide-compare .compare-button,
.wccle-product-grid.wccle-hide-compare .woosc-btn,
.wccle-product-grid.wccle-hide-compare .yith-woocompare-widget,
.wccle-product-grid.wccle-hide-compare [class*="compare"],
.wccle-product-grid.wccle-hide-compare [data-title*="Compare"],
.wccle-product-grid.wccle-hide-compare [aria-label*="compare" i] {
	display: none !important;
}

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

@media (max-width: 767px) {
	.wccle-product-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	body.wccle-shop-filter-open {
		overflow: hidden;
	}

	.wccle-shop-filter-toggle {
		display: inline-flex;
		margin-bottom: 16px;
	}

	.wccle-shop-filter-overlay {
		background: rgba(0, 0, 0, 0.62);
		bottom: 0;
		display: block;
		left: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		right: 0;
		top: 0;
		transition: opacity 180ms ease;
		z-index: 9997;
	}

	.wccle-shop-filter-is-open .wccle-shop-filter-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.wccle-shop-listing {
		flex-direction: column;
		width: 100%;
	}

	.wccle-shop-sidebar {
		background: #ffffff;
		bottom: 0;
		flex-basis: auto;
		left: 0;
		max-width: min(86vw, 320px);
		overflow-y: auto;
		padding: 22px 16px;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 220ms ease;
		width: min(86vw, 320px);
		z-index: 9998;
	}

	.wccle-shop-filter-is-open .wccle-shop-sidebar {
		transform: translateX(0);
	}

	.wccle-shop-main {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}

	.wccle-product-title-rating-row {
		align-items: flex-start;
		flex-direction: column;
		justify-content: flex-start;
	}

	.wccle-product-image {
		height: 240px;
	}

	.wccle-product-title {
		font-size: 22px;
	}

	.wccle-product-price {
		font-size: 26px;
	}
}
