.tl-ps-grid {
	display: grid;
	gap: 24px;
	margin: 24px 0;
}
.tl-ps-card {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #fff;
	transition: box-shadow .2s ease;
}
.tl-ps-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.tl-ps-card-img { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f5f5f5; }
.tl-ps-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tl-ps-card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.tl-ps-card-title { font-weight: 600; text-decoration: none; color: #222; font-size: 15px; }
.tl-ps-card-price { font-size: 16px; font-weight: 700; color: #b8860b; }
.tl-ps-card-stock { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.tl-ps-card-stock.in { color: #1a7f37; }
.tl-ps-card-stock.out { color: #c9302c; }
.tl-ps-btn {
	display: inline-block;
	margin-top: 8px;
	padding: 10px 16px;
	background: #111;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
}
.tl-ps-btn:hover { background: #333; color: #fff; }
.tl-ps-btn-order { background: #b8860b; margin-top: 20px; }
.tl-ps-btn-order:hover { background: #96700a; }

.tl-ps-pagination { display: flex; gap: 8px; justify-content: center; margin: 24px 0; }
.tl-ps-pagination a { padding: 6px 12px; border: 1px solid #ddd; border-radius: 4px; text-decoration: none; color: #333; }
.tl-ps-pagination a.active { background: #111; color: #fff; border-color: #111; }

.tl-ps-error { padding: 14px 16px; background: #fdecea; color: #611a15; border: 1px solid #f5c6cb; border-radius: 6px; }

.tl-ps-back { display: inline-block; margin-bottom: 18px; text-decoration: none; color: #555; }

.tl-ps-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
@media (max-width: 768px) { .tl-ps-single-grid { grid-template-columns: 1fr; } }
.tl-ps-main-img { width: 100%; border-radius: 8px; }
.tl-ps-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.tl-ps-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; border: 1px solid #ddd; }

.tl-ps-single-info h1 { margin-top: 0; }
.tl-ps-price { font-size: 24px; font-weight: 700; color: #b8860b; margin-bottom: 8px; }
.tl-ps-stock { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 13px; margin-bottom: 12px; }
.tl-ps-stock.in { background: #eaf6ec; color: #1a7f37; }
.tl-ps-stock.out { background: #fdecea; color: #c9302c; }
.tl-ps-sku, .tl-ps-cats { font-size: 14px; color: #555; }
.tl-ps-short-desc { margin: 14px 0; color: #444; }
.tl-ps-attrs { width: 100%; margin: 16px 0; border-collapse: collapse; }
.tl-ps-attrs th, .tl-ps-attrs td { text-align: left; padding: 6px 10px; border-bottom: 1px solid #eee; font-size: 14px; }
.tl-ps-full-desc { margin-top: 36px; }
