/* CSS khusus untuk section #coffee .products */
#coffee .products {
	/* Tambahkan style khusus di sini */
}
#coffee .products__subtitle-line.desktop-only {
	display: block;
	text-align: center;
	font-size: 1.32rem;
	font-weight: 400;
	margin-bottom: 0.1em;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	white-space: normal;
	word-break: normal;
}
@media screen and (max-width: 600px) {
	#coffee .products__subtitle-line.desktop-only {
		display: none !important;
	}
}
#coffee .products__subtitle-line.mobile-only {
	display: none;
}
@media screen and (max-width: 600px) {
	#coffee .products__subtitle-line.mobile-only {
		display: block !important;
		text-align: center;
		font-size: 1.02rem;
		font-weight: 400;
		margin-bottom: 0.3em;
	}
}
