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

.techodep-product-card {
	position: relative;
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.techodep-product-card:hover {
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
	transform: translateY(-4px);
}

.techodep-product-media {
	position: relative;
	overflow: hidden;
	background: #f8fafc;
}

.techodep-product-image {
	display: block;
	overflow: hidden;
	width: 100%;
}

.techodep-product-image img {
	display: block;
	width: 100%;
	height: 280px;
	margin: 0;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.techodep-product-card:hover .techodep-product-image img {
	transform: scale(1.045);
}

.techodep-sale-badge {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #dc2626;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
}

.techodep-product-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
}

.techodep-product-category {
	margin-bottom: 7px;
	color: #64748b;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-transform: uppercase;
}

.techodep-product-category a {
	color: inherit;
}

.techodep-product-title {
	margin: 0 0 10px;
	color: #0f172a;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.techodep-product-title a {
	color: inherit;
	text-decoration: none;
}

.techodep-product-title a:hover,
.techodep-product-title a:focus {
	color: #2563eb;
}

.techodep-product-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
	color: #111827;
	font-size: 17px;
	font-weight: 700;
}

.techodep-product-price del {
	color: #94a3b8;
	font-size: 0.88em;
	font-weight: 500;
	opacity: 1;
}

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

.techodep-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	min-height: 20px;
	margin-bottom: 11px;
	color: #64748b;
	font-size: 13px;
}

.techodep-rating .star-rating {
	float: none;
	margin: 0;
	color: #f59e0b;
	font-size: 14px;
}

.techodep-no-rating {
	font-size: 12px;
}

.techodep-stock-status {
	margin: 0 0 14px;
	color: #15803d;
	font-size: 13px;
	font-weight: 600;
}

.techodep-stock-status.out-of-stock {
	color: #b91c1c;
}

.techodep-product-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: auto;
	padding-top: 4px;
}

.techodep-product-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 42px;
	padding: 10px 13px;
	border: 1px solid transparent;
	border-radius: 9px;
	background: #0f172a;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.techodep-product-actions .button:hover,
.techodep-product-actions .button:focus {
	background: #2563eb;
	color: #fff;
	transform: translateY(-1px);
}

.techodep-product-actions .techodep-buy-now {
	border-color: #0f172a;
	background: transparent;
	color: #0f172a;
}

.techodep-product-actions .techodep-buy-now:hover,
.techodep-product-actions .techodep-buy-now:focus {
	border-color: #2563eb;
	background: #2563eb;
	color: #fff;
}

.techodep-product-actions .loading {
	pointer-events: none;
	opacity: 0.65;
}

.techodep-product-actions .added_to_cart {
	grid-column: 1 / -1;
	font-size: 13px;
	text-align: center;
}

.techodep-product-grid-empty {
	width: 100%;
	padding: 24px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	color: #475569;
	text-align: center;
}

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

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

	.techodep-product-card:hover {
		transform: none;
	}

	.techodep-product-actions {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.techodep-product-card,
	.techodep-product-image img,
	.techodep-product-actions .button {
		transition: none;
	}
}

