.sonno-home-products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.sonno-home-products-grid .sonno-product-card {
	background: #fff;
	border: 1px solid #ededed;
	border-radius: var(--sonno-radius-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.sonno-home-products-grid .sonno-product-card-image {
	background: var(--sonno-soft);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.sonno-home-products-grid .sonno-product-card-image img {
	max-width: 100%;
	max-height: 240px;
	object-fit: contain;
}

.sonno-home-products-grid .sonno-product-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	flex: 1;
}

.sonno-home-products-grid .sonno-product-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
}

.sonno-home-products-grid .sonno-product-title a {
	text-decoration: none;
	color: inherit;
}

.sonno-home-products-grid .sonno-product-specs {
	display: grid;
	gap: 10px;
}

.sonno-home-products-grid .sonno-product-spec {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
	font-size: 16px;
	line-height: 1.4;
}

.sonno-home-products-grid .sonno-product-spec-label {
	color: var(--sonno-muted);
}

.sonno-home-products-grid .sonno-product-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
}

.sonno-home-products-grid .sonno-product-price {
	font-size: 18px;
	line-height: 1.2;
	color: var(--sonno-accent);
	font-weight: 600;
}

.sonno-home-products-grid .sonno-product-button {
	background: var(--sonno-accent);
	color: #fff;
	min-width: 132px;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	padding: 6px 18px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
}

@media (max-width: 1180px) {
	.sonno-home-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sonno-home-products-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.sonno-home-products-grid .sonno-product-card-image {
		min-height: 240px;
	}

	.sonno-home-products-grid .sonno-product-title {
		font-size: 20px;
	}

	.sonno-home-products-grid .sonno-product-bottom {
		flex-direction: column;
		align-items: stretch;
	}

	.sonno-home-products-grid .sonno-product-button {
		width: 100%;
		min-width: 0;
	}
}
