:root {
	--product_name_font_size_mobile: 12px;
	--product_name_font_color_mobile: green;
	--product_image_width_mobile: 80px;
	--product_image_height_mobile: 80px;

	--product_name_font_size_tablet: 20px;
	--product_name_font_color_tablet: blue;
	--product_image_width_tablet: 100px;
	--product_image_height_tablet: 100px;

	--product_name_font_size_pc: 32px;
	--product_name_font_color_pc: black;
	--product_image_width_pc: 120px;
	--product_image_height_pc: 120px;
}

.product-link {
	color: inherit;
}

@media only screen and (max-width: 600px) {
	.product-name { font-size: var(--product_name_font_size_mobile); }
	.product-link { color: var(--product_name_font_color_mobile); }
	.product-image{ width: var(--product_image_width_mobile);
					height: var(--product_image_height_mobile); }
}

@media only screen and (min-width: 600px) {
	.product-name { font-size: var(--product_name_font_size_tablet); }
	.product-link { color: var(--product_name_font_color_tablet); }
	.product-image{ width: var(--product_image_height_tablet);
					height: var(--product_image_height_tablet); }
}

@media only screen and (min-width: 768px) {
	.product-name { font-size: var(--product_name_font_size_pc); }
	.product-link { color: var(--product_name_font_color_pc); }
	.product-image{ width: var(--product_image_height_pc);
					height: var(--product_image_height_pc); }
}