/* GhostStock AI — front-end recommendation row (cart / checkout / product) */
.gs-recommendations {
	margin: 2.5em 0;
	clear: both;
}
.gs-rec-heading {
	font-size: 1.25em;
	margin: 0 0 1em;
}
.gs-rec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1.25em;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gs-rec-item {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 0;
	padding: 8px;
	border-radius: 10px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.gs-rec-item:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
	transform: translateY(-3px);
}
.gs-rec-thumb {
	display: block;
	overflow: hidden;
	border-radius: 6px;
}
.gs-rec-thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.35s ease;
}
.gs-rec-item:hover .gs-rec-thumb img {
	transform: scale(1.06);
}
.gs-rec-name {
	margin: 0.6em 0 0.2em;
	font-weight: 600;
	text-decoration: none;
}
.gs-rec-price {
	margin-bottom: 0.6em;
	opacity: 0.85;
}
.gs-rec-add {
	margin-top: auto;
	width: 100%;
}
@media (max-width: 480px) {
	.gs-rec-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75em;
	}
}
