body.smartcheat-ui.woocommerce-shop .site-main,
body.smartcheat-ui.tax-product_cat .site-main,
body.smartcheat-ui.tax-product_tag .site-main {
	padding-block: clamp(34px, 5vw, 72px);
}

body.smartcheat-ui.woocommerce-shop .woocommerce-breadcrumb,
body.smartcheat-ui.woocommerce-shop .woocommerce-products-header {
	display: none;
}

body.smartcheat-ui.woocommerce-shop .site-main {
	padding-top: clamp(20px, 3vw, 42px);
}

.smartcheat-ui .woocommerce-products-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 30px;
}

.smartcheat-ui .woocommerce-products-header__title.page-title {
	margin: 0;
	font-family: var(--sc-font-display);
	font-size: clamp(36px, 5vw, 62px);
	font-weight: 400;
}

.smartcheat-ui .woocommerce-result-count {
	margin: 12px 0 28px;
	color: #aaa6c1;
	font-size: 14px;
}

.smartcheat-ui .woocommerce-ordering {
	margin: 0 0 28px;
}

.smartcheat-ui .woocommerce-ordering select {
	min-width: 250px;
	min-height: 48px;
	padding: 0 16px 0 42px;
	border: 1px solid rgba(133, 116, 197, .32);
	border-radius: 13px;
	background: #171622;
	color: #f5f3ff;
	font: inherit;
	cursor: pointer;
}

.smartcheat-ui .woocommerce ul.products {
	display: grid;
	clear: both;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
}

.smartcheat-ui .woocommerce ul.products::before,
.smartcheat-ui .woocommerce ul.products::after {
	display: none;
}

.smartcheat-ui .woocommerce ul.products li.product.sc-shop-card {
	float: none;
	width: auto;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.sc-shop-card__inner {
	position: relative;
	display: flex;
	height: 100%;
	min-height: 432px;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid rgba(91, 81, 137, .44);
	border-radius: 20px;
	background: rgba(27, 27, 39, .9);
	box-shadow: 0 20px 44px rgba(0, 0, 0, .2);
	transition: transform 250ms cubic-bezier(.16, 1, .3, 1), border-color 250ms ease, box-shadow 250ms ease;
}

.sc-shop-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 2.06 / 1;
	overflow: hidden;
	background: #090912;
}

.sc-shop-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.15) 50%, transparent 65%);
	content: "";
	pointer-events: none;
	transform: translate3d(-120%, 0, 0);
	transition: transform 800ms cubic-bezier(.16, 1, .3, 1);
}

.smartcheat-ui .woocommerce ul.products li.product .sc-shop-card__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center;
	transition: transform 400ms cubic-bezier(.16, 1, .3, 1);
}

.sc-shop-card__badges {
	position: absolute;
	z-index: 3;
	top: 11px;
	left: 11px;
	display: flex;
	max-width: calc(100% - 22px);
	align-items: center;
	gap: 7px;
	direction: ltr;
}

