.shopkit-product-grid {
	width: 100%;
}

.shopkit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.shopkit-card {
	position: relative;
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.shopkit-card__body {
	padding: 15px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.shopkit-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.shopkit-card__image {
	position: relative;
	overflow: hidden;
	margin-bottom: 12px;
}

.shopkit-card__image img {
	display: block;
	width: 100%;
	height: auto;
}

.shopkit-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #d63638;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 3px;
	z-index: 2;
}

.shopkit-card__title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 8px;
	line-height: 1.4;
}

.shopkit-card__rating {
	margin-bottom: 8px;
}

.shopkit-card__price {
	font-size: 15px;
	margin-bottom: 12px;
}

.shopkit-card__price del {
	opacity: 0.6;
	margin-right: 6px;
}

.shopkit-card__cart {
	margin-top: auto;
}

.shopkit-card__button {
	display: inline-block;
	width: 100%;
	text-align: center;
	background: #1a1a1a;
	color: #fff;
	border: 1px solid #1a1a1a;
	padding: 10px 18px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.shopkit-card__button.loading {
	opacity: 0.6;
	pointer-events: none;
}

.shopkit-empty {
	text-align: center;
	padding: 40px 0;
	opacity: 0.7;
}

.shopkit-pagination {
	margin-top: 25px;
	text-align: center;
}

.shopkit-pagination .page-numbers {
	display: inline-block;
	padding: 6px 12px;
	margin: 0 3px;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	text-decoration: none;
	color: inherit;
}

.shopkit-pagination .page-numbers.current {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}

/* Responsive fallback if a specific responsive column control isn't set */
@media (max-width: 1024px) {
	.shopkit-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 767px) {
	.shopkit-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 480px) {
	.shopkit-grid {
		grid-template-columns: repeat(1, 1fr) !important;
	}
}