.sc-shop-badge {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	border: 1px solid;
	border-radius: 999px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.sc-shop-badge svg { width: 15px; height: 15px; fill: currentColor; }
.sc-shop-badge--hot { border-color: rgba(255, 208, 102, .62); background: rgba(126, 83, 25, .78); color: #ffe493; }
.sc-shop-badge--safe { border-color: rgba(101, 240, 157, .54); background: rgba(25, 113, 66, .82); color: #83ffae; }
.sc-shop-badge--updating { border-color: rgba(255, 194, 82, .56); background: rgba(116, 72, 15, .84); color: #ffd16d; }
.sc-shop-badge--maintenance { border-color: rgba(126, 183, 255, .55); background: rgba(36, 79, 135, .84); color: #aad3ff; }
.sc-shop-badge--danger { border-color: rgba(255, 101, 125, .58); background: rgba(121, 32, 50, .86); color: #ff9bac; }

.sc-shop-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 244px;
	flex: 1;
	flex-direction: column;
	gap: 15px;
	margin-top: -14px;
	padding: 20px;
	border-top: 1px solid rgba(118, 99, 184, .18);
	border-radius: 20px 20px 0 0;
	background: linear-gradient(145deg, rgba(34, 32, 50, .98), rgba(27, 27, 39, .98));
	box-shadow: 0 -14px 32px rgba(135, 103, 226, .13);
}

.sc-shop-card__title-row {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 14px;
}

.sc-shop-card__icon {
	display: inline-flex;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.17);
	border-radius: 50%;
	background: linear-gradient(145deg, #ad92ff, #7658d4);
	box-shadow: 0 8px 22px rgba(129, 91, 219, .25);
	color: #fff;
}

.sc-shop-card__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.smartcheat-ui .woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-width: 0;
	margin: 0;
	padding: 0;
	font-family: var(--sc-font-body);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.woocommerce-loop-product__title a { display: -webkit-box; overflow: hidden; color: #fff; text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.sc-shop-card__meta { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 12px; color: #aaa6c1; font-size: 13px; }
.sc-shop-card__meta > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-shop-card__meta a { display: inline-flex; min-height: 44px; flex: none; align-items: center; gap: 7px; color: #aaa6c1; text-decoration: none; }
.sc-shop-card__meta svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.sc-shop-card__delivery { display: flex; align-items: center; gap: 6px; margin: -4px 0 0; color: #9290a8; font-size: 12px; }
.sc-shop-card__delivery strong { color: #75f59e; font-weight: 700; }

.sc-shop-card__footer {
	display: flex;
	min-height: 66px;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(110, 104, 143, .23);
}

.sc-shop-card__price { display: flex; min-width: 0; flex-wrap: wrap; align-items: baseline; gap: 4px; color: #fff; font-size: 21px; font-variant-numeric: tabular-nums; font-weight: 800; line-height: 1.3; }
.sc-shop-card__price .amount { color: #fff; font-size: inherit; font-weight: inherit; }
.sc-shop-card__price del { opacity: .55; font-size: 13px; }
.sc-shop-card__price ins { text-decoration: none; }
.sc-shop-card__price small { color: #8f8ca6; font-size: 11px; font-weight: 500; }

.sc-shop-card__cta {
	display: inline-flex;
	min-width: 116px;
	min-height: 50px;
	flex: none;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 0 18px;
	border: 1px solid rgba(142, 122, 212, .28);
	border-radius: 13px;
	background: rgba(48, 45, 68, .9);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.sc-shop-card__cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

@media (hover: hover) {
	.sc-shop-card__inner:hover { border-color: rgba(151, 126, 238, .55); box-shadow: 0 26px 58px rgba(0,0,0,.3), 0 0 34px rgba(139, 92, 246, .09); transform: translateY(-4px); }
	.sc-shop-card__inner:hover .sc-shop-card__image { transform: scale(1.018); }
	.sc-shop-card__inner:hover .sc-shop-card__media::after { transform: translate3d(120%, 0, 0); }
	.sc-shop-card__meta a:hover { color: #fff; }
	.sc-shop-card__cta:hover { border-color: rgba(202, 184, 255, .5); background: linear-gradient(135deg, #9b7cff, #7658d9); box-shadow: 0 10px 25px rgba(130, 92, 220, .28); color: #fff; transform: translateY(-1px); }
}

@media (max-width: 1050px) {
	.smartcheat-ui .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
	body.smartcheat-ui.woocommerce-shop .site-main,
	body.smartcheat-ui.tax-product_cat .site-main,
	body.smartcheat-ui.tax-product_tag .site-main { padding-block: 28px 48px; }
	.smartcheat-ui .woocommerce-result-count,
	.smartcheat-ui .woocommerce-ordering { float: none; width: 100%; }
	.smartcheat-ui .woocommerce-ordering select { width: 100%; min-width: 0; }
	.smartcheat-ui .woocommerce ul.products { grid-template-columns: 1fr; gap: 18px; }
	.sc-shop-card__inner { min-height: 398px; }
	.sc-shop-card__body { min-height: 226px; padding: 17px; }
	.sc-shop-card__footer { align-items: center; }
	.sc-shop-card__price { font-size: 18px; }
	.sc-shop-card__cta { min-width: 105px; min-height: 48px; padding-inline: 15px; }
}

@media (prefers-reduced-motion: reduce) {
	.sc-shop-card__inner,
	.sc-shop-card__image,
	.sc-shop-card__media::after,
	.sc-shop-card__cta { transition: none !important; transform: none !important; }
}
